其他入库类型调整
This commit is contained in:
parent
a5c8858d76
commit
1eaa9d9f1c
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue