Commit 1d68d692 by ping.wu

Merge branches 'feature/20200820_哗啦啦产品分类名称_wuping' and 'qa' of…

Merge branches 'feature/20200820_哗啦啦产品分类名称_wuping' and 'qa' of http://gitlab.freemud.com/order-group-application/order-group into qa

# Conflicts:
#	order-application-service/src/main/java/cn/freemud/adapter/OrderAdapter.java
parents 432580c2 40227d53
...@@ -2599,7 +2599,7 @@ public class OrderSdkAdapter { ...@@ -2599,7 +2599,7 @@ public class OrderSdkAdapter {
} }
if (StringUtils.isNotBlank(product.getClassificationId())){ if (StringUtils.isNotBlank(product.getClassificationId())){
extInfo.setThirdCensusCategoryId(product.getClassificationId()); extInfo.setThirdCensusCategoryId(product.getClassificationId());
extInfo.setThirdCensusCategoryId(product.getSetClassificationName()); extInfo.setThirdCensusCategoryName(product.getClassificationName());
} }
if (0 != product.getTax()){ if (0 != product.getTax()){
extInfo.setTax(product.getTax()); extInfo.setTax(product.getTax());
......
...@@ -174,5 +174,5 @@ public class CreateOrderProductRequest extends BaseConfig { ...@@ -174,5 +174,5 @@ public class CreateOrderProductRequest extends BaseConfig {
/** 商品统计分类编号**/ /** 商品统计分类编号**/
private String classificationId; private String classificationId;
private String setClassificationName; private String classificationName;
} }
...@@ -2140,7 +2140,7 @@ public class OrderAdapter { ...@@ -2140,7 +2140,7 @@ public class OrderAdapter {
createOrderProductDemoDto.setTax(cartGoodsDetailDto.getTax()); createOrderProductDemoDto.setTax(cartGoodsDetailDto.getTax());
createOrderProductDemoDto.setTaxId(cartGoodsDetailDto.getTaxId()); createOrderProductDemoDto.setTaxId(cartGoodsDetailDto.getTaxId());
createOrderProductDemoDto.setClassificationId(cartGoodsDetailDto.getClassificationId()); createOrderProductDemoDto.setClassificationId(cartGoodsDetailDto.getClassificationId());
createOrderProductDemoDto.setSetClassificationName(cartGoodsDetailDto.getSetClassificationName()); createOrderProductDemoDto.setClassificationName(cartGoodsDetailDto.getClassificationName());
return createOrderProductDemoDto; return createOrderProductDemoDto;
} }
......
...@@ -178,7 +178,7 @@ public class ShoppingCartGoodsDto { ...@@ -178,7 +178,7 @@ public class ShoppingCartGoodsDto {
/** 商品统计分类编号**/ /** 商品统计分类编号**/
private String classificationId; private String classificationId;
private String setClassificationName; private String classificationName;
/** /**
* 是否限制库存 * 是否限制库存
* 用于创建订单时,是否扣减库存 * 用于创建订单时,是否扣减库存
......
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