Commit 3328891c authored by shiyu's avatar shiyu

中转单详情

parent 32381e30
......@@ -176,10 +176,13 @@ public class SysIdentifyOrderServiceImpl implements SysIdentifyOrderService {
//查询物流信息
String fromLogisticsInfo = LogisticsEnum.getNameByCode(identifyOrder.getFromLogisticsCode()) + "," +identifyOrder.getFromWaybill();
String deliveryLogisticsInfo = LogisticsEnum.getNameByCode(distributionOrder.getLogisticsCode()) + "," +distributionOrder.getWaybill();
String returnLogisticsInfo = LogisticsEnum.getNameByCode(identifyOrder.getOutLogisticsCode()) + "," + identifyOrder.getOutWaybill();
if (identifyOrder.getApproved() != 1) {
String returnLogisticsInfo = LogisticsEnum.getNameByCode(identifyOrder.getOutLogisticsCode()) + "," + identifyOrder.getOutWaybill();
map.put("returnLogisticsInfo", returnLogisticsInfo.length() < 11 ? null : returnLogisticsInfo);
}
map.put("fromLogisticsInfo", fromLogisticsInfo.length() < 11 ? null : fromLogisticsInfo);
map.put("deliveryLogisticsInfo", deliveryLogisticsInfo.length() < 11 ? null : deliveryLogisticsInfo);
map.put("returnLogisticsInfo", returnLogisticsInfo.length() < 11 ? null : returnLogisticsInfo);
return Result.success(map);
} catch (Exception e) {
logger.error("鉴定单详情 error:{}", e);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment