luobang 1 éve
szülő
commit
2cacf0e75b

+ 1 - 0
src/main/java/com/steerinfo/dil/controller/OmstruckOrderController.java

@@ -1343,6 +1343,7 @@ public class OmstruckOrderController extends BaseRESTfulController {
     @ApiOperation(value = "通过运单下的物资信息")
     @PostMapping("/closeInwardOrderByPlan")
     public RESTfulResult closeInwardOrderByPlan(@RequestParam Integer planId) {
+
         int result = omstruckOrderMapper.closeInwardOrderByPlan(new BigDecimal(planId));
         result += omstruckOrderMapper.clsoePlanByPlan(new BigDecimal(planId));
         return success(result);

+ 1 - 0
src/main/java/com/steerinfo/dil/controller/OmstruckOrderSeparateController.java

@@ -484,6 +484,7 @@ public class OmstruckOrderSeparateController extends BaseRESTfulController {
     @ApiOperation(value = "正常关闭运输订单")
     @PostMapping("/closeInwardOrder")
     public RESTfulResult closeInwardOrder(Integer orderId, Integer sqe, String resultNetWeight){
+
         return success(omstruckOrderSeparateService.closeInwardOrder(orderId, sqe, resultNetWeight));
     }