zhangyuewww 3 سال پیش
والد
کامیت
335dc3b980

+ 2 - 2
winsea-haixin-plugin-yiliangyiyun/src/main/java/com/yh/saas/plugin/yiliangyiyun/service/impl/ContractCostInfoServiceImpl.java

@@ -90,7 +90,7 @@ public class ContractCostInfoServiceImpl extends ServiceImpl<ContractCostInfoMap
             String staffName = this.billOperateHisService.getStaffAndName();
             // 插入操作历史
             this.billOperateHisService.saveBillOperateHis(contractCostInfo.getId(), NumberConstant.CONSTANT_COST, staffName, null,
-                    "请款", null, contractCostInfo.getRemark());
+                    "请款"+"("+contractCostInfo.getCostPrice()+")", null, contractCostInfo.getRemark());
             boolean isStartWorkflow = StringUtils.isBlank(contractCostInfo.getWorkflowId());
             // 不是退回的单子
             if (isStartWorkflow) {
@@ -162,7 +162,7 @@ public class ContractCostInfoServiceImpl extends ServiceImpl<ContractCostInfoMap
         String staffName = this.billOperateHisService.getStaffAndName();
         // 插入操作历史
         this.billOperateHisService.saveBillOperateHis(contractCostInfo.getId(), NumberConstant.CONSTANT_COST, staffName, null,
-                "付款", null, "");
+                "付款"+"("+contractCostInfo.getCostPrice()+")", null, "");
         return "ok";
     }
 

+ 2 - 2
winsea-haixin-plugin-yiliangyiyun/src/main/java/com/yh/saas/plugin/yiliangyiyun/service/impl/NonContractExpensesServiceImpl.java

@@ -90,7 +90,7 @@ public class NonContractExpensesServiceImpl extends ServiceImpl<NonContractExpen
             String staffName = this.billOperateHisService.getStaffAndName();
             // 插入操作历史
             this.billOperateHisService.saveBillOperateHis(nonContractExpenses.getId(), NumberConstant.CONSTANT_EXE_COST, staffName, null,
-                    "请款", null, nonContractExpenses.getRemarks());
+                    "请款"+"("+nonContractExpenses.getAmountMoney()+")", null, nonContractExpenses.getRemarks());
             boolean isStartWorkflow = StringUtils.isBlank(nonContractExpenses.getWorkflowId());
             // 不是退回的单子
             if (isStartWorkflow) {
@@ -150,7 +150,7 @@ public class NonContractExpensesServiceImpl extends ServiceImpl<NonContractExpen
         String staffName = this.billOperateHisService.getStaffAndName();
         // 插入操作历史
         this.billOperateHisService.saveBillOperateHis(nonContractExpenses.getId(), NumberConstant.CONSTANT_EXE_COST, staffName, null,
-                "付款", null, "");
+                "付款"+"("+nonContractExpenses.getAmountMoney()+")", null, "");
         return "ok";
     }