| | |
| | | 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.BasProcessProceduresService; |
| | | import com.zy.asrs.service.BasQualityTestingService; |
| | | import com.zy.asrs.service.LocMastService; |
| | | import com.zy.asrs.service.LocOwnerService; |
| | | import com.zy.common.utils.Synchro; |
| | |
| | | private String maktx; |
| | | |
| | | @ApiModelProperty(value= "规格") |
| | | @ExcelProperty("规格") |
| | | private String specs; |
| | | |
| | | @ApiModelProperty(value= "货品特征") |
| | | @ExcelProperty("货品特征") |
| | | @ExcelProperty("批号") |
| | | private String batch; |
| | | |
| | | @ApiModelProperty(value= "单据编号") |
| | |
| | | private String orderNo; |
| | | |
| | | @ApiModelProperty(value= "型号") |
| | | @ExcelProperty("桶型") |
| | | private String model; |
| | | |
| | | @ApiModelProperty(value= "颜色") |
| | |
| | | |
| | | @ApiModelProperty(value= "生产日期") |
| | | @TableField("manu_date") |
| | | @ExcelProperty("生产日期") |
| | | private String manuDate; |
| | | |
| | | @ApiModelProperty(value= "品项数") |
| | |
| | | private Double safeQty; |
| | | |
| | | @ApiModelProperty(value= "重量") |
| | | @ExcelProperty("净重") |
| | | private Double weight; |
| | | |
| | | @ApiModelProperty(value= "长度") |
| | | private Double man_length; |
| | | @TableField("man_length") |
| | | @ExcelProperty("毛重") |
| | | private Double manLength; |
| | | |
| | | @ApiModelProperty(value= "体积") |
| | | @TableField("volume") |
| | | @ExcelProperty("罐装量") |
| | | private Double volume; |
| | | |
| | | @ApiModelProperty(value= "三方编码") |
| | |
| | | } |
| | | } |
| | | |
| | | public String getBoxType1$(){ |
| | | BasProcessProceduresService service = SpringUtils.getBean(BasProcessProceduresService.class); |
| | | BasProcessProcedures processProcedures = service.selectOne(new EntityWrapper<BasProcessProcedures>().eq("box_type", this.boxType1)); |
| | | if (!Cools.isEmpty(processProcedures)){ |
| | | return String.valueOf(processProcedures.getBoxSpecs()); |
| | | } |
| | | return this.boxType1; |
| | | } |
| | | |
| | | public String getBoxType2$(){ |
| | | BasQualityTestingService service = SpringUtils.getBean(BasQualityTestingService.class); |
| | | BasQualityTesting basQualityTesting = service.selectOne(new EntityWrapper<BasQualityTesting>().eq("box_type", this.boxType1)); |
| | | if (!Cools.isEmpty(basQualityTesting)){ |
| | | return String.valueOf(basQualityTesting.getBoxSpecs()); |
| | | } |
| | | return this.boxType1; |
| | | } |
| | | |
| | | } |