Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Y
yudao-cloud
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
hblj
yudao-cloud
Commits
16a39255
提交
16a39255
authored
5月 15, 2020
作者:
cherishsince
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
- 优化代码
上级
0c198e8f
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
0 行增加
和
11 行删除
+0
-11
UserAddressServiceImpl.java
...er/mall/user/biz/service/user/UserAddressServiceImpl.java
+0
-11
没有找到文件。
user/user-biz/src/main/java/cn/iocoder/mall/user/biz/service/user/UserAddressServiceImpl.java
浏览文件 @
16a39255
...
...
@@ -32,12 +32,10 @@ public class UserAddressServiceImpl implements UserAddressService {
@Override
@Transactional
public
void
addAddress
(
UserAddressAddDTO
userAddressAddDTO
)
{
// 转换do,设置默认数据
UsersUserAddressDO
userAddressDO
=
UserAddressConvert
.
INSTANCE
.
convert
(
userAddressAddDTO
);
userAddressDO
.
setCreateTime
(
new
Date
());
userAddressDO
.
setDeleted
(
DeletedStatusEnum
.
DELETED_NO
.
getValue
());
// 检查是否设置为默认地址
if
(
UserAddressHasDefaultEnum
.
DEFAULT_ADDRESS_YES
.
getValue
()
==
userAddressAddDTO
.
getHasDefault
())
{
UsersUserAddressDO
defaultUserAddress
=
userAddressMapper
.
selectHasDefault
(
userAddressAddDTO
.
getUserId
());
...
...
@@ -49,7 +47,6 @@ public class UserAddressServiceImpl implements UserAddressService {
);
}
}
// 保存地址
userAddressMapper
.
insert
(
userAddressDO
);
}
...
...
@@ -57,19 +54,15 @@ public class UserAddressServiceImpl implements UserAddressService {
@Override
@Transactional
public
void
updateAddress
(
UserAddressUpdateDTO
userAddressAddDTO
)
{
// 检查地址
UsersUserAddressDO
userAddress
=
userAddressMapper
.
selectById
(
userAddressAddDTO
.
getId
());
if
(
userAddress
==
null
)
{
throw
ServiceExceptionUtil
.
exception
(
UserErrorCodeEnum
.
USER_ADDRESS_NOT_EXISTENT
.
getCode
());
}
// 删除的地址不能更新
if
(
DeletedStatusEnum
.
DELETED_YES
.
getValue
().
equals
(
userAddress
.
getDeleted
()))
{
throw
ServiceExceptionUtil
.
exception
(
UserErrorCodeEnum
.
USER_ADDRESS_IS_DELETED
.
getCode
());
}
// 检查是否设置为默认地址
// 是:将数据库 default address 设置为 no
if
(
UserAddressHasDefaultEnum
.
DEFAULT_ADDRESS_YES
.
getValue
()
==
userAddressAddDTO
.
getHasDefault
())
{
...
...
@@ -82,7 +75,6 @@ public class UserAddressServiceImpl implements UserAddressService {
);
}
}
// 转换 vo, 并保存数据
UsersUserAddressDO
userAddressDO
=
UserAddressConvert
.
INSTANCE
.
convert
(
userAddressAddDTO
);
userAddressDO
.
setUpdateTime
(
new
Date
());
...
...
@@ -93,16 +85,13 @@ public class UserAddressServiceImpl implements UserAddressService {
public
void
removeAddress
(
Integer
userId
,
Integer
addressId
)
{
// checked address is exists.
UsersUserAddressDO
userAddress
=
userAddressMapper
.
selectById
(
addressId
);
if
(
userAddress
==
null
)
{
throw
ServiceExceptionUtil
.
exception
(
UserErrorCodeEnum
.
USER_ADDRESS_NOT_EXISTENT
.
getCode
());
}
if
(
DeletedStatusEnum
.
DELETED_YES
.
getValue
().
equals
(
userAddress
.
getDeleted
()))
{
// skip
return
;
}
// 更新状态为 remove
userAddressMapper
.
updateById
(
(
UsersUserAddressDO
)
new
UsersUserAddressDO
()
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论