|
@@ -714,6 +714,15 @@ public class CommonController extends BaseController<Map<String, Object>> {
|
|
|
public ResponseResultVO<List<Map<String, Object>>> getInventoryByList(@RequestBody Map<String, Object> param) {
|
|
public ResponseResultVO<List<Map<String, Object>>> getInventoryByList(@RequestBody Map<String, Object> param) {
|
|
|
return commonService.getInventoryByList(param);
|
|
return commonService.getInventoryByList(param);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ @ApiOperation(
|
|
|
|
|
+ value = "查询标签打印项目",
|
|
|
|
|
+ notes = "查询标签打印项目"
|
|
|
|
|
+ )
|
|
|
|
|
+ @PostMapping("get_label_print_item")
|
|
|
|
|
+ public ResponseResultVO<List<Map<String, Object>>> getLabelPrintItem(@RequestBody Map<String, Object> param) {
|
|
|
|
|
+ return commonService.getLabelPrintItem(param);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|