| | |
| | | public class OrderMesXGHYParam { |
| | | private String barcode ; //托盘条码(徐工时间戳) = snowflakeIdWorker.nextId() zpallet |
| | | private int palletizingNo; //码垛位编号(位置) |
| | | private String warehouseType = "2"; //码垛位编号(位置) |
| | | private List<Box> matList; //木箱集合 |
| | | |
| | | |
| | |
| | | private String boxNo; //箱号 |
| | | private String boxPos; //位置 1 2 3 origin 木箱位置 |
| | | private String boxType; //木箱类型 木箱类型 brand brand$ |
| | | private String wideInWidth; // 4.5μm×588mm matnr 中的 4.5 |
| | | private String thickness; //4.5μm×588mm matnr 中的 588 |
| | | private String wideInWidth; // 4.5μm×588mm matnr 中的 588 |
| | | private String thickness; //4.5μm×588mm matnr 中的 4.5 |
| | | |
| | | private String rollType = "纸轴"; //木箱类型 brand brand$ |
| | | private String rollType = "FRP"; // |
| | | |
| | | private List<Roll> rolls; //卷集合 |
| | | |
| | |
| | | // 先按"μm×"分割,再按"mm"分割 |
| | | String[] firstSplit = matnr.split("μm×"); |
| | | if (firstSplit.length == 2) { |
| | | wideInWidth = firstSplit[0]; // 5.2 |
| | | thickness = firstSplit[0]; // 5.2 |
| | | String[] secondSplit = firstSplit[1].split("mm"); |
| | | if (secondSplit.length > 0) { |
| | | thickness = secondSplit[0]; // 834.1 |
| | | wideInWidth = secondSplit[0]; // 834.1 |
| | | } |
| | | } |
| | | boxPos = sampleWrkDetl.getOrigin(); |