| | |
| | | public class OutboundBatchSeqReleaseGuard { |
| | | |
| | | public static final long OUTBOUND_CRN_COMPLETE_WRK_STS = 25L; |
| | | public static final long OUTBOUND_STATION_COMPLETE_WRK_STS = 26L; |
| | | public static final long OUTBOUND_TASK_COMPLETE_WRK_STS = 14L; |
| | | public static final long OUTBOUND_ERP_REPORT_PENDING_WRK_STS = 17L; |
| | | public static final long OUTBOUND_FINISHED_WRK_STS = 15L; |
| | |
| | | |
| | | public boolean isReleaseStatus(Long wrkSts) { |
| | | return Objects.equals(wrkSts, OUTBOUND_CRN_COMPLETE_WRK_STS) |
| | | || Objects.equals(wrkSts, OUTBOUND_STATION_COMPLETE_WRK_STS) |
| | | || Objects.equals(wrkSts, OUTBOUND_TASK_COMPLETE_WRK_STS) |
| | | || Objects.equals(wrkSts, OUTBOUND_ERP_REPORT_PENDING_WRK_STS) |
| | | || Objects.equals(wrkSts, OUTBOUND_FINISHED_WRK_STS); |