|
@@ -86,7 +86,6 @@ public class StatementOfAccountExportServiceImpl implements StatementOfAccountEx
|
|
|
.quantity(skuSpec.getQuantity())
|
|
|
.unitPrice(skuSpec.getUnitPrice())
|
|
|
.subtotal(skuSpec.getSubtotal())
|
|
|
- .total(skuSpec.getTotal())
|
|
|
.bomSpecCode(bomSpec.getBomSpecCode())
|
|
|
.bomSpecName(bomSpec.getBomSpecName())
|
|
|
.bomQuantity(bomSpec.getQuantity())
|
|
@@ -98,11 +97,12 @@ public class StatementOfAccountExportServiceImpl implements StatementOfAccountEx
|
|
|
.packingLaborSummary(bomSpec.getPackingLaborSummary())
|
|
|
.managementFeeSummary(bomSpec.getManagementFeeSummary())
|
|
|
.outerBoxPackingFee(documentByOrderVo.getOuterBoxPackingFee())
|
|
|
+ .total(documentByOrderVo.getTotal())
|
|
|
.build();
|
|
|
exportDocumentByOrderBos.add(exportDocumentByOrderBo);
|
|
|
}
|
|
|
- all = all.add(skuSpec.getTotal());
|
|
|
}
|
|
|
+ all = all.add(documentByOrderVo.getTotal());
|
|
|
}
|
|
|
|
|
|
Map<String, Object> map = new HashMap<>();
|