| | |
| | | return AjaxResult.success(list); |
| | | } |
| | | |
| | | @PostMapping("/scanInbound") |
| | | @ApiOperation("销售订单扫码-合格入库") |
| | | public AjaxResult scanInbound(@RequestBody SalesScanInboundDto dto) { |
| | | salesLedgerService.scanInbound(dto); |
| | | return AjaxResult.success(); |
| | | } |
| | | |
| | | @PostMapping("/scanInboundUnqualified") |
| | | @ApiOperation("销售订单扫码-不合格入库") |
| | | public AjaxResult scanInboundUnqualified(@RequestBody SalesScanInboundDto dto) { |
| | | salesLedgerService.scanInboundUnqualified(dto); |
| | | return AjaxResult.success(); |
| | | } |
| | | |
| | | @PostMapping("/scanOutbound") |
| | | @ApiOperation("销售订单扫码-合格出库") |
| | | public AjaxResult scanOutbound(@RequestBody SalesScanInboundDto dto) { |
| | | salesLedgerService.scanOutbound(dto); |
| | | return AjaxResult.success(); |
| | | } |
| | | |
| | | @PostMapping("/scanOutboundUnqualified") |
| | | @ApiOperation("销售订单扫码-不合格出库") |
| | | public AjaxResult scanOutboundUnqualified(@RequestBody SalesScanInboundDto dto) { |
| | | salesLedgerService.scanOutboundUnqualified(dto); |
| | | return AjaxResult.success(); |
| | | } |
| | | |
| | | } |