Commit d2c07c566d265de51a73d4c390a35e0441d3e1fa
1 parent
13d93e26
1. 增加取货错处理接口
Showing
1 changed file
with
11 additions
and
0 deletions
huaheng-wms-core/src/main/java/org/jeecg/modules/wms/api/wcs/controller/WcsController.java
... | ... | @@ -201,4 +201,15 @@ public class WcsController extends HuahengBaseController { |
201 | 201 | Result result = wcsService.reentryHandle(taskNo); |
202 | 202 | return result; |
203 | 203 | } |
204 | + | |
205 | + @AutoLog(value = "取货错处理") | |
206 | + @PostMapping("/pickupErrorHandle") | |
207 | + @ApiOperation("取货错处理") | |
208 | + @ResponseBody | |
209 | + @ApiLogger(apiName = "取货错处理", from = "WCS") | |
210 | + public Result pickupErrorHandle(@RequestBody Map<String, String> map) { | |
211 | + String taskNo = map.get("taskNo"); | |
212 | + Result result = wcsService.pickupErrorHandle(taskNo); | |
213 | + return result; | |
214 | + } | |
204 | 215 | } |
... | ... |