From 1edc3d1f85e2bcde84190db79804c98eb9303ffb Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期四, 05 十二月 2024 13:27:19 +0800
Subject: [PATCH] 提交打印相关页面程序
---
north-glass-erp/src/main/java/com/example/erp/controller/pp/ProcessCardController.java | 37 +++++++++++++++++++++++++++++++++++++
1 files changed, 37 insertions(+), 0 deletions(-)
diff --git a/north-glass-erp/src/main/java/com/example/erp/controller/pp/ProcessCardController.java b/north-glass-erp/src/main/java/com/example/erp/controller/pp/ProcessCardController.java
index 06e8deb..0a0b4ed 100644
--- a/north-glass-erp/src/main/java/com/example/erp/controller/pp/ProcessCardController.java
+++ b/north-glass-erp/src/main/java/com/example/erp/controller/pp/ProcessCardController.java
@@ -332,6 +332,14 @@
}
+ @ApiOperation("鎵撳嵃鑷畾涔夋爣绛炬暟鎹寜宸ョ▼鏌ヨ鎺ュ彛")
+ @PostMapping("/getPrintCustomDataProjectNo/{type}/{projectNo}")
+ public Result getPrintCustomDataProjectNo( @PathVariable String type,
+ @PathVariable String projectNo) {
+ return Result.seccess(flowCardService.getPrintCustomDataProjectNo(type,projectNo));
+
+ }
+
@ApiOperation("鎺掑簭姹囨�绘煡璇㈡帴鍙�")
@PostMapping("/selectSortTable")
public Result selectSortTable(
@@ -360,4 +368,33 @@
return Result.seccess(flowCardService.checkboxDeleteSv(object));
}
+ @ApiOperation("宸ョ▼鏄庣粏鎵撳嵃鏌ヨ")
+ @PostMapping("/selectPrintProjectDetails/{projectNo}")
+ public Result selectPrintProjectDetails(
+ @PathVariable String projectNo) {
+ return Result.seccess(flowCardService.getPrintProjectDetails(projectNo));
+
+ }
+ @ApiOperation("宸ョ▼鏄庣粏鎵撳嵃鏍囩鏌ヨ")
+ @PostMapping("/getPrintCustomDataProjectNoDetail/{type}/{detailType}")
+ public Result getPrintCustomDataProjectNoDetail(
+ @PathVariable String type,
+ @PathVariable Integer detailType,
+ @RequestBody Map<String, Object> object) {
+ return Result.seccess(flowCardService.getPrintCustomDataProjectNoDetailSv(type,detailType,object));
+
+ }
+
+ @ApiOperation("淇敼宸ヨ壓娴佺▼")
+ @PostMapping("/updateProcess/{processId}/{technologyNumber}/{orderId}/{process}")
+ public Result updateProcess(
+ @PathVariable String processId,
+ @PathVariable String technologyNumber,
+ @PathVariable String orderId,
+ @PathVariable String process,
+ @RequestBody Map<String, Object> object
+ ) {
+
+ return Result.seccess(flowCardService.updateProcessSv(processId,technologyNumber,orderId,process,object));
+ }
}
--
Gitblit v1.8.0