其他入库类型调整

This commit is contained in:
sez 2025-11-05 11:18:49 +08:00
parent a5c8858d76
commit 1eaa9d9f1c
2 changed files with 10 additions and 6 deletions

View File

@ -52,7 +52,7 @@ public class OtherInApplyFormPlugin extends AbstractBillPlugIn {
warehouseCode = warehouse.getString("number");
}
}
String orderType;//
String orderType = null;//
DynamicObject biztype = dataEntity.getDynamicObject("biztype");
String biztypeNumber = biztype.getString("number");
switch (biztypeNumber) {
@ -65,8 +65,10 @@ public class OtherInApplyFormPlugin extends AbstractBillPlugIn {
case "606":
orderType = "ZPRK";
break;
default:
orderType = "TZRK";
case "607"://礼品领用
case "608"://展会领用
case "609"://拍照领用
orderType = "TZRK";//调整入库
break;
}

View File

@ -60,7 +60,7 @@ public class OtherInApplyListPlugin extends AbstractListPlugin {
}
}
String orderType;//
String orderType = null;//
DynamicObject biztype = dataEntity.getDynamicObject("biztype");
String biztypeNumber = biztype.getString("number");
switch (biztypeNumber) {
@ -73,8 +73,10 @@ public class OtherInApplyListPlugin extends AbstractListPlugin {
case "606":
orderType = "ZPRK";
break;
default:
orderType = "TZRK";
case "607"://礼品领用
case "608"://展会领用
case "609"://拍照领用
orderType = "TZRK";//调整入库
break;
}