|
@@ -1,13 +1,17 @@
|
|
package com.hichina.admin.hichinaadminbackend.controller;
|
|
package com.hichina.admin.hichinaadminbackend.controller;
|
|
|
|
|
|
import com.github.pagehelper.PageHelper;
|
|
import com.github.pagehelper.PageHelper;
|
|
|
|
+import com.hichina.admin.hichinaadminbackend.checker.ProductAttributeCheckerFactory;
|
|
import com.hichina.admin.hichinaadminbackend.mapper.*;
|
|
import com.hichina.admin.hichinaadminbackend.mapper.*;
|
|
import com.hichina.admin.hichinaadminbackend.model.*;
|
|
import com.hichina.admin.hichinaadminbackend.model.*;
|
|
import com.hichina.admin.hichinaadminbackend.model.DTO.*;
|
|
import com.hichina.admin.hichinaadminbackend.model.DTO.*;
|
|
import com.hichina.admin.hichinaadminbackend.service.ProductSkuService;
|
|
import com.hichina.admin.hichinaadminbackend.service.ProductSkuService;
|
|
import com.hichina.admin.hichinaadminbackend.util.UserUtil;
|
|
import com.hichina.admin.hichinaadminbackend.util.UserUtil;
|
|
|
|
+import io.swagger.v3.oas.annotations.Operation;
|
|
|
|
+import jakarta.validation.Valid;
|
|
import org.apache.commons.lang3.StringUtils;
|
|
import org.apache.commons.lang3.StringUtils;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
+import org.springframework.http.ResponseEntity;
|
|
import org.springframework.transaction.annotation.Propagation;
|
|
import org.springframework.transaction.annotation.Propagation;
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.bind.annotation.*;
|
|
@@ -26,7 +30,8 @@ public class ProductSkuController {
|
|
@Autowired
|
|
@Autowired
|
|
private UserUtil userUtil;
|
|
private UserUtil userUtil;
|
|
|
|
|
|
- @Autowired ProductSkuGroupMapper productSkuGroupMapper;
|
|
|
|
|
|
+ @Autowired
|
|
|
|
+ ProductSkuGroupMapper productSkuGroupMapper;
|
|
|
|
|
|
@Autowired
|
|
@Autowired
|
|
private ProductSkuTimestampAttributeMappingMapper productSkuTimestampAttributeMappingMapper;
|
|
private ProductSkuTimestampAttributeMappingMapper productSkuTimestampAttributeMappingMapper;
|
|
@@ -39,7 +44,7 @@ public class ProductSkuController {
|
|
@Autowired
|
|
@Autowired
|
|
private ProductSkuIntAttributeMappingMapper productSkuIntAttributeMappingMapper;
|
|
private ProductSkuIntAttributeMappingMapper productSkuIntAttributeMappingMapper;
|
|
|
|
|
|
- private ProductPropertyBag changeDateStringFormat(ProductPropertyBag input){
|
|
|
|
|
|
+ private ProductPropertyBag changeDateStringFormat(ProductPropertyBag input) {
|
|
String dateString = input.getAttributeValue();
|
|
String dateString = input.getAttributeValue();
|
|
|
|
|
|
//2023-03-22 00:00:00
|
|
//2023-03-22 00:00:00
|
|
@@ -55,19 +60,21 @@ public class ProductSkuController {
|
|
}
|
|
}
|
|
return input;
|
|
return input;
|
|
}
|
|
}
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* main logic to get custom property bag, each skuId can have more then 1 property from each typed attribute table
|
|
* main logic to get custom property bag, each skuId can have more then 1 property from each typed attribute table
|
|
|
|
+ *
|
|
* @param skuId
|
|
* @param skuId
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- private List<ProductPropertyBag> getPropertyBagBySkuId(String skuId){
|
|
|
|
|
|
+ private List<ProductPropertyBag> getPropertyBagBySkuId(String skuId) {
|
|
List<ProductPropertyBag> propertyBags = new ArrayList<>();
|
|
List<ProductPropertyBag> propertyBags = new ArrayList<>();
|
|
|
|
|
|
// TODO: 2023/3/18 if added other type, we should update here
|
|
// TODO: 2023/3/18 if added other type, we should update here
|
|
List<ProductPropertyBag> intPropertyBag = productSkuIntAttributeMappingMapper.findAttributeValueBySkuId(skuId);
|
|
List<ProductPropertyBag> intPropertyBag = productSkuIntAttributeMappingMapper.findAttributeValueBySkuId(skuId);
|
|
List<ProductPropertyBag> varcharPropertyBag = productSkuVarcharAttributeMappingMapper.findAttributeValueBySkuId(skuId);
|
|
List<ProductPropertyBag> varcharPropertyBag = productSkuVarcharAttributeMappingMapper.findAttributeValueBySkuId(skuId);
|
|
List<ProductPropertyBag> datePropertyBag = productSkuTimestampAttributeMappingMapper.findAttributeValueBySkuId(skuId);
|
|
List<ProductPropertyBag> datePropertyBag = productSkuTimestampAttributeMappingMapper.findAttributeValueBySkuId(skuId);
|
|
- datePropertyBag = datePropertyBag.stream().map(r->changeDateStringFormat(r)).collect(Collectors.toList());
|
|
|
|
|
|
+ datePropertyBag = datePropertyBag.stream().map(r -> changeDateStringFormat(r)).collect(Collectors.toList());
|
|
|
|
|
|
propertyBags.addAll(intPropertyBag);
|
|
propertyBags.addAll(intPropertyBag);
|
|
propertyBags.addAll(varcharPropertyBag);
|
|
propertyBags.addAll(varcharPropertyBag);
|
|
@@ -83,15 +90,15 @@ public class ProductSkuController {
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
- check if all attribute Id in bindedAttributes is covered by propertyBags, otherwise add empty ProductPropertyBag to make up for the lost
|
|
|
|
|
|
+ * check if all attribute Id in bindedAttributes is covered by propertyBags, otherwise add empty ProductPropertyBag to make up for the lost
|
|
*/
|
|
*/
|
|
- private List<ProductPropertyBag> fillEmptyPropertyBag(List<ProductPropertyBag> propertyBags, List<ProductAttributeTypeShortDTO> bindedAttributes){
|
|
|
|
- List<String> existingAttributeIds = propertyBags.stream().map(r ->r.getAttributeId()).collect(Collectors.toList());
|
|
|
|
|
|
+ private List<ProductPropertyBag> fillEmptyPropertyBag(List<ProductPropertyBag> propertyBags, List<ProductAttributeTypeShortDTO> bindedAttributes) {
|
|
|
|
+ List<String> existingAttributeIds = propertyBags.stream().map(r -> r.getAttributeId()).collect(Collectors.toList());
|
|
|
|
|
|
List<ProductPropertyBag> toAdd = new ArrayList<>();
|
|
List<ProductPropertyBag> toAdd = new ArrayList<>();
|
|
|
|
|
|
- for(ProductAttributeTypeShortDTO att : bindedAttributes){
|
|
|
|
- if(existingAttributeIds.isEmpty() || (!existingAttributeIds.isEmpty() && !existingAttributeIds.contains(att.getAttributeId()))){
|
|
|
|
|
|
+ for (ProductAttributeTypeShortDTO att : bindedAttributes) {
|
|
|
|
+ if (existingAttributeIds.isEmpty() || (!existingAttributeIds.isEmpty() && !existingAttributeIds.contains(att.getAttributeId()))) {
|
|
ProductPropertyBag placeHolderObj = new ProductPropertyBag();
|
|
ProductPropertyBag placeHolderObj = new ProductPropertyBag();
|
|
placeHolderObj.setAttributeId(att.getAttributeId());
|
|
placeHolderObj.setAttributeId(att.getAttributeId());
|
|
placeHolderObj.setDataType(att.getDataType());
|
|
placeHolderObj.setDataType(att.getDataType());
|
|
@@ -106,7 +113,7 @@ public class ProductSkuController {
|
|
}
|
|
}
|
|
|
|
|
|
@GetMapping("/withpropertybag")
|
|
@GetMapping("/withpropertybag")
|
|
- public HichinaResponse getProductSkuById(@RequestParam(value="skuId",required = true) String skuId){
|
|
|
|
|
|
+ public HichinaResponse getProductSkuById(@RequestParam(value = "skuId", required = true) String skuId) {
|
|
HichinaResponse ret = new HichinaResponse();
|
|
HichinaResponse ret = new HichinaResponse();
|
|
|
|
|
|
// get the basic property
|
|
// get the basic property
|
|
@@ -114,9 +121,9 @@ public class ProductSkuController {
|
|
|
|
|
|
|
|
|
|
HichinaProductDTO singleSku;
|
|
HichinaProductDTO singleSku;
|
|
- if(!singleSkuInList.isEmpty()){
|
|
|
|
|
|
+ if (!singleSkuInList.isEmpty()) {
|
|
singleSku = singleSkuInList.get(0);
|
|
singleSku = singleSkuInList.get(0);
|
|
- }else{
|
|
|
|
|
|
+ } else {
|
|
singleSku = null;
|
|
singleSku = null;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -126,46 +133,47 @@ public class ProductSkuController {
|
|
data.setHichinaProductDTO(singleSku);
|
|
data.setHichinaProductDTO(singleSku);
|
|
data.setProductPropertyBag(propertyBags);
|
|
data.setProductPropertyBag(propertyBags);
|
|
|
|
|
|
- ret.setMessage("成功获取skuId: "+skuId+"的所有属性");
|
|
|
|
|
|
+ ret.setMessage("成功获取skuId: " + skuId + "的所有属性");
|
|
ret.setData(data);
|
|
ret.setData(data);
|
|
ret.setOk(true);
|
|
ret.setOk(true);
|
|
|
|
|
|
return ret;
|
|
return ret;
|
|
}
|
|
}
|
|
- private boolean checkUseMineOnly(String currentUserName){
|
|
|
|
|
|
+
|
|
|
|
+ private boolean checkUseMineOnly(String currentUserName) {
|
|
AdminUser adminUser = userUtil.currentUser(currentUserName);
|
|
AdminUser adminUser = userUtil.currentUser(currentUserName);
|
|
return adminUser.getUsername().startsWith("SP_");
|
|
return adminUser.getUsername().startsWith("SP_");
|
|
}
|
|
}
|
|
|
|
|
|
@GetMapping
|
|
@GetMapping
|
|
public HichinaResponse getProductSkuNoCustomAttributes(@RequestParam(value = "page", required = true) Integer page,
|
|
public HichinaResponse getProductSkuNoCustomAttributes(@RequestParam(value = "page", required = true) Integer page,
|
|
- @RequestParam(value = "pageSize", required = true) Integer size,
|
|
|
|
- @RequestParam(value = "query") String query,
|
|
|
|
- @RequestParam(value = "productTypeId") String productTypeId){
|
|
|
|
|
|
+ @RequestParam(value = "pageSize", required = true) Integer size,
|
|
|
|
+ @RequestParam(value = "query") String query,
|
|
|
|
+ @RequestParam(value = "productTypeId") String productTypeId) {
|
|
HichinaResponse ret = new HichinaResponse();
|
|
HichinaResponse ret = new HichinaResponse();
|
|
String currentUser = userUtil.currentUserName();
|
|
String currentUser = userUtil.currentUserName();
|
|
boolean mineOnly = checkUseMineOnly(currentUser);
|
|
boolean mineOnly = checkUseMineOnly(currentUser);
|
|
|
|
|
|
- if(page>0){
|
|
|
|
- PageHelper.startPage(page,size);
|
|
|
|
|
|
+ if (page > 0) {
|
|
|
|
+ PageHelper.startPage(page, size);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
List<HichinaProductDTO> rawData;
|
|
List<HichinaProductDTO> rawData;
|
|
int cnt = 0;
|
|
int cnt = 0;
|
|
- if(!StringUtils.isEmpty(query)){
|
|
|
|
- if(!StringUtils.isEmpty(productTypeId)){
|
|
|
|
|
|
+ if (!StringUtils.isEmpty(query)) {
|
|
|
|
+ if (!StringUtils.isEmpty(productTypeId)) {
|
|
rawData = hichinaProductMapper.findByProductTypeIdAndQuery(productTypeId, query, mineOnly, currentUser);
|
|
rawData = hichinaProductMapper.findByProductTypeIdAndQuery(productTypeId, query, mineOnly, currentUser);
|
|
cnt = hichinaProductMapper.countByProductTypeIdAndQuery(productTypeId, query, mineOnly, currentUser);
|
|
cnt = hichinaProductMapper.countByProductTypeIdAndQuery(productTypeId, query, mineOnly, currentUser);
|
|
- }else{
|
|
|
|
|
|
+ } else {
|
|
rawData = hichinaProductMapper.findByQuery(query, mineOnly, currentUser);
|
|
rawData = hichinaProductMapper.findByQuery(query, mineOnly, currentUser);
|
|
cnt = hichinaProductMapper.countByQuery(query, mineOnly, currentUser);
|
|
cnt = hichinaProductMapper.countByQuery(query, mineOnly, currentUser);
|
|
}
|
|
}
|
|
- }else{
|
|
|
|
- if(!StringUtils.isEmpty(productTypeId)){
|
|
|
|
|
|
+ } else {
|
|
|
|
+ if (!StringUtils.isEmpty(productTypeId)) {
|
|
rawData = hichinaProductMapper.findByProductTypeId(productTypeId, mineOnly, currentUser);
|
|
rawData = hichinaProductMapper.findByProductTypeId(productTypeId, mineOnly, currentUser);
|
|
cnt = hichinaProductMapper.countByProductTypeId(productTypeId, mineOnly, currentUser);
|
|
cnt = hichinaProductMapper.countByProductTypeId(productTypeId, mineOnly, currentUser);
|
|
- }else{
|
|
|
|
|
|
+ } else {
|
|
rawData = hichinaProductMapper.findAllProduct(mineOnly, currentUser);
|
|
rawData = hichinaProductMapper.findAllProduct(mineOnly, currentUser);
|
|
cnt = hichinaProductMapper.count(mineOnly, currentUser);
|
|
cnt = hichinaProductMapper.count(mineOnly, currentUser);
|
|
}
|
|
}
|
|
@@ -182,7 +190,7 @@ public class ProductSkuController {
|
|
return ret;
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
|
|
- private String insertProductSkuInTransaction(ProductSkuCreateDTO request){
|
|
|
|
|
|
+ private String insertProductSkuInTransaction(ProductSkuCreateDTO request) {
|
|
HichinaProduct product = new HichinaProduct();
|
|
HichinaProduct product = new HichinaProduct();
|
|
product.setProductName(request.getProductName());
|
|
product.setProductName(request.getProductName());
|
|
product.setProductContent(request.getProductDescription());
|
|
product.setProductContent(request.getProductDescription());
|
|
@@ -200,23 +208,23 @@ public class ProductSkuController {
|
|
for (Map.Entry<String, String> entry : request.getCustomPropertyBag().entrySet()) {
|
|
for (Map.Entry<String, String> entry : request.getCustomPropertyBag().entrySet()) {
|
|
String dataTypeAndAttributeId = entry.getKey();
|
|
String dataTypeAndAttributeId = entry.getKey();
|
|
String value = entry.getValue();
|
|
String value = entry.getValue();
|
|
- String dataType = dataTypeAndAttributeId.substring(dataTypeAndAttributeId.indexOf("[")+1, dataTypeAndAttributeId.indexOf("]"));
|
|
|
|
- String attributeId = dataTypeAndAttributeId.substring(dataTypeAndAttributeId.indexOf("]")+1);
|
|
|
|
- if(dataType.equals("string") || dataType.equals("image") || dataType.equals("datestring")){
|
|
|
|
|
|
+ String dataType = dataTypeAndAttributeId.substring(dataTypeAndAttributeId.indexOf("[") + 1, dataTypeAndAttributeId.indexOf("]"));
|
|
|
|
+ String attributeId = dataTypeAndAttributeId.substring(dataTypeAndAttributeId.indexOf("]") + 1);
|
|
|
|
+ if (dataType.equals("string") || dataType.equals("image") || dataType.equals("datestring")) {
|
|
ProductSkuVarcharAttributeMapping productSkuVarcharAttributeMapping = new ProductSkuVarcharAttributeMapping();
|
|
ProductSkuVarcharAttributeMapping productSkuVarcharAttributeMapping = new ProductSkuVarcharAttributeMapping();
|
|
productSkuVarcharAttributeMapping.setSkuId(product.getSkuId());
|
|
productSkuVarcharAttributeMapping.setSkuId(product.getSkuId());
|
|
productSkuVarcharAttributeMapping.setAttributeValue(value);
|
|
productSkuVarcharAttributeMapping.setAttributeValue(value);
|
|
productSkuVarcharAttributeMapping.setDataType(dataType);
|
|
productSkuVarcharAttributeMapping.setDataType(dataType);
|
|
productSkuVarcharAttributeMapping.setAttributeId(attributeId);
|
|
productSkuVarcharAttributeMapping.setAttributeId(attributeId);
|
|
productSkuVarcharAttributeMappingMapper.insert(productSkuVarcharAttributeMapping);
|
|
productSkuVarcharAttributeMappingMapper.insert(productSkuVarcharAttributeMapping);
|
|
- }else if(dataType.equals("integer")){
|
|
|
|
|
|
+ } else if (dataType.equals("integer")) {
|
|
ProductSkuIntAttributeMapping productSkuIntAttributeMapping = new ProductSkuIntAttributeMapping();
|
|
ProductSkuIntAttributeMapping productSkuIntAttributeMapping = new ProductSkuIntAttributeMapping();
|
|
productSkuIntAttributeMapping.setSkuId(product.getSkuId());
|
|
productSkuIntAttributeMapping.setSkuId(product.getSkuId());
|
|
productSkuIntAttributeMapping.setAttributeValue(Integer.parseInt(value));
|
|
productSkuIntAttributeMapping.setAttributeValue(Integer.parseInt(value));
|
|
productSkuIntAttributeMapping.setDataType(dataType);
|
|
productSkuIntAttributeMapping.setDataType(dataType);
|
|
productSkuIntAttributeMapping.setAttributeId(attributeId);
|
|
productSkuIntAttributeMapping.setAttributeId(attributeId);
|
|
productSkuIntAttributeMappingMapper.insert(productSkuIntAttributeMapping);
|
|
productSkuIntAttributeMappingMapper.insert(productSkuIntAttributeMapping);
|
|
- }else if(dataType.equals("date")){
|
|
|
|
|
|
+ } else if (dataType.equals("date")) {
|
|
ProductSkuTimestampAttributeMapping productSkuTimestampAttributeMapping = new ProductSkuTimestampAttributeMapping();
|
|
ProductSkuTimestampAttributeMapping productSkuTimestampAttributeMapping = new ProductSkuTimestampAttributeMapping();
|
|
productSkuTimestampAttributeMapping.setSkuId(product.getSkuId());
|
|
productSkuTimestampAttributeMapping.setSkuId(product.getSkuId());
|
|
SimpleDateFormat formatter = new SimpleDateFormat("yyyy/MM/dd", Locale.ENGLISH);
|
|
SimpleDateFormat formatter = new SimpleDateFormat("yyyy/MM/dd", Locale.ENGLISH);
|
|
@@ -230,16 +238,17 @@ public class ProductSkuController {
|
|
} catch (ParseException e) {
|
|
} catch (ParseException e) {
|
|
throw new RuntimeException("Invalid date format");
|
|
throw new RuntimeException("Invalid date format");
|
|
}
|
|
}
|
|
- }else{
|
|
|
|
|
|
+ } else {
|
|
throw new RuntimeException("Not supported data type!");
|
|
throw new RuntimeException("Not supported data type!");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
productSkuGroupMapper.updateMinPriceAndImage(productSkuGroupId);
|
|
productSkuGroupMapper.updateMinPriceAndImage(productSkuGroupId);
|
|
return product.getSkuId();
|
|
return product.getSkuId();
|
|
}
|
|
}
|
|
|
|
+
|
|
@PostMapping
|
|
@PostMapping
|
|
- @Transactional(propagation = Propagation.REQUIRED, rollbackFor=Exception.class)
|
|
|
|
- public HichinaResponse createProductSku(@RequestBody ProductSkuCreateDTO request){
|
|
|
|
|
|
+ @Transactional(propagation = Propagation.REQUIRED, rollbackFor = Exception.class)
|
|
|
|
+ public HichinaResponse createProductSku(@RequestBody ProductSkuCreateDTO request) {
|
|
HichinaResponse ret = new HichinaResponse();
|
|
HichinaResponse ret = new HichinaResponse();
|
|
|
|
|
|
String skuId = insertProductSkuInTransaction(request);
|
|
String skuId = insertProductSkuInTransaction(request);
|
|
@@ -251,29 +260,66 @@ public class ProductSkuController {
|
|
return ret;
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @Operation(summary = "批量插入产品sku", description = "批量插入产品sku,配置多个套餐时使用")
|
|
|
|
+ @PostMapping("/batch")
|
|
|
|
+ @Transactional(propagation = Propagation.REQUIRED, rollbackFor = Exception.class)
|
|
|
|
+ public ResponseEntity<HiChinaResult<ProductSkuBatchCreateResult>> batchCreateProduct(
|
|
|
|
+ @RequestBody @Valid ProductSkuBatchCreateRequest request) {
|
|
|
|
+
|
|
|
|
+ // check attribute
|
|
|
|
+ List<ProductSkuCreateDTO> dtoList = new ArrayList<>(request.getComboCustomPropertyBags().size());
|
|
|
|
+ try {
|
|
|
|
+ for (Map<String, String> comboCustomPropertyBag : request.getComboCustomPropertyBags()) {
|
|
|
|
+ for (Map.Entry<String, String> entry : comboCustomPropertyBag.entrySet()) {
|
|
|
|
+ String key = entry.getKey();
|
|
|
|
+ String dataType = key.substring(key.indexOf("[") + 1, key.indexOf("]"));
|
|
|
|
+ String attributeId = key.substring(key.indexOf("]") + 1);
|
|
|
|
+ String value = entry.getValue();
|
|
|
|
+ ProductAttributeCheckerFactory.getInstance().check(attributeId, dataType, value);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ ProductSkuCreateDTO productSkuCreateDTO = new ProductSkuCreateDTO();
|
|
|
|
+ productSkuCreateDTO.setProductName(request.getProductName());
|
|
|
|
+ productSkuCreateDTO.setProductDescription(request.getProductDescription());
|
|
|
|
+ productSkuCreateDTO.setProductTypeId(request.getProductTypeId());
|
|
|
|
+ productSkuCreateDTO.setCustomPropertyBag(comboCustomPropertyBag);
|
|
|
|
+ dtoList.add(productSkuCreateDTO);
|
|
|
|
+ }
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ return ResponseEntity.badRequest().body(HiChinaResult.error(e.getMessage()));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ List<String> skuIds = new ArrayList<>();
|
|
|
|
+ for (ProductSkuCreateDTO dto : dtoList) {
|
|
|
|
+ String skuId = insertProductSkuInTransaction(dto);
|
|
|
|
+ skuIds.add(skuId);
|
|
|
|
+ }
|
|
|
|
+ return ResponseEntity.ok(HiChinaResult.ok(new ProductSkuBatchCreateResult(skuIds)));
|
|
|
|
+ }
|
|
|
|
+
|
|
@PutMapping("/withpropertybags/{skuId}")
|
|
@PutMapping("/withpropertybags/{skuId}")
|
|
- public HichinaResponse updateProductWithAllProperties(@PathVariable("skuId") String skuId ,@RequestBody ProductSkuUpdateDTO request){
|
|
|
|
|
|
+ public HichinaResponse updateProductWithAllProperties(@PathVariable("skuId") String skuId, @RequestBody ProductSkuUpdateDTO request) {
|
|
HichinaResponse ret = new HichinaResponse();
|
|
HichinaResponse ret = new HichinaResponse();
|
|
HichinaProduct toUpdate = productSkuService.updateProducts(skuId, request);
|
|
HichinaProduct toUpdate = productSkuService.updateProducts(skuId, request);
|
|
productSkuService.postProcessSkuGroup(toUpdate);
|
|
productSkuService.postProcessSkuGroup(toUpdate);
|
|
ret.setOk(true);
|
|
ret.setOk(true);
|
|
ret.setData(skuId);
|
|
ret.setData(skuId);
|
|
- ret.setMessage("成功更新skuId:"+skuId+"的产品");
|
|
|
|
|
|
+ ret.setMessage("成功更新skuId:" + skuId + "的产品");
|
|
return ret;
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
|
|
@PutMapping("/contentonly/{skuId}")
|
|
@PutMapping("/contentonly/{skuId}")
|
|
- public HichinaResponse updateContentOnly(@PathVariable("skuId") String skuId ,@RequestBody ProductSkuContentUpdateRequest request){
|
|
|
|
|
|
+ public HichinaResponse updateContentOnly(@PathVariable("skuId") String skuId, @RequestBody ProductSkuContentUpdateRequest request) {
|
|
HichinaResponse ret = new HichinaResponse();
|
|
HichinaResponse ret = new HichinaResponse();
|
|
productSkuService.updateProductContentOnly(skuId, request.getContent());
|
|
productSkuService.updateProductContentOnly(skuId, request.getContent());
|
|
ret.setOk(true);
|
|
ret.setOk(true);
|
|
ret.setData(skuId);
|
|
ret.setData(skuId);
|
|
- ret.setMessage("成功更新skuId:"+skuId+"的产品(仅主体内容)");
|
|
|
|
|
|
+ ret.setMessage("成功更新skuId:" + skuId + "的产品(仅主体内容)");
|
|
return ret;
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
|
|
@DeleteMapping("/batch")
|
|
@DeleteMapping("/batch")
|
|
- public HichinaResponse deleteProductSkus(@RequestBody ProductSkuBatchDeleteRequest req){
|
|
|
|
|
|
+ public HichinaResponse deleteProductSkus(@RequestBody ProductSkuBatchDeleteRequest req) {
|
|
List<String> affectedSkuGroupIds = productSkuGroupMapper.findSkuGroupIdsBySkuIds(req.getToDelete());
|
|
List<String> affectedSkuGroupIds = productSkuGroupMapper.findSkuGroupIdsBySkuIds(req.getToDelete());
|
|
productSkuService.deleteProductSkus(req.getToDelete());
|
|
productSkuService.deleteProductSkus(req.getToDelete());
|
|
productSkuService.postProcessSkuGroupV2(affectedSkuGroupIds);
|
|
productSkuService.postProcessSkuGroupV2(affectedSkuGroupIds);
|