|
@@ -1243,8 +1243,9 @@ public class TWarehouseBillsServiceImpl implements ITWarehouseBillsService {
|
|
return map;
|
|
return map;
|
|
}
|
|
}
|
|
String fBilltype = (String) item.get("fBilltype");
|
|
String fBilltype = (String) item.get("fBilltype");
|
|
- feeId = Long.valueOf(String.valueOf(objectMap.get("feeId"))).longValue();
|
|
|
|
|
|
+ String remark = objectMap.get("remark").toString();
|
|
long fId = Long.valueOf(String.valueOf(item.get("fId"))).longValue();
|
|
long fId = Long.valueOf(String.valueOf(item.get("fId"))).longValue();
|
|
|
|
+ feeId = Long.valueOf(String.valueOf(objectMap.get("feeId"))).longValue();
|
|
BigDecimal amt = (BigDecimal) objectMap.get("amt");
|
|
BigDecimal amt = (BigDecimal) objectMap.get("amt");
|
|
map.put("feeId", feeId);
|
|
map.put("feeId", feeId);
|
|
map.put("itemFeeId", objectMap.get("feeId"));
|
|
map.put("itemFeeId", objectMap.get("feeId"));
|
|
@@ -1252,6 +1253,7 @@ public class TWarehouseBillsServiceImpl implements ITWarehouseBillsService {
|
|
TWarehousebillsitems tWarehousebillsitems = new TWarehousebillsitems();
|
|
TWarehousebillsitems tWarehousebillsitems = new TWarehousebillsitems();
|
|
tWarehousebillsitems.setfAmt(amt);
|
|
tWarehousebillsitems.setfAmt(amt);
|
|
tWarehousebillsitems.setfSrcid(fId);
|
|
tWarehousebillsitems.setfSrcid(fId);
|
|
|
|
+ tWarehousebillsitems.setRemark(remark);
|
|
tWarehousebillsitems.setfBillstatus(50L);
|
|
tWarehousebillsitems.setfBillstatus(50L);
|
|
tWarehousebillsitems.setfBillingQty(fQty);
|
|
tWarehousebillsitems.setfBillingQty(fQty);
|
|
tWarehousebillsitems.setfBilltype(fBilltype);
|
|
tWarehousebillsitems.setfBilltype(fBilltype);
|