|
@@ -1181,5 +1181,17 @@ public class WMSController extends BaseRESTfulController {
|
|
|
public Map<String,Object> insertOyeInboundResult(@RequestBody Map<String,Object> map) {
|
|
|
return wmsFeign.insertOyeInboundResult(map);
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation("划分实时库存")
|
|
|
+ @PostMapping("updateInsertRealTime")
|
|
|
+ public Map<String,Object> updateInsertRealTime(@RequestBody Map<String,Object> map) {
|
|
|
+ return wmsFeign.updateInsertRealTime(map);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation("定制报表数据,收发存")
|
|
|
+ @PostMapping("receiveSendReport")
|
|
|
+ public Map<String,Object> receiveSendReport(@RequestBody Map<String,Object> map) {
|
|
|
+ return wmsFeign.receiveSendReport(map);
|
|
|
+ }
|
|
|
}
|
|
|
|