|
@@ -3780,8 +3780,9 @@ public class ExcelTabController extends BladeController {
|
|
@ApiImplicitParam(name = "id", value = "记录id-当做groupId", required = true),
|
|
@ApiImplicitParam(name = "id", value = "记录id-当做groupId", required = true),
|
|
@ApiImplicitParam(name = "contractId", value = "合同段id", required = true)
|
|
@ApiImplicitParam(name = "contractId", value = "合同段id", required = true)
|
|
})
|
|
})
|
|
- public R<List<Map<String, Object>>> getBussDataInfoTrial(Long id, Long pkeyId, Long contractId, Long entrustId ,Integer type,Long nodeId ) {
|
|
|
|
- List<Map<String, Object>> bussDataInfoTrial = excelTabService.getBussDataInfoTrial(id, pkeyId, contractId, entrustId, type, nodeId);
|
|
|
|
|
|
+ public R<List<Map<String, Object>>> getBussDataInfoTrial(Long id, Long pkeyId, Long contractId, Long entrustId ,Integer type,Long nodeId,String formData) {
|
|
|
|
+ JSONObject jsonObject = JSONObject.parseObject(formData);
|
|
|
|
+ List<Map<String, Object>> bussDataInfoTrial = excelTabService.getBussDataInfoTrial(id, pkeyId, contractId, entrustId, type, nodeId,jsonObject);
|
|
return R.data(bussDataInfoTrial);
|
|
return R.data(bussDataInfoTrial);
|
|
}
|
|
}
|
|
|
|
|