| | |
| | | import org.jeecg.common.api.vo.Result; |
| | | import org.jeecg.common.util.TranslateDictTextUtils; |
| | | import org.jeecg.modules.tms.entity.dto.OutBoundOrderFlowDto; |
| | | import org.jeecg.modules.tms.entity.dto.OutBoundRequestDto; |
| | | import org.jeecg.modules.tms.entity.dto.OutboundOrderAndDetailDto; |
| | | import org.jeecg.modules.tms.entity.vo.OutboundDetailVo; |
| | | import org.jeecg.modules.tms.enums.OutBillStatus; |
| | |
| | | return Result.OK("操作成功"); |
| | | } |
| | | |
| | | @AutoLog(value = "申请单方式出库") |
| | | @ApiOperation(value = "申请单方式出库", notes = "申请单方式出库") |
| | | @PostMapping(value = "/outBound") |
| | | public Result<?> outBound(@RequestBody List<OutBoundRequestDto> outBoundRequestList) { |
| | | outboundOrderService.outBound(outBoundRequestList); |
| | | return Result.OK("出库成功"); |
| | | } |
| | | |
| | | /** |
| | | * 通过id删除 |
| | | * @param id |