#
1
2025-05-12 a6480edc1d366bfeead1eb2784be13ae747e3f23
src/main/java/com/zy/asrs/entity/TaskWrk.java
@@ -110,7 +110,7 @@
     */
    @ApiModelProperty(value= "重量")
    @TableField("SC_WEIGHT")
    private Integer scWeight;
    private Integer scWeight = 0;
    /**
     * 修改人员
@@ -376,4 +376,28 @@
        }
    }
    public Integer getStatusWms(){
        switch (status){
            case 5:
                return 1;
            case 4:
                return 0;
            default:
                return 0;
        }
    }
    public String getPut(String point){
        String[] split = point.split("-");
        if (split.length == 5){
//            String locNo = String.format("%02d", ) +
//                    String.format("%03d", split[3]) +
//                    String.format("%02d", split[4]);
            return split[2]+"0"+split[3]+split[4];
        } else {
            return point;
        }
    }
}