6 天以前 6d76addcf2e459d7aea53c3858847e8047746a53
src/main/java/com/ruoyi/sales/controller/ShippingInfoController.java
@@ -60,6 +60,18 @@
    @Autowired
    private StockUtils stockUtils;
    @GetMapping("/getByCustomerName")
    @ApiOperation("通过客户名称查询")
    public AjaxResult getByCustomerName(String customerName) {
        return AjaxResult.success(shippingInfoService.getShippingInfoByCustomerName(customerName));
    }
    @ApiOperation("详情")
    @GetMapping("/getById")
    public AjaxResult getById(Long id) {
        return AjaxResult.success(shippingInfoService.getDateil(id));
    }
    @GetMapping("/listPage")
    @ApiOperation("发货信息列表")
@@ -89,14 +101,6 @@
        req.setStatus("待审核");
        boolean save = shippingInfoService.save(req);
        return save ? AjaxResult.success() : AjaxResult.error();
    }
    @ApiOperation("发货扣库存")
    @PostMapping("/deductStock")
    @Transactional(rollbackFor = Exception.class)
    @Log(title = "发货信息管理", businessType = BusinessType.UPDATE)
    public AjaxResult deductStock(@RequestBody ShippingInfoDto req) throws IOException {
        return shippingInfoService.deductStock( req) ? AjaxResult.success() : AjaxResult.error();
    }
    @PostMapping("/update")