|
|
|
@ -4410,10 +4410,14 @@ public class QcServiceImpl implements QcService { |
|
|
|
System.out.println("字符串转换数值失败(receiptItemNo): " + inData.getReceiptItemNo()); |
|
|
|
} |
|
|
|
String inspectDate = sdf.format(inData.getInspectorDate()); |
|
|
|
Float arriveQty = inData.getRollCount().floatValue(); // 送检数量 |
|
|
|
Float qtyInspected = inData.getSamplingQty().floatValue(); // 检验数量/抽样数量 |
|
|
|
Float qtyApproved = inData.getPassQty() == null ? 0 : inData.getPassQty().floatValue();// 合格数量 |
|
|
|
Float qtyScrapt = inData.getNotPassQty() == null ? 0 : inData.getNotPassQty().floatValue();// 不合格数量 |
|
|
|
// Float arriveQty = inData.getRollCount().floatValue(); // 送检数量 |
|
|
|
// Float qtyInspected = inData.getSamplingQty().floatValue(); // 检验数量/抽样数量 |
|
|
|
// Float qtyApproved = inData.getPassQty() == null ? 0 : inData.getPassQty().floatValue();// 合格数量 |
|
|
|
// Float qtyScrapt = inData.getNotPassQty() == null ? 0 : inData.getNotPassQty().floatValue();// 不合格数量 |
|
|
|
BigDecimal arriveQty = inData.getRollCount(); // 送检数量 |
|
|
|
BigDecimal qtyInspected = inData.getSamplingQty(); // 检验数量/抽样数量 |
|
|
|
BigDecimal qtyApproved = inData.getPassQty() == null ? BigDecimal.ZERO : inData.getPassQty();// 合格数量 |
|
|
|
BigDecimal qtyScrapt = inData.getNotPassQty() == null ? BigDecimal.ZERO : inData.getNotPassQty();// 不合格数量 |
|
|
|
String inspectResult = inData.getInspectionResult(); // 检验结果 |
|
|
|
String handleType = inData.getDisposalMeasures() == null ? "" : inData.getDisposalMeasures(); // 不合格处理方式 |
|
|
|
String username = inData.getUpdateBy(); // 用户名 |
|
|
|
|