#
zjj
2025-04-08 3df03c486fde77ab36b9298a94bdbb0aa065a7e2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package com.zy.asrs.wcs.core.model.enums;
 
import com.zy.asrs.wcs.core.entity.BasConveyorSta;
import com.zy.asrs.wcs.rcs.model.protocol.StaProtocol;
 
/**
 * 站点状态枚举
 */
public enum SiteStatusType {
 
    // 自动
    SITE_AUTO,
    // 非自动
    SITE_UNAUTO,
    // 自动+有物+ID
    SITE_AUTO_RUN_ID,
    // 自动+有物
    SITE_AUTO_RUN,
    // 自动+ID
    SITE_AUTO_ID,
 
    ;
 
    public static SiteStatusType process(StaProtocol staProtocol){
        if (staProtocol == null) {
            return null;
        }
        if (staProtocol.isAutoing() && staProtocol.isLoading() && staProtocol.getWorkNo() > 0) {
            return SITE_AUTO_RUN_ID;
        }
        if (staProtocol.isAutoing() && staProtocol.isLoading()) {
            return SITE_AUTO_RUN;
        }
        if (staProtocol.isAutoing() && staProtocol.getWorkNo() > 0) {
            return SITE_AUTO_ID;
        }
        if (staProtocol.isAutoing()) {
            return SITE_AUTO;
        }
        if (!staProtocol.isAutoing()) {
            return SITE_UNAUTO;
        }
        return null;
    }
 
    public static SiteStatusType process(BasConveyorSta basConveyorSta){
        if (basConveyorSta == null) {
            return SITE_UNAUTO;
        }
        if (basConveyorSta.getAutoing() == null || basConveyorSta.getLoading() == null || basConveyorSta.getTaskNo() == null) {
            return SITE_UNAUTO;
        }
        if (basConveyorSta.getAutoing().equals("Y") && basConveyorSta.getLoading().equals("Y") && basConveyorSta.getTaskNo() > 0) {
            return SITE_AUTO_RUN_ID;
        }
        if (basConveyorSta.getAutoing().equals("Y") && basConveyorSta.getLoading().equals("Y")) {
            return SITE_AUTO_RUN;
        }
        if (basConveyorSta.getAutoing().equals("Y") && basConveyorSta.getTaskNo() > 0) {
            return SITE_AUTO_ID;
        }
        if (basConveyorSta.getAutoing().equals("Y")) {
            return SITE_AUTO;
        }
        if (!basConveyorSta.getAutoing().equals("Y")) {
            return SITE_UNAUTO;
        }
        return SITE_UNAUTO;
    }
 
}