Commit 81678ede by 周晓航

维护查询条件的 productSpuQuantity字段

parent 4525cd23
......@@ -2036,6 +2036,7 @@ public class OrderAdapter {
public ProductVo convent2ProductVo(ProductBeanV1 productBean) {
ProductVo productVo = new ProductVo();
productVo.setProductSpuQuantity(productBean.getProductSpuQuantity());
productVo.setId(productBean.getId());
productVo.setPid(StringUtils.isBlank(productBean.getSpecification()) ? productBean.getProductId() : productBean.getSpecification());
String productName = StringUtils.isBlank(productBean.getSpecificationName()) ? productBean.getProductName() : productBean.getSpecificationName();
......
......@@ -14,7 +14,6 @@ package cn.freemud.entities.vo;
import cn.freemud.entities.dto.ProductGroupDto;
import com.freemud.application.sdk.api.ordercenter.entities.v1.ProductExtInfoV1;
import com.freemud.sdk.api.assortment.order.request.order.ProductBindingCouponType;
import lombok.Data;
import lombok.NoArgsConstructor;
......@@ -205,6 +204,12 @@ public class ProductVo {
private Long score;
/**
* 订单新增商品SPU数量字段 https://cf.freemudvip.com/pages/viewpage.action?pageId=209356052
*/
private Integer productSpuQuantity;
@Data
@NoArgsConstructor
public static class ProductLabel {
......
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