| | |
| | | import com.zy.asrs.service.BasProcessProceduresService; |
| | | import com.zy.asrs.service.BasQualityTestingService; |
| | | import com.zy.asrs.service.OrderService; |
| | | import com.zy.asrs.service.StoreTypeService; |
| | | import com.zy.common.utils.Synchro; |
| | | import com.zy.system.entity.User; |
| | | import com.zy.system.service.UserService; |
| | |
| | | /** |
| | | * 厂家 |
| | | */ |
| | | @ApiModelProperty(value= "厂家") |
| | | @ApiModelProperty(value= "仓库编码") |
| | | private String manu; |
| | | |
| | | /** |
| | |
| | | ); |
| | | } |
| | | |
| | | |
| | | public String getStandby1$() { |
| | | StoreTypeService service = SpringUtils.getBean(StoreTypeService.class); |
| | | StoreType storeType = service.selectById(this.standby1); |
| | | if (!Cools.isEmpty(storeType)) { |
| | | return String.valueOf(storeType.getStoreName()); |
| | | } |
| | | return null; |
| | | } |
| | | |
| | | |
| | | public boolean beSimilar2(OrderDetl orderDetl){ |
| | | return ( |
| | | this.orderNo.equals(orderDetl.getOrderNo()) |
| | | && this.matnr.equals(orderDetl.getMatnr()) |
| | | && this.brand.equals(orderDetl.getBrand()) |
| | | && this.standby1.equals(orderDetl.getStandby1()) |
| | | && this.standby2.equals(orderDetl.getStandby2()) |
| | | && this.standby3.equals(orderDetl.getStandby3()) |
| | | && this.boxType1.equals(orderDetl.getBoxType1()) |
| | | && this.boxType2.equals(orderDetl.getBoxType2()) |
| | | && this.boxType3.equals(orderDetl.getBoxType3()) |
| | | ); |
| | | } |
| | | |
| | | |
| | | public static OrderDetl find(List<OrderDetl> detlDtos, String matnr, String batch, String brand, String standby1, String standby2, String standby3, String boxType1, String boxType2, String boxType3) { |
| | | if (Cools.isEmpty(matnr)) { |
| | | return null; |