|
@@ -254,7 +254,7 @@ public class BmstruckDetailsOrderServiceImpl implements IBmstruckDetailsOrderSer
|
|
|
System.out.println("根据运单查询到的计量实绩数据为," + weightTaskResultIdList);
|
|
|
Map<String,Object> priceMap = getPriceId(orderId);
|
|
|
System.out.println("根据运单查询到单价数据为," + priceMap);
|
|
|
- if (priceMap == null || priceMap.size() == 0 || priceMap.get("priceId") == null) {
|
|
|
+ if (priceMap == null || priceMap.size() == 0 || DataChange.dataToBigDecimal(priceMap.get("priceId")).intValue() == 0) {
|
|
|
return 0;
|
|
|
}
|
|
|
BigDecimal priceId = (BigDecimal) priceMap.get("priceId");
|