|
|
@@ -232,6 +232,15 @@ public class FinanceRecordController extends BaseController {
|
|
|
}
|
|
|
//融信id
|
|
|
String zfrFinanceId = CommonUtil.objToString(map.get("zfrFinanceId"));
|
|
|
+ //获取融信信息
|
|
|
+ ZcFinanceInf financeInf = iZcFinanceInfService.getById(zfrFinanceId);
|
|
|
+ if(financeInf == null){
|
|
|
+ throw new Exception("获取融信信息失败");
|
|
|
+ }
|
|
|
+ //获取接收方
|
|
|
+ String zfiSupplierId = financeInf.getZfiSupplierId();
|
|
|
+ //放入map中
|
|
|
+ map.put("zfiSupplierId",zfiSupplierId);
|
|
|
//融资金额
|
|
|
String zfrAmount = CommonUtil.objToString(map.get("zfrAmount"));
|
|
|
//融资收款账号
|