chenlu
2025-02-10 2ed98bc1fc4ad46ff746ff82b92bcd199706cc76
north-glass-erp/src/main/java/com/example/erp/controller/sd/OrderController.java
@@ -42,6 +42,15 @@
            throw new ServiceException(Constants.Code_500,Constants.Code_msg);
        }
    }
    @ApiOperation("其他系统传输订单保存")
    @PostMapping("/saveOtherSystemOrder")
    public Result saveOtherSystemOrder(@RequestBody Map<String, Object> orderMap) throws Exception {
        if(orderService.saveOrder(orderMap))    {
            return Result.seccess(true);
        }else{
            throw new ServiceException(Constants.Code_500,Constants.Code_msg);
        }
    }
    @ApiOperation("订单表头保存")
    @PostMapping("/saveOrderTitle")
@@ -231,5 +240,11 @@
        return  Result.seccess(orderService.updateOrderId(map));
    }
    @ApiOperation("订单反审是否存在手动大小片")
    @PostMapping("/selectDifferentSize/{orderId}")
    public Result selectDifferentSize(@PathVariable String orderId)  {
        return  Result.seccess(orderService.selectDifferentSize(orderId));
    }
}