|
@@ -2033,6 +2033,7 @@ public class SyPackingListTailoringServiceImpl extends ServiceImpl<SyPackingList
|
|
|
jsonObject.put("CINVCODE",item.getInventoryCode());
|
|
|
jsonObject.put("CDEFINE28",item.getSmallPo());
|
|
|
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())
|