...
|
...
|
@@ -15,7 +15,9 @@ import java.util.stream.Collectors; |
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
|
import com.yohobuy.ufo.model.order.constants.IdentifyCenterEnum;
|
|
|
import com.yohobuy.ufo.model.order.constants.RegionEnum;
|
|
|
import com.yohobuy.ufo.model.order.resp.*;
|
|
|
import org.apache.commons.collections.CollectionUtils;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.elasticsearch.common.collect.Lists;
|
...
|
...
|
@@ -113,12 +115,6 @@ import com.yohobuy.ufo.model.order.common.OperateTypeEnum; |
|
|
import com.yohobuy.ufo.model.order.common.OrderAttributes;
|
|
|
import com.yohobuy.ufo.model.order.common.OrderStatus;
|
|
|
import com.yohobuy.ufo.model.order.req.BuyerOrderMetaUpdateReq;
|
|
|
import com.yohobuy.ufo.model.order.resp.BuyerOrderResp;
|
|
|
import com.yohobuy.ufo.model.order.resp.ExpressInfoResp;
|
|
|
import com.yohobuy.ufo.model.order.resp.OrderDetailResp;
|
|
|
import com.yohobuy.ufo.model.order.resp.OrderOperateRecordResp;
|
|
|
import com.yohobuy.ufo.model.order.resp.QcOrderDetailResp;
|
|
|
import com.yohobuy.ufo.model.order.resp.SkupImageInfo;
|
|
|
import com.yohobuy.ufo.model.resp.product.SecondDetailResp;
|
|
|
|
|
|
/**
|
...
|
...
|
@@ -2855,5 +2851,15 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { |
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 查询鉴定室列表
|
|
|
public List<IdentifyCenterResp> queryIdentifyCenter() {
|
|
|
IdentifyCenterEnum[] values = IdentifyCenterEnum.values();
|
|
|
List<IdentifyCenterResp> resps = Lists.newArrayList();
|
|
|
for (IdentifyCenterEnum item : values) {
|
|
|
resps.add(new IdentifyCenterResp(item.getCode(), item.getName(), item.getDesc(), item.getText()));
|
|
|
}
|
|
|
return resps;
|
|
|
}
|
|
|
} |
...
|
...
|
|