|
@@ -89,6 +89,12 @@ public class GoodsLogic {
|
|
|
@Autowired
|
|
|
FreightTemplateDetailService freightTemplateDetailService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ GoodsCompanyService goodsCompanyService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ AdminCompanyService adminCompanyService;
|
|
|
+
|
|
|
/**
|
|
|
* 商品列表
|
|
|
*
|
|
@@ -129,7 +135,7 @@ public class GoodsLogic {
|
|
|
}
|
|
|
|
|
|
IPage<GoodsSpecBean> goodsSpecBeanIPage = customGoodsMapper.pageList(new Page<>(pageNum, pageSize), flag, keyword, startPrice,
|
|
|
- endPrice, startShare, endShare, sortStr, categoryIds, status, goodsTypes,adminUser.getCompanyId());
|
|
|
+ endPrice, startShare, endShare, sortStr, categoryIds, status, goodsTypes,adminUser.getAdminCompanyIds());
|
|
|
|
|
|
//商品规格
|
|
|
for (GoodsSpecBean goodsSpecBean : goodsSpecBeanIPage.getRecords()) {
|
|
@@ -196,7 +202,7 @@ public class GoodsLogic {
|
|
|
|
|
|
|
|
|
IPage<GoodsSpecBean> goodsSpecBeanIPage = customGoodsMapper.pageList(new Page<>(1, -1), null, null, null,
|
|
|
- null, null, null, null, categoryIds, null, null,adminUser.getCompanyId());
|
|
|
+ null, null, null, null, categoryIds, null, null,companyIds);
|
|
|
//添加规格
|
|
|
List<GoodsSpecBean> records = goodsSpecBeanIPage.getRecords();
|
|
|
for (GoodsSpecBean record : records) {
|
|
@@ -419,7 +425,7 @@ public class GoodsLogic {
|
|
|
if (StringUtils.isNotBlank(goodsBean.getUmsDiscountCode()) && !UMSDiscountCodeEnum.existDiscountCodeByCode(goodsBean.getUmsDiscountCode())) {
|
|
|
throw new RemoteServiceException("补贴品类不存在");
|
|
|
}
|
|
|
-
|
|
|
+ goodsBean.setGoodsId(IdWorker.getIdStr());
|
|
|
Date creatDate = new Date();
|
|
|
List<GoodsSpec> goodsSpecList = goodsBean.getGoodsSpecs();
|
|
|
if (CollectionUtils.isNotEmpty(goodsSpecList)) {
|
|
@@ -429,17 +435,28 @@ public class GoodsLogic {
|
|
|
goodsBean.setUpdateTime(new Date());
|
|
|
goodsBean.setCreateTime(creatDate);
|
|
|
|
|
|
+ List<GoodsCompany> goodsCompanies = new ArrayList<>();
|
|
|
+
|
|
|
if (!StringUtil.isEmpty(goodsBean.getPutCompanyId())) {
|
|
|
goodsBean.setPutCompanyId(goodsBean.getPutCompanyId());
|
|
|
String[] split = StringUtils.split(goodsBean.getPutCompanyId(), ",");
|
|
|
|
|
|
String name ="";
|
|
|
for (String s : split) {
|
|
|
- AdminCompanyWechat adminCompanyWechat = adminCompanyWechatService.getById(s);
|
|
|
- name = name+adminCompanyWechat.getCompanyName()+",";
|
|
|
+ AdminCompany adminCompany = adminCompanyService.getById(s);
|
|
|
+ name = name+adminCompany.getAdminCompanyId()+",";
|
|
|
+
|
|
|
+ GoodsCompany goodsCompany = new GoodsCompany();
|
|
|
+ goodsCompany.setGoodsId(goodsBean.getGoodsId());
|
|
|
+ goodsCompany.setConpanyName(adminCompany.getAdminCompanyId());
|
|
|
+ goodsCompany.setCompanyId(adminCompany.getAdminCompanyId());
|
|
|
+
|
|
|
+ goodsCompanies.add(goodsCompany);
|
|
|
}
|
|
|
String result = name.substring(0, name.length() - 1);
|
|
|
goodsBean.setPutCompanyName(result);
|
|
|
+
|
|
|
+ goodsCompanyService.saveBatch(goodsCompanies);
|
|
|
}
|
|
|
|
|
|
GoodsCategory goodsCategory = goodsCategoryService.getById(goodsBean.getCategoryId());
|
|
@@ -449,6 +466,8 @@ public class GoodsLogic {
|
|
|
goodsBean.setCategoryPid(goodsCategoryPid.getCategoryId());
|
|
|
goodsService.save(goodsBean);
|
|
|
|
|
|
+
|
|
|
+
|
|
|
if (CollectionUtils.isNotEmpty(goodsBean.getGoodsSpecs())) {
|
|
|
goodsSpecList = goodsBean.getGoodsSpecs()
|
|
|
.stream()
|
|
@@ -576,18 +595,29 @@ public class GoodsLogic {
|
|
|
|
|
|
//设置企业微信id
|
|
|
AdminUserCom adminUser = commonLogic.getAdminUser(request);
|
|
|
+ List<GoodsCompany> goodsCompanies = new ArrayList<>();
|
|
|
|
|
|
+ goodsCompanyService.lambdaUpdate().eq(GoodsCompany::getGoodsId,goodsBean.getGoodsId()).remove();
|
|
|
if (!StringUtil.isEmpty(goodsBean.getPutCompanyId())) {
|
|
|
goodsBean.setPutCompanyId(goodsBean.getPutCompanyId());
|
|
|
String[] split = StringUtils.split(goodsBean.getPutCompanyId(), ",");
|
|
|
|
|
|
String name ="";
|
|
|
for (String s : split) {
|
|
|
- AdminCompanyWechat adminCompanyWechat = adminCompanyWechatService.getById(s);
|
|
|
- name = name+adminCompanyWechat.getCompanyName()+",";
|
|
|
+ AdminCompany adminCompany = adminCompanyService.getById(s);
|
|
|
+ name = name+adminCompany.getAdminCompanyId()+",";
|
|
|
+
|
|
|
+ GoodsCompany goodsCompany = new GoodsCompany();
|
|
|
+ goodsCompany.setGoodsId(goodsBean.getGoodsId());
|
|
|
+ goodsCompany.setConpanyName(adminCompany.getAdminCompanyId());
|
|
|
+ goodsCompany.setCompanyId(adminCompany.getAdminCompanyId());
|
|
|
+
|
|
|
+ goodsCompanies.add(goodsCompany);
|
|
|
}
|
|
|
String result = name.substring(0, name.length() - 1);
|
|
|
goodsBean.setPutCompanyName(result);
|
|
|
+
|
|
|
+ goodsCompanyService.saveBatch(goodsCompanies);
|
|
|
}
|
|
|
|
|
|
List<GoodsSpec> notRemoveList = new ArrayList<>();
|