xiaoyong931011
2021-09-28 2eff39a10917e141d2a61ff9f0763c10858cd0b5
20210928
15 files modified
44 ■■■■ changed files
src/main/java/cc/mrbird/febs/mall/vo/AdminAgentVo.java 2 ●●●●● patch | view | raw | blame | history
src/main/java/cc/mrbird/febs/mall/vo/AdminMallOrderInfoVo.java 2 ●●●●● patch | view | raw | blame | history
src/main/java/cc/mrbird/febs/mall/vo/AdminMallOrderRefundVo.java 2 ●●●●● patch | view | raw | blame | history
src/main/java/cc/mrbird/febs/mall/vo/AdminMoneyChargeListVo.java 2 ●●●●● patch | view | raw | blame | history
src/main/java/cc/mrbird/febs/mall/vo/AdminMoneyFlowListVo.java 2 ●●●●● patch | view | raw | blame | history
src/main/resources/mapper/modules/MallMemberMapper.xml 1 ●●●● patch | view | raw | blame | history
src/main/resources/mapper/modules/MallMoneyFlowMapper.xml 2 ●●●●● patch | view | raw | blame | history
src/main/resources/mapper/modules/MallOrderInfoMapper.xml 5 ●●●● patch | view | raw | blame | history
src/main/resources/mapper/modules/MallOrderRefundMapper.xml 8 ●●●● patch | view | raw | blame | history
src/main/resources/templates/febs/views/modules/mallMember/agentList.html 3 ●●●● patch | view | raw | blame | history
src/main/resources/templates/febs/views/modules/mallMember/chargeFlowList.html 3 ●●●● patch | view | raw | blame | history
src/main/resources/templates/febs/views/modules/mallMember/mallMemberList.html 3 ●●●● patch | view | raw | blame | history
src/main/resources/templates/febs/views/modules/mallMember/moneyFlowList.html 3 ●●●● patch | view | raw | blame | history
src/main/resources/templates/febs/views/modules/order/orderList.html 3 ●●●● patch | view | raw | blame | history
src/main/resources/templates/febs/views/modules/order/refundList.html 3 ●●●● patch | view | raw | blame | history
src/main/java/cc/mrbird/febs/mall/vo/AdminAgentVo.java
@@ -15,6 +15,8 @@
    private String phone;
    private String bindPhone;
    private String level;
    private String levelName;
src/main/java/cc/mrbird/febs/mall/vo/AdminMallOrderInfoVo.java
@@ -66,5 +66,7 @@
    private String memberPhone;
    private String memberBindPhone;
    private String memberEmail;
}
src/main/java/cc/mrbird/febs/mall/vo/AdminMallOrderRefundVo.java
@@ -17,6 +17,8 @@
    private String buyPhone;
    private String buyBindPhone;
    private String addressDetail;
    private Long orderId;
src/main/java/cc/mrbird/febs/mall/vo/AdminMoneyChargeListVo.java
@@ -30,5 +30,7 @@
    private String phone;
    private String bindPhone;
    private Integer status;
}
src/main/java/cc/mrbird/febs/mall/vo/AdminMoneyFlowListVo.java
@@ -34,4 +34,6 @@
    private String payMethod;
    private String bindPhone;
}
src/main/resources/mapper/modules/MallMemberMapper.xml
@@ -13,6 +13,7 @@
                    and (
                        m.phone like concat('%',  #{record.account},'%')
                        or m.email like concat('%',  #{record.account},'%')
                        or m.bind_phone like concat('%',  #{record.account},'%')
                        or m.invite_id like concat('%',  #{record.account},'%')
                        )
                </if>
src/main/resources/mapper/modules/MallMoneyFlowMapper.xml
@@ -35,6 +35,7 @@
        select
        a.*,
        b.name,
        b.bind_phone bindPhone,
        c.pay_method payMethod,
        b.phone
        from mall_money_flow a
@@ -60,6 +61,7 @@
        select
        a.*,
        b.name,
        b.bind_phone bindPhone,
        b.phone
        from mall_money_flow a
        inner join mall_member b on a.member_id=b.id
src/main/resources/mapper/modules/MallOrderInfoMapper.xml
@@ -7,7 +7,10 @@
    </select>
    <select id="selectOrderListInPage" resultType="cc.mrbird.febs.mall.vo.AdminMallOrderInfoVo">
        select *,b.name memberName,b.phone memberPhone
        select *,
               b.name memberName,
               b.bind_phone memberBindPhone,
               b.phone memberPhone
        from mall_order_info a
        left join mall_member b on a.member_id = b.id
        <where>
src/main/resources/mapper/modules/MallOrderRefundMapper.xml
@@ -7,7 +7,13 @@
    </select>
    <select id="selectRefundListInPage" resultType="cc.mrbird.febs.mall.vo.AdminMallOrderRefundVo">
        select a.*,b.name buyName ,b.phone buyPhone,c.order_no,c.amount,CONCAT(a.name,a.phone,a.address) addressDetail
        select a.*,
               b.name buyName ,
               b.phone buyPhone,
               b.bind_phone buyBindPhone,
               c.order_no,
               c.amount,
               CONCAT(a.phone,a.bind_phone,a.address) addressDetail
        from mall_order_refund a
        left join mall_member b on b.id = a.member_id
src/main/resources/templates/febs/views/modules/mallMember/agentList.html
@@ -107,7 +107,8 @@
                id: 'userAgentTable',
                url: ctx + 'admin/mallMember/getAgentList',
                cols: [[
                    {field: 'phone', title: '手机号', minWidth: 150,align:'left'},
                    {field: 'bindPhone', title: '手机号', minWidth: 150,align:'left'},
                    {field: 'phone', title: '账号', minWidth: 150,align:'left'},
                    {field: 'name', title: '名称', minWidth: 100,align:'left'},
                    {field: 'inviteId', title: '邀请码', minWidth: 100,align:'left'},
                    {field: 'levelName', title: '代理层级', minWidth: 100,align:'left'},
src/main/resources/templates/febs/views/modules/mallMember/chargeFlowList.html
@@ -120,7 +120,8 @@
                url: ctx + 'admin/mallMember/getMoneyChargeList',
                cols: [[
                    {field: 'name', title: '名称', minWidth: 100,align:'left'},
                    {field: 'phone', title: '手机号', minWidth: 150,align:'left'},
                    {field: 'phone', title: '账号', minWidth: 150,align:'left'},
                    {field: 'bindPhone', title: '手机号', minWidth: 150,align:'left'},
                    {field: 'amount', title: '金额', minWidth: 150,align:'left'},
                    {field: 'status', title: '状态',
                        templet: function (d) {
src/main/resources/templates/febs/views/modules/mallMember/mallMemberList.html
@@ -131,7 +131,8 @@
                id: 'userTable',
                url: ctx + 'admin/mallMember/getMallMemberList',
                cols: [[
                    {field: 'phone', title: '手机号', minWidth: 150,align:'left'},
                    {field: 'phone', title: '账号', minWidth: 150,align:'left'},
                    {field: 'bindPhone', title: '手机号', minWidth: 150,align:'left'},
                    // {field: 'email', title: '邮箱', minWidth: 150,align:'left'},
                    {field: 'name', title: '名称', minWidth: 100,align:'left'},
                    {field: 'inviteId', title: '邀请码', minWidth: 100,align:'left'},
src/main/resources/templates/febs/views/modules/mallMember/moneyFlowList.html
@@ -96,7 +96,8 @@
                url: ctx + 'admin/mallMember/getMoneyFlowList',
                cols: [[
                    {field: 'name', title: '名称', minWidth: 100,align:'left'},
                    {field: 'phone', title: '手机号', minWidth: 150,align:'left'},
                    {field: 'phone', title: '账号', minWidth: 150,align:'left'},
                    {field: 'bindPhone', title: '手机号', minWidth: 150,align:'left'},
                    {field: 'amount', title: '金额', minWidth: 150,align:'left'},
                    {field: 'type', title: '流水类型',
                        templet: function (d) {
src/main/resources/templates/febs/views/modules/order/orderList.html
@@ -174,7 +174,8 @@
                cols: [[
                        {field: 'orderNo', title: '订单编号', minWidth: 200,align:'left'},
                        {field: 'memberName', title: '购买人', minWidth: 120,align:'left'},
                        {field: 'memberPhone', title: '联系方式', minWidth: 120,align:'left'},
                        {field: 'memberPhone', title: '账号', minWidth: 120,align:'left'},
                        {field: 'memberBindPhone', title: '联系方式', minWidth: 120,align:'left'},
                        {field: 'amount', title: '订单金额', minWidth: 120,align:'left'},
                        {field: 'orderTime', title: '下单时间', minWidth: 200,align:'left'},
                        {field: 'payMethod', title: '支付方式', minWidth: 120,align:'left'},
src/main/resources/templates/febs/views/modules/order/refundList.html
@@ -170,7 +170,8 @@
                cols: [[
                    {field: 'orderNo', title: '订单编号', minWidth: 150,align:'left'},
                    {field: 'buyName', title: '用户名', minWidth: 150,align:'left'},
                    {field: 'buyPhone', title: '电话', minWidth: 150,align:'left'},
                    {field: 'buyPhone', title: '账号', minWidth: 150,align:'left'},
                    {field: 'buyBindPhone', title: '手机号', minWidth: 150,align:'left'},
                    {field: 'beforeStatus', title: '发货状态',
                        templet: function (d) {
                            if (d.status === 1) {