|
@@ -2033,6 +2033,7 @@ public class SyPackingListTailoringServiceImpl extends ServiceImpl<SyPackingList
|
|
|
jsonObject.put("CINVCODE",item.getInventoryCode());//存货编码
|
|
|
jsonObject.put("CDEFINE28",item.getSmallPo());//小po
|
|
|
jsonObject.put("POAUTOIDCOL","Autoid");//对应类型
|
|
|
+ jsonObject.put("CBMEMO",syPackingListTailoring.getMemo());//备注
|
|
|
for (Map<String,Object> map : invoices){
|
|
|
if(Double.parseDouble(map.get("iQuantity").toString())==Double.parseDouble(jsonObject.get("IQUANTITY").toString())&&
|
|
|
map.get("cInvCode").toString().equalsIgnoreCase(item.getInventoryCode())&&map.get("cFree2").equals(item.getSize())
|
|
@@ -2180,6 +2181,7 @@ public class SyPackingListTailoringServiceImpl extends ServiceImpl<SyPackingList
|
|
|
jsonObject.put("size",item.getSize());
|
|
|
jsonObject.put("CINVCODE",item.getInventoryCode());//存货编码
|
|
|
jsonObject.put("DISAUTOIDCOL","AUTOID");//对应类型
|
|
|
+ jsonObject.put("CBMEMO",syPackingListTailoring.getMemo());//备注
|
|
|
for (Map<String,Object> map : invoices){
|
|
|
if(Double.parseDouble(map.get("iQuantity").toString())==Double.parseDouble(jsonObject.get("IQUANTITY").toString())&&
|
|
|
map.get("cInvCode").toString().equalsIgnoreCase(item.getInventoryCode()) &&jsonObject.get("size").equals(item.getSize())
|