自动化立体仓库 - WMS系统
LSH
2023-01-04 5e89cb64a5cc8c60d22aa477799112e4b0d60157
src/main/java/com/zy/ints/entity/ErpDetTb.java
@@ -146,5 +146,38 @@
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.billdate);
    }
    public String getIokindid$(){
        if (null == this.iokindid){ return null; }
        switch (this.iokindid){
            case "TF_PSS":
                return "采购销售";
            case "TF_IC":
                return "库存调拨";
            case "TF_IJ":
                return "库存调整";
            case "TF_ML":
                return "生产领料";
            case "TF_MM0":
                return "生产缴库";
            case "TF_TC":
                return "托工退回";
            default:
                return String.valueOf(this.status);
        }
    }
    public String getStatus$(){
        if (null == this.status){ return null; }
        switch (this.status){
            case 0:
                return "0(初始状态)";
            case 1:
                return "1(已接收)";
            case 2:
                return "2(异常)";
            default:
                return String.valueOf(this.status);
        }
    }
}