|
|
@@ -192,6 +192,8 @@ public class TransportCommonService {
|
|
|
orderDetailVO.setCarrierContacts(unitTwo.getContacts());
|
|
|
orderDetailVO.setCarrierPhone(unitTwo.getPhone());
|
|
|
}
|
|
|
+ orderDetailVO.setTaxRate(logisticsOrder.getTaxRate());
|
|
|
+ orderDetailVO.setTaxRateLabel(logisticsOrder.getTaxRate() + "%");
|
|
|
orderDetailVO.setStatus(logisticsOrder.getStatus());
|
|
|
orderDetailVO.setStatusLabel(LogisticsOrderEnum.getName(logisticsOrder.getStatus()));
|
|
|
orderDetailVO.setGoodsId(String.valueOf(orderGoods == null ? null : orderGoods.getGoodsId()));
|
|
|
@@ -731,7 +733,7 @@ public class TransportCommonService {
|
|
|
Map<String, String> taxRateTypeDictData = getDictData(DictTypeEnum.TAX_RATE_TYPE.getType());
|
|
|
if (CollectionUtils.isNotEmpty(list)) {
|
|
|
for (SckwLogisticsOrderVO vo : list) {
|
|
|
- vo.setBillingModeLabel(chargingDictData==null?null:chargingDictData.get(vo.getBillingMode()));
|
|
|
+ vo.setBillingModeLabel(chargingDictData == null ? null : chargingDictData.get(vo.getBillingMode()));
|
|
|
vo.setPaymentLabel(vo.getPayment() == null ? null : tradeTypeDictData.get(vo.getPayment().toString()));
|
|
|
vo.setStatusLabel(LogisticsOrderEnum.getDestination(vo.getStatus()));
|
|
|
vo.setLossUnitLabel(vo.getLossUnit() == null ? null : taxRateTypeDictData.get(vo.getLossUnit()));
|