1. 调整

This commit is contained in:
邱贞招 2024-06-19 10:00:59 +08:00
parent ecd98bd977
commit e41cf73a7b
5 changed files with 44 additions and 14 deletions

View File

@ -42,7 +42,7 @@ public class EtRefundController extends BaseController
public TableDataInfo list(EtRefund etRefund)
{
startPage();
List<EtRefund> list = etRefundService.selectEtRefundList(etRefund);
List<EtRefund> list = etRefundService.selectEtRefundListWithIsolate(etRefund);
return getDataTable(list);
}
@ -54,7 +54,7 @@ public class EtRefundController extends BaseController
@PostMapping("/export")
public void export(HttpServletResponse response, EtRefund etRefund)
{
List<EtRefund> list = etRefundService.selectEtRefundList(etRefund);
List<EtRefund> list = etRefundService.selectEtRefundListWithIsolate(etRefund);
ExcelUtil<EtRefund> util = new ExcelUtil<EtRefund>(EtRefund.class);
util.exportExcel(response, list, "退款订单数据");
}

View File

@ -43,6 +43,14 @@ public interface IEtRefundService
*/
public List<EtRefund> selectEtRefundList(EtRefund etRefund);
/**
* 查询退款订单列表带数据隔离
*
* @param etRefund 退款订单
* @return 退款订单集合
*/
public List<EtRefund> selectEtRefundListWithIsolate(EtRefund etRefund);
/**
* 新增退款订单
*

View File

@ -219,7 +219,7 @@ public class EtOrderServiceImpl implements IEtOrderService
}
/**
* 查询充值/退款订单列表 资本 capital flow 收支 业务
* 查询充值/退款订单列表
*/
@Override
@DataScope(deptAlias = "d")
@ -239,7 +239,7 @@ public class EtOrderServiceImpl implements IEtOrderService
EtRefund refund = new EtRefund();
refund.setType(ServiceConstants.REFUND_TYPE_DEPOSIT);
refund.setRefundResult(Constants.SUCCESS2);
List<EtRefund> etRefunds = etRefundService.selectEtRefundList(refund);
List<EtRefund> etRefunds = etRefundService.selectEtRefundListWithIsolate(refund);
etRefunds.forEach(etRefund -> {
AsUser asUser = asUserService.selectUserById(etRefund.getUserId());
RechargeVo rechargeVo = new RechargeVo();

View File

@ -1,6 +1,8 @@
package com.ruoyi.system.service.impl;
import java.util.List;
import com.ruoyi.common.annotation.DataScope;
import com.ruoyi.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@ -69,6 +71,19 @@ public class EtRefundServiceImpl implements IEtRefundService
return etRefundMapper.selectEtRefundList(etRefund);
}
/**
* 查询退款订单列表
*
* @param etRefund 退款订单
* @return 退款订单
*/
@DataScope(deptAlias = "d")
@Override
public List<EtRefund> selectEtRefundListWithIsolate(EtRefund etRefund)
{
return etRefundMapper.selectEtRefundList(etRefund);
}
/**
* 新增退款订单
*

View File

@ -26,16 +26,23 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</sql>
<select id="selectEtRefundList" parameterType="EtRefund" resultMap="EtRefundResult">
<include refid="selectEtRefundVo"/>
<where>
<if test="refundNo != null and refundNo != ''"> and refund_no = #{refundNo}</if>
<if test="orderNo != null and orderNo != ''"> and order_no like concat('%', #{orderNo}, '%')</if>
<if test="userId != null "> and user_id like concat('%', #{userId}, '%')</if>
<if test="amount != null "> and amount = #{amount}</if>
<if test="itemDesc != null and itemDesc != ''"> and item_desc like concat('%', #{itemDesc}, '%')</if>
<if test="refundResult != null "> and refund_result = #{refundResult}</if>
<if test="type != null "> and type = #{type}</if>
</where>
select r.id, r.refund_no, r.order_no, r.user_id, r.amount, r.dispatch_fee, r.manage_fee,
r.riding_fee, r.appointment_fee, r.type, r.reason, r.create_time, r.item_desc,r.refund_result from et_refund r
INNER JOIN et_order o on o.order_no = r.order_no
LEFT JOIN et_operating_area oa ON o.area_id = oa.area_id
LEFT join et_area_dept ad on ad.area_id = oa.area_id
LEFT join sys_dept d on d.dept_id = ad.dept_id
where 1 = 1
<if test="refundNo != null and refundNo != ''"> and r.refund_no = #{refundNo}</if>
<if test="orderNo != null and orderNo != ''"> and r.order_no like concat('%', #{orderNo}, '%')</if>
<if test="userId != null "> and r.user_id like concat('%', #{userId}, '%')</if>
<if test="amount != null "> and r.amount = #{amount}</if>
<if test="itemDesc != null and itemDesc != ''"> and r.item_desc like concat('%', #{itemDesc}, '%')</if>
<if test="refundResult != null "> and r.refund_result = #{refundResult}</if>
<if test="type != null "> and r.type = #{type}</if>
<!-- 数据范围过滤 -->
${params.dataScope}
order by o.create_time desc
</select>
<select id="selectEtRefundById" parameterType="Long" resultMap="EtRefundResult">