jsk 驳回任务,待入库数量设为0
This commit is contained in:
parent
c5dced169b
commit
f194030741
|
|
@ -880,7 +880,7 @@ public class PurchaseCheckInfoServiceImpl implements IPurchaseCheckInfoService {
|
||||||
// 会签成功,对配置的流程进行处理
|
// 会签成功,对配置的流程进行处理
|
||||||
configSignOrgSet.remove(loginUserDeptId);
|
configSignOrgSet.remove(loginUserDeptId);
|
||||||
// 如果loginUserDeptId包含库管一班、库管二班、库管三班或修试二班的任意一个组织id,那么库管班就算审核通过
|
// 如果loginUserDeptId包含库管一班、库管二班、库管三班或修试二班的任意一个组织id,那么库管班就算审核通过
|
||||||
if (loginUserDeptId == 106L || loginUserDeptId == 334L || loginUserDeptId == 335L || loginUserDeptId == 336L) {
|
if (loginUserDeptId == 106L ||loginUserDeptId == 312L || loginUserDeptId == 334L || loginUserDeptId == 335L || loginUserDeptId == 336L) {
|
||||||
// 库管班审核通过,放行进行验收流程
|
// 库管班审核通过,放行进行验收流程
|
||||||
System.out.println("ONE会签成功,放行进行验收流程!");
|
System.out.println("ONE会签成功,放行进行验收流程!");
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
pcd.check_time as passTime,
|
pcd.check_time as passTime,
|
||||||
pcd.input_time as inputTime,
|
pcd.input_time as inputTime,
|
||||||
a.creator as inputUser,
|
a.creator as inputUser,
|
||||||
IFNULL(pcd.check_num, 0) - IFNULL(pcd.input_num, 0) as pendingInputNum,
|
case when pcd.status in (12,13,14) then 0 else IFNULL(pcd.check_num, 0) - IFNULL(pcd.input_num, 0) end as pendingInputNum,
|
||||||
tt.`code` as inputCode,
|
tt.`code` as inputCode,
|
||||||
mt1.manage_type as manageType
|
mt1.manage_type as manageType
|
||||||
FROM
|
FROM
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue