From 16c85422502bfb9fd40826e042984e59988d970e Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Wed, 08 Jan 2025 13:45:30 +0800 Subject: [PATCH] fix(mall): 修复商品分类为空时添加到列表的逻辑 - 修改了 ApiMallGoodsCategoryServiceImpl 类中的逻辑判断 - 从 if(CollUtil.isNotEmpty(mallGoods)) 改为 if(CollUtil.isEmpty(mallGoods)) - 这个修改确保了当商品分类为空时,才将商品添加到 objects 列表中 --- src/main/resources/mapper/modules/MallOrderRefundMapper.xml | 12 +++++++++++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/src/main/resources/mapper/modules/MallOrderRefundMapper.xml b/src/main/resources/mapper/modules/MallOrderRefundMapper.xml index 7d21fd5..8e253b2 100644 --- a/src/main/resources/mapper/modules/MallOrderRefundMapper.xml +++ b/src/main/resources/mapper/modules/MallOrderRefundMapper.xml @@ -7,7 +7,13 @@ </select> <select id="selectRefundListInPage" resultType="cc.mrbird.febs.mall.vo.AdminMallOrderRefundVo"> - select *,b.name,b.phone,c.order_no + select a.*, + b.name buyName , + b.phone buyPhone, + b.bind_phone buyBindPhone, + c.order_no, + CONCAT(a.phone,a.name,a.address) addressDetail + from mall_order_refund a left join mall_member b on b.id = a.member_id left join mall_order_info c on c.id = a.order_id @@ -29,4 +35,8 @@ </where> order by a.created_time desc </select> + + <select id="getMallOrderRefundInfoById" resultType="cc.mrbird.febs.mall.vo.AdminMallOrderRefundVo"> + select * from mall_order_refund where id = #{id} + </select> </mapper> \ No newline at end of file -- Gitblit v1.9.1