Commit efd075cf by 徐康

Merge remote-tracking branch 'origin/develop' into develop

parents aa5709e6 03038fe2
......@@ -2599,7 +2599,7 @@ public class OrderSdkAdapter {
}
if (StringUtils.isNotBlank(product.getClassificationId())){
extInfo.setThirdCensusCategoryId(product.getClassificationId());
extInfo.setThirdCensusCategoryId(product.getSetClassificationName());
extInfo.setThirdCensusCategoryName(product.getClassificationName());
}
if (0 != product.getTax()){
extInfo.setTax(product.getTax());
......
......@@ -174,5 +174,5 @@ public class CreateOrderProductRequest extends BaseConfig {
/** 商品统计分类编号**/
private String classificationId;
private String setClassificationName;
private String classificationName;
}
......@@ -2117,7 +2117,7 @@ public class OrderAdapter {
createOrderProductDemoDto.setUnit(cartGoodsDetailDto.getUnit());
createOrderProductDemoDto.setStapleFood(0);
createOrderProductDemoDto.setClassificationId(cartGoodsDetailDto.getClassificationId());
createOrderProductDemoDto.setSetClassificationName(cartGoodsDetailDto.getSetClassificationName());
createOrderProductDemoDto.setClassificationName(cartGoodsDetailDto.getClassificationName());
if (CollectionUtils.isNotEmpty(cartGoodsDetailDto.getActivityDiscountsDtos())) {
createOrderProductDemoDto.setAccounts(getMaterialAccounts(createOrderProductDemoDto, cartGoodsDetailDto));
}
......@@ -2149,7 +2149,7 @@ public class OrderAdapter {
createOrderProductDemoDto.setTax(cartGoodsDetailDto.getTax());
createOrderProductDemoDto.setTaxId(cartGoodsDetailDto.getTaxId());
createOrderProductDemoDto.setClassificationId(cartGoodsDetailDto.getClassificationId());
createOrderProductDemoDto.setSetClassificationName(cartGoodsDetailDto.getSetClassificationName());
createOrderProductDemoDto.setClassificationName(cartGoodsDetailDto.getClassificationName());
return createOrderProductDemoDto;
}
......
......@@ -178,7 +178,7 @@ public class ShoppingCartGoodsDto {
/** 商品统计分类编号**/
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