Переглянути джерело

新增金额撤销
新增报表查看

y 2 роки тому
батько
коміт
ee2e5c8f7a

+ 2 - 0
src/main/java/com/ydtech/modules/inv/utils/TransferUtils.java

@@ -80,6 +80,7 @@ public class TransferUtils {
      * 转账成功后添加支出账户操作信息
      */
     public static InvAccountOperate insertOutAccountOperate(InvAccountExcel insAccountExcel) {
+        JSONObject outProfit1 = insAccountExcel.getOutProfit();
         //支出公司
         InvAccountOperate insAccountOperate = new InvAccountOperate();
         InvAccountOperate operate = operate(insAccountExcel, insAccountOperate);
@@ -92,6 +93,7 @@ public class TransferUtils {
         operate.setCreateTime(LocalDateTime.now());
         operate.setRemark(insAccountExcel.getRemark());
         operate.setOutCardNum(insAccountExcel.getOutCardNum());
+        insAccountExcel.setOutProfit(outProfit1);
         return operate;
     }