| | |
| | | /** |
| | | * MES 发货通知单状态枚举 |
| | | * |
| | | * @author 芋道源码 |
| | | * @author 超级管理员 |
| | | */ |
| | | @Getter |
| | | @AllArgsConstructor |
| | |
| | | * |
| | | * 对应 MesWmSalesNoticeService#submitSalesNotice 方法 |
| | | */ |
| | | APPROVED(MesOrderStatusConstants.APPROVED, "待出库"); |
| | | // TODO @芋艿:【对齐】暂时无后续流程,看看后续要怎么支持下。 |
| | | APPROVED(MesOrderStatusConstants.APPROVED, "待出库"), |
| | | /** |
| | | * 已完成 |
| | | * |
| | | * 对应 MesWmSalesNoticeService#finishSalesNotice 方法(出库完成后调用) |
| | | */ |
| | | FINISHED(MesOrderStatusConstants.FINISHED, "已完成"); |
| | | |
| | | public static final Integer[] ARRAYS = Arrays.stream(values()).map(MesWmSalesNoticeStatusEnum::getStatus).toArray(Integer[]::new); |
| | | |