feat(qrcode): 添加二维码补码任务通知功能
- 在入库生产订单、余料入库、正常发货确认、公司间调拨、工厂间调拨流程中集成补码任务创建 - 实现仓库管理员角色查询并为每位管理员创建补码待办任务 - 添加待办任务实体备注字段用于存储物料编号信息 - 修正SRM质检入库逻辑判断条件,优化无二维码物料处理流程 - 注入并配置相关服务依赖,完善补码任务生成的数据一致性校验机制
This commit is contained in:
parent
56db72c074
commit
e3b7642c6b
|
|
@ -52,7 +52,7 @@ public class NoScanningBaseControllerService {
|
|||
}
|
||||
|
||||
public boolean cannotOutNoScanning(String materialNo, String factoryNo, String warehouseNo) {
|
||||
if (!existsQrCode(materialNo)) {
|
||||
if (existsQrCode(materialNo)) {
|
||||
return true;
|
||||
}
|
||||
return !quantityConsistencyCheck(materialNo, factoryNo, warehouseNo);
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ public class DeployDevTest {
|
|||
//处理主jar包
|
||||
handleFile(sshUtil, localPath + jarName, remotePath + jarName);
|
||||
//处理lib目录
|
||||
handleDir(sshUtil, localPath, remotePath, "lib");
|
||||
// handleDir(sshUtil, localPath, remotePath, "lib");
|
||||
//执行脚本启动服务
|
||||
sshUtil.exec("cd " + remotePath + " && ./restart.sh");
|
||||
sshUtil.disconnect();
|
||||
|
|
|
|||
Loading…
Reference in New Issue