|
@@ -156,7 +156,7 @@ public class CompensationInfoController extends BladeController {
|
|
}
|
|
}
|
|
|
|
|
|
@GetMapping("/get-buss-pdfInfo")
|
|
@GetMapping("/get-buss-pdfInfo")
|
|
- @ApiOperationSupport(order = 18)
|
|
|
|
|
|
+ @ApiOperationSupport(order = 9)
|
|
@ApiOperation(value = "单表pdf预览", notes = "单表pdf预览")
|
|
@ApiOperation(value = "单表pdf预览", notes = "单表pdf预览")
|
|
@ApiImplicitParams(value = {
|
|
@ApiImplicitParams(value = {
|
|
@ApiImplicitParam(name = "id", value = "当前表单的id", required = true)
|
|
@ApiImplicitParam(name = "id", value = "当前表单的id", required = true)
|
|
@@ -166,7 +166,7 @@ public class CompensationInfoController extends BladeController {
|
|
}
|
|
}
|
|
|
|
|
|
@GetMapping("/get-buss-pdfs")
|
|
@GetMapping("/get-buss-pdfs")
|
|
- @ApiOperationSupport(order = 21)
|
|
|
|
|
|
+ @ApiOperationSupport(order = 10)
|
|
@ApiOperation(value = "多表预览", notes = "多表预览")
|
|
@ApiOperation(value = "多表预览", notes = "多表预览")
|
|
@ApiImplicitParams(value = {
|
|
@ApiImplicitParams(value = {
|
|
@ApiImplicitParam(name = "agreementId", value = "协议的id", required = true),
|
|
@ApiImplicitParam(name = "agreementId", value = "协议的id", required = true),
|
|
@@ -175,21 +175,9 @@ public class CompensationInfoController extends BladeController {
|
|
return compensationInfoService.getPdfS(agreementId);
|
|
return compensationInfoService.getPdfS(agreementId);
|
|
}
|
|
}
|
|
|
|
|
|
-// @PostMapping("/add-cope-tab")
|
|
|
|
-// @ApiOperationSupport(order = 19)
|
|
|
|
-// @ApiOperation(value = "表单新增复制", notes = "表单新增复制,,返回协议id")
|
|
|
|
-// @ApiImplicitParams(value = {
|
|
|
|
-// @ApiImplicitParam(name = "projectId", value = "项目id", required = true),
|
|
|
|
-// @ApiImplicitParam(name = "areaId", value = "当前树节点id", required = true),
|
|
|
|
-// @ApiImplicitParam(name = "tableId", value = "表单的tableId", required = true),
|
|
|
|
-// @ApiImplicitParam(name = "nodeType", value = "新增返回的nodeType", required = true)
|
|
|
|
-// })
|
|
|
|
-// public R addCopeTab(@RequestBody TableCopyVO vo) {
|
|
|
|
-// return compensationInfoService.addCopeTab(vo);
|
|
|
|
-// }
|
|
|
|
|
|
|
|
@GetMapping("/cope-tab")
|
|
@GetMapping("/cope-tab")
|
|
- @ApiOperationSupport(order = 19)
|
|
|
|
|
|
+ @ApiOperationSupport(order = 11)
|
|
@ApiOperation(value = "表单复制", notes = "表单复制,传入当前表id,返回协议id")
|
|
@ApiOperation(value = "表单复制", notes = "表单复制,传入当前表id,返回协议id")
|
|
@ApiImplicitParams(value = {
|
|
@ApiImplicitParams(value = {
|
|
@ApiImplicitParam(name = "id", value = "当前表单的id", required = true)
|
|
@ApiImplicitParam(name = "id", value = "当前表单的id", required = true)
|
|
@@ -198,4 +186,24 @@ public class CompensationInfoController extends BladeController {
|
|
return compensationInfoService.updateCopeTab(id);
|
|
return compensationInfoService.updateCopeTab(id);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 结算获取补偿协议,不分页,不显示已经引用的
|
|
|
|
+ * @param info
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @GetMapping("/getAgreementList")
|
|
|
|
+ @ApiOperationSupport(order = 12)
|
|
|
|
+ @ApiOperation(value = "结算查询补偿协议", notes = "结算查询补偿协议")
|
|
|
|
+ @ApiImplicitParams(value = {
|
|
|
|
+ @ApiImplicitParam(name = "projectId", value = "项目id", required = true),
|
|
|
|
+ @ApiImplicitParam(name = "areaId", value = "当前树节点id", required = true),
|
|
|
|
+ @ApiImplicitParam(name = "type", value = "协议类型1征地补偿2坟地补偿3专项设施", required = true),
|
|
|
|
+ @ApiImplicitParam(name = "number", value = "编号搜索值", required = false)
|
|
|
|
+ })
|
|
|
|
+ public R<List<CompensationInfo>> getAgreementList(CompensationInfo info) {
|
|
|
|
+ List<CompensationInfo> list = compensationInfoService.getAgreementList(info);
|
|
|
|
+ return R.data(list);
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|