|
|
@@ -34,6 +34,7 @@ import com.sckw.product.api.model.KwpGoods;
|
|
|
import com.sckw.stream.model.SckwBusSum;
|
|
|
import com.sckw.system.api.RemoteSystemService;
|
|
|
import com.sckw.system.api.model.dto.res.EntCacheResDto;
|
|
|
+import com.sckw.system.api.model.dto.res.UserCacheResDto;
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.dubbo.config.annotation.DubboReference;
|
|
|
@@ -365,8 +366,10 @@ public class KwoTradeOrderService {
|
|
|
}
|
|
|
//订单基本信息
|
|
|
OrderDetailRes detail = BeanUtils.copyProperties(order, OrderDetailRes.class);
|
|
|
+ UserCacheResDto createUser = remoteSystemService.queryUserCacheById(detail.getCreateBy());
|
|
|
EntCacheResDto ent = remoteSystemService.queryEntCacheById(detail.getEntId());
|
|
|
detail.setFirmName(Objects.isNull(ent) ? null : ent.getFirmName())
|
|
|
+ .setCreateByName(Objects.isNull(createUser) ? null : createUser.getName())
|
|
|
.setTradingLabel(DictEnum.getLabel(DictTypeEnum.TRADE_TYPE.getType(), detail.getTrading()))
|
|
|
.setPickupTypeLabel(DictEnum.getLabel(DictTypeEnum.PICKUP_TYPE.getType(), detail.getPickupType()))
|
|
|
.setDeliveryTypeLabel(DictEnum.getLabel(DictTypeEnum.DELIVERY_TYPE.getType(), detail.getDeliveryType()))
|
|
|
@@ -892,4 +895,8 @@ public class KwoTradeOrderService {
|
|
|
kwoTradeOrderMapper.update(null, wrapper);
|
|
|
}
|
|
|
|
|
|
+ public void getAddressDropList(AddressDropListParam param) {
|
|
|
+ Long entId = LoginUserHolder.getEntId();
|
|
|
+// List<AreaTreeFrontResDto> areaTreeFrontResDtos = remoteSystemService.queryAreaTreeFrontByCodeList();
|
|
|
+ }
|
|
|
}
|