Merge branch 'feature/mall_product' of http://117.33.142.185:3000/zenghuapei/cyywl_server into feature/mall_product

pull/8/head
TianYu 2023-05-31 18:15:31 +08:00
commit 46686e4467
2 changed files with 33 additions and 16 deletions

View File

@ -100,6 +100,7 @@
<select id="findListPage"
resultType="cn.iocoder.yudao.module.shop.controller.admin.recharge.vo.RechargeOrderRespVO">
select
a.id,
a.order_id,
a.pay_serial_number,
e.name as tenantName,

View File

@ -132,21 +132,37 @@ public class DeptServiceImpl implements DeptService {
reqVO.setParentId(DeptIdEnum.ROOT.getId());
}
validateForCreateOrUpdate(reqVO.getId(), reqVO.getParentId(), reqVO.getName());
// 更新部门
DeptDO updateObj = DeptConvert.INSTANCE.convert(reqVO);
if (DeptIdEnum.ROOT.getId().equals(updateObj.getParentId())) {
updateObj.setParentOrganizationIds(updateObj.getId() + "");
updateObj.setParentOrganizationName(updateObj.getName());
} else {
DeptDO parent = deptMapper.selectById(reqVO.getParentId());
updateObj.setParentOrganizationIds(parent.getParentOrganizationIds() + "," + updateObj.getId());
updateObj.setParentOrganizationName(parent.getParentOrganizationName() + ">" + updateObj.getName());
}
deptMapper.updateById(updateObj);
// // 更新部门
// DeptDO updateObj = DeptConvert.INSTANCE.convert(reqVO);
// if (DeptIdEnum.ROOT.getId().equals(updateObj.getParentId())) {
// updateObj.setParentOrganizationIds(updateObj.getId() + "");
// updateObj.setParentOrganizationName(updateObj.getName());
// } else {
// DeptDO parent = deptMapper.selectById(reqVO.getParentId());
// updateObj.setParentOrganizationIds(parent.getParentOrganizationIds() + "," + updateObj.getId());
// updateObj.setParentOrganizationName(parent.getParentOrganizationName() + ">" + updateObj.getName());
// }
DeptDO deptDO = deptMapper.selectById(reqVO.getId());
List<DeptDO> deptDOS = deptMapper.selectListDeep(Wrappers.<DeptDO>lambdaQuery().like(DeptDO::getParentOrganizationIds, reqVO.getId()));
deptDOS.forEach(x -> {
x.setParentOrganizationName(x.getParentOrganizationName().replace(deptDO.getName(), reqVO.getName()));
});
deptMapper.updateBatch(deptDOS,deptDOS.size());
deptDO.setName(reqVO.getName());
deptMapper.updateById(deptDO);
// 发送刷新消息
deptProducer.sendDeptRefreshMessage();
}
public static void main(String[] args) {
String words = "创盈云>测试删除1";
System.out.println("原始字符串是'" + words + "'");
System.out.println("replace(\"r's\",\"is\")结果:" + words.replace("测试删除1", "测试删除"));
}
@Override
public void deleteDept(Long id) {
// 校验是否存在