|
|
@ -666,6 +666,7 @@ public class BoardServiceImpl implements BoardService { |
|
|
// 参数赋值 |
|
|
// 参数赋值 |
|
|
newData.setPrintId(count.longValue()); |
|
|
newData.setPrintId(count.longValue()); |
|
|
newData.setTcpValue(dataList.get(i).getValue()); |
|
|
newData.setTcpValue(dataList.get(i).getValue()); |
|
|
|
|
|
newData.setReceiveDate(record.getCreateTime()); |
|
|
resultList.add(newData); |
|
|
resultList.add(newData); |
|
|
} |
|
|
} |
|
|
return resultList; |
|
|
return resultList; |
|
|
@ -726,6 +727,8 @@ public class BoardServiceImpl implements BoardService { |
|
|
// 参数赋值 |
|
|
// 参数赋值 |
|
|
packagePrintData.setPrintId(count.longValue()); |
|
|
packagePrintData.setPrintId(count.longValue()); |
|
|
List<PackagePrintData> resultList = new ArrayList<>(); |
|
|
List<PackagePrintData> resultList = new ArrayList<>(); |
|
|
|
|
|
//打印的日期是创建时间 |
|
|
|
|
|
packagePrintData.setReceiveDate(record.getCreateTime()); |
|
|
resultList.add(packagePrintData); |
|
|
resultList.add(packagePrintData); |
|
|
return resultList; |
|
|
return resultList; |
|
|
} |
|
|
} |
|
|
@ -774,6 +777,7 @@ public class BoardServiceImpl implements BoardService { |
|
|
packagePrintData.setTcpValue(Objects.isNull(labelData) ||Objects.isNull(labelData.getWeight())?"0":labelData.getWeight().toString()); |
|
|
packagePrintData.setTcpValue(Objects.isNull(labelData) ||Objects.isNull(labelData.getWeight())?"0":labelData.getWeight().toString()); |
|
|
List<PackagePrintData> resultList = new ArrayList<>(); |
|
|
List<PackagePrintData> resultList = new ArrayList<>(); |
|
|
packagePrintData.setUnitQty(printLabelRecord.getPrintQty().doubleValue()); |
|
|
packagePrintData.setUnitQty(printLabelRecord.getPrintQty().doubleValue()); |
|
|
|
|
|
packagePrintData.setReceiveDate(labelData.getCreateTime()); |
|
|
resultList.add(packagePrintData); |
|
|
resultList.add(packagePrintData); |
|
|
return resultList; |
|
|
return resultList; |
|
|
} |
|
|
} |
|
|
|