| | |
| | | import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import com.baomidou.mybatisplus.enums.IdType; |
| | | 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.OrderService; |
| | | import com.zy.common.utils.Synchro; |
| | | import com.zy.system.entity.User; |
| | |
| | | @ApiModelProperty(value= "备注") |
| | | private String memo; |
| | | |
| | | @ApiModelProperty(value = "退库标记") |
| | | @TableField("tk_type") |
| | | private Integer tkType; |
| | | |
| | | /** |
| | | * 卷信息ID |
| | | */ |
| | | @ApiModelProperty(value= "卷信息ID") |
| | | @TableField("roll_up") |
| | | private Long rollUp; |
| | | |
| | | public OrderDetl() {} |
| | | |
| | | public OrderDetl(Long orderId, String orderNo, Double anfme, Double qty, String matnr, String maktx, String batch, String specs, String model, String color, String brand, String unit, Double price, String sku, Double units, String barcode, String origin, String manu, String manuDate, String itemNum, Double safeQty, Double weight, Double length, Double volume, String threeCode, String supp, String suppCode, Integer beBatch, String deadTime, Integer deadWarn, Integer source, Integer inspect, Integer danger, Integer status, Long createBy, Date createTime, Long updateBy, Date updateTime, String memo) { |
| | |
| | | } |
| | | } |
| | | |
| | | public String getTkType$(){ |
| | | if (null == this.tkType) return "正常"; |
| | | if (this.tkType == 1) { |
| | | return "退库"; |
| | | } |
| | | return "正常"; |
| | | } |
| | | |
| | | public String getDanger$(){ |
| | | if (null == this.danger){ return null; } |
| | | switch (this.danger){ |
| | |
| | | Synchro.Copy(source, this); |
| | | } |
| | | |
| | | 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; |
| | | } |
| | | |
| | | } |