Commit cae3fd9c by huluobin

maven 调整

parent ce39f0b1
......@@ -632,6 +632,9 @@ public class BalanceSheetService {
dcBalanceSheet.setInventoryAmount(inventoryBalanceSum);
dcBalanceSheetNew.setInventoryAmount(inventoryBalanceSum);
//其他应收款 还不知道哪里来的
dcBalanceSheetNew.setAccountsReceivable(dcBalanceSheet.getAccountsReceivable());
dcBalanceSheetService.saveOrUpdate(dcBalanceSheet);
dcBalanceSheetNewService.saveOrUpdate(dcBalanceSheetNew);
......@@ -818,6 +821,9 @@ public class BalanceSheetService {
dcBalanceSheetNewResult.setInventoryAmount(dcBalanceSheetNew.getInventoryAmount()
.add(dcBalanceSheetNewModify.getInventoryAmount()));
dcBalanceSheetNewResult.setAccountsReceivable(dcBalanceSheetNew.getAccountsReceivable()
.add(dcBalanceSheetNewModify.getAccountsReceivable()));
dcBalanceSheetNewResultService.saveOrUpdate(dcBalanceSheetNewResult);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment