gongdecai 2 лет назад
Родитель
Сommit
9c202f7707

+ 5 - 0
winsea-haixin-plugin-yiliangyiyun/src/main/java/com/yh/saas/plugin/yiliangyiyun/entity/TranSettlementReport.java

@@ -253,6 +253,11 @@ public class TranSettlementReport extends BaseModel<TranSettlementReport> {
     @TableField(exist = false)
     private Integer roleFlag;
 
+    /**
+     * 合营方
+     */
+    @TableField(exist = false)
+    private String jointVentureParties;
     /**
      * 待审核id
      */

+ 4 - 0
winsea-haixin-plugin-yiliangyiyun/src/main/java/com/yh/saas/plugin/yiliangyiyun/service/impl/TranSettlementReportServiceImpl.java

@@ -115,6 +115,10 @@ public class TranSettlementReportServiceImpl extends ServiceImpl<TranSettlementR
                     taskId = jsonObject.getString("taskId");
                     tranSettlementReport.setTaskId(taskId);
                 }
+                Map<String, Object> variableMap = new HashMap<>();
+                if(contractManagementInfo != null){
+                    tranSettlementReport.setJointVentureParties(contractManagementInfo.getJointVentureParties());
+                }
             }
 
         }