From e51cfbb3c0951defc510a5f63298bdf3b672c038 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Tue, 21 Feb 2023 15:46:30 +0800
Subject: [PATCH] 提示代理人改成合伙人
---
src/main/resources/mapper/modules/MallOrderInfoMapper.xml | 4 +---
src/main/resources/templates/febs/views/modules/order/orderList.html | 4 +++-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/main/resources/mapper/modules/MallOrderInfoMapper.xml b/src/main/resources/mapper/modules/MallOrderInfoMapper.xml
index a9d5efd..1ac65c9 100644
--- a/src/main/resources/mapper/modules/MallOrderInfoMapper.xml
+++ b/src/main/resources/mapper/modules/MallOrderInfoMapper.xml
@@ -56,11 +56,9 @@
select a.*,
b.name memberName,
b.bind_phone memberBindPhone,
- b.phone memberPhone,
- c.name leaderName
+ b.phone memberPhone
from mall_order_info a
left join mall_member b on a.member_id = b.id
- left join mall_team_leader c on a.take_unique_code = c.unique_code
<where>
<if test="record != null">
<if test="record.payResult != null and record.payResult != ''">
diff --git a/src/main/resources/templates/febs/views/modules/order/orderList.html b/src/main/resources/templates/febs/views/modules/order/orderList.html
index ae54f9f..097cedf 100644
--- a/src/main/resources/templates/febs/views/modules/order/orderList.html
+++ b/src/main/resources/templates/febs/views/modules/order/orderList.html
@@ -205,9 +205,11 @@
febs.alert.warn('请选择需要统计的订单');
return;
}
- febs.modal.open( '商品数量统计', 'modules/order/goodsStatistics/'+statistics, {
+ let statisticIds = statistics;
+ febs.modal.open( '商品数量统计', 'modules/order/goodsStatistics/'+statisticIds, {
maxmin: true,
});
+ statistics = 0;
// febs.get(ctx + 'admin/order/goodsStatistics?orderIds='+ids, null, function () {
// febs.alert.success('操作成功');
// $query.click();
--
Gitblit v1.9.1