自动化立体仓库 - WMS系统
pang.jiabao
2024-10-24 ef19ce2bc384c00b590ebdbd4e8c14ebfa9f0188
src/main/java/com/zy/asrs/entity/LocDetl.java
@@ -4,8 +4,10 @@
import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.core.common.Cools;
import com.core.common.SpringUtils;
import com.zy.asrs.service.BasBoxTypeService;
import com.zy.asrs.service.LocMastService;
import com.zy.common.utils.Synchro;
import com.zy.system.entity.User;
@@ -35,34 +37,34 @@
    @ExcelProperty("数量")
    private Double anfme;
    @ApiModelProperty(value= "商品编号")
    @ExcelProperty("商品编号")
    @ApiModelProperty(value= "规格")
    @ExcelProperty("规格")
    private String matnr;
    @ApiModelProperty(value= "商品名称")
    @ExcelProperty("商品名称")
    private String maktx;
    @ApiModelProperty(value= "规格")
    @ExcelProperty("规格")
    @ApiModelProperty(value= "接头")
    private String specs;
    @ApiModelProperty(value= "货品特征")
    @ExcelProperty("货品特征")
    @ApiModelProperty(value= "箱号")
//    @ExcelProperty("箱号")
    private String batch;
    @ApiModelProperty(value= "单据编号")
    @ExcelProperty("单据编号")
//    @ExcelProperty("单据编号")
    @TableField("order_no")
    private String orderNo;
    @ApiModelProperty(value= "型号")
    @ApiModelProperty(value= "卷号")
    private String model;
    @ApiModelProperty(value= "颜色")
    private String color;
    @ApiModelProperty(value= "品牌")
    @ApiModelProperty(value= "木箱类型")
    @ExcelProperty("木箱类型")
    private String brand;
    @ApiModelProperty(value= "单位")
@@ -126,7 +128,7 @@
    @TableField("dead_time")
    private String deadTime;
    @ApiModelProperty(value= "预警天数")
    @ApiModelProperty(value= "理货标识 0未理货,1理货中,2理货完成")
    @TableField("dead_warn")
    private Integer deadWarn;
@@ -186,6 +188,20 @@
        }
    }
    public String getDeadWarn$(){
        if (null == this.deadWarn){ return "未理货"; }
        switch (this.deadWarn){
            case 0:
                return "未理货";
            case 1:
                return "理货中";
            case 2:
                return "已理货";
            default:
                return String.valueOf(this.beBatch);
        }
    }
    public String getSource$(){
        if (null == this.source){ return null; }
        switch (this.source){
@@ -233,6 +249,15 @@
        return null;
    }
    public String getBrand$(){
        BasBoxTypeService basBoxTypeService = SpringUtils.getBean(BasBoxTypeService.class);
        BasBoxType basBoxType = basBoxTypeService.selectOne(new EntityWrapper<BasBoxType>().eq("box_type", this.brand));
        if (!Cools.isEmpty(basBoxType)){
            return String.valueOf(basBoxType.getBoxSpecs());
        }
        return this.brand;
    }
    public String getModiTime$(){
        if (Cools.isEmpty(this.modiTime)){
            return "";