From ca014b7e7ed13cf155c8a62296ea1a9fb64942da Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期一, 17 六月 2024 09:17:42 +0800
Subject: [PATCH] 自定义标签打印功能部分代码
---
north-glass-erp/src/main/java/com/example/erp/controller/pp/ProcessCardController.java | 18 ++++++++++++++++++
1 files changed, 18 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 bd8896f..0b299a5 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
@@ -189,6 +189,14 @@
return Result.seccess(flowCardService.getSelectPrintLabelSv(object));
}
+ @ApiOperation("鎵撳嵃鑷畾涔夋爣绛炬暟鎹煡璇㈡帴鍙�")
+ @PostMapping("/getSelectPrintCustomLabel/{type}")
+ public Result getSelectPrintCustomLabel( @PathVariable String type,
+ @RequestBody Map<String, Object> object) {
+ return Result.seccess(flowCardService.getSelectPrintCustomLabelSv(type,object));
+
+ }
+
@ApiOperation("澶嶉�夋淇敼鎺掔増鐘舵��")
@SaCheckPermission("SelectProcessCard.review")
@PostMapping("/updateComposing")
@@ -218,4 +226,14 @@
}
}
+ @ApiOperation("鑷畾涔夋爣绛炬墦鍗版槑缁嗘帴鍙�")
+ @PostMapping("/getCustomLabelDetail/{name}/{form}/{id}")
+ public Result getCustomLabelDetail(
+ @PathVariable String name,
+ @PathVariable String form,
+ @PathVariable String id,
+ @RequestBody FlowCard flowCard) {
+ return Result.seccess(flowCardService.getCustomLabelDetailSv(name,form,id, flowCard));
+
+ }
}
--
Gitblit v1.8.0