Commit e7878bb6 authored by chenzhao's avatar chenzhao

批量放款录入接口

parent 1e2377c7
......@@ -119,7 +119,7 @@ public class FinancingInfoController extends BaseController {
financingInfoServiceImpl.upDateMoney(stationIds,money,date);
return ResponseHelper.buildResponse();
return ResponseHelper.buildResponse(null);
}
......
......@@ -377,7 +377,10 @@ public class AcceptanceCheckServiceImpl extends BaseService<AcceptanceCheckDto,A
finQuery.orderByDesc(BaseEntity::getRecDate);
finQuery.last("limit 1");
FinancingAuditing financingAuditing = financingAuditingService.getBaseMapper().selectOne(finQuery);
financingInfoService.execueFlow(MapBuilder.<String,Object>create().put("instanceId",financingAuditing.getInstanceId()).put("approvalStatus","0").put("isZG","1").build());
if (!Objects.isNull(financingAuditing)){
financingInfoService.execueFlow(MapBuilder.<String,Object>create().put("instanceId",financingAuditing.getInstanceId()).put("approvalStatus","0").put("isZG","1").build());
}
}
this.wofkflowExcute(instanceId, approvalStatus , comment ,BusinessWorkflowKey.资产审核.getCode() );
......
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