|
@@ -1325,4 +1325,11 @@ public class OmstruckOrderController extends BaseRESTfulController {
|
|
|
List<Map<String, Object>> mapList = omstruckOrderService.getWarehouseMes(mapValue);
|
|
|
return success(mapList);
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation(value = "通过运单下的物资信息")
|
|
|
+ @PostMapping("/closeInwardOrderByPlan")
|
|
|
+ public RESTfulResult closeInwardOrderByPlan(@RequestParam Integer planId) {
|
|
|
+ int result = omstruckOrderMapper.closeInwardOrderByPlan(new BigDecimal(planId));
|
|
|
+ return success(result);
|
|
|
+ }
|
|
|
}
|