This commit is contained in:
邱贞招 2024-10-29 15:40:19 +08:00
parent 3ba6219aef
commit 7657bfd6aa
20 changed files with 235 additions and 212 deletions

View File

@ -7,6 +7,7 @@ import com.ruoyi.common.core.page.TableDataInfo;
import com.ruoyi.common.enums.BusinessType; import com.ruoyi.common.enums.BusinessType;
import com.ruoyi.common.utils.poi.ExcelUtil; import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.system.domain.dividendDetail.RlDividendDetail; import com.ruoyi.system.domain.dividendDetail.RlDividendDetail;
import com.ruoyi.system.domain.dividendDetail.RlDividendDetailQuery;
import com.ruoyi.system.domain.dividendDetail.RlDividendDetailVO; import com.ruoyi.system.domain.dividendDetail.RlDividendDetailVO;
import com.ruoyi.system.service.IRlDividendDetailService; import com.ruoyi.system.service.IRlDividendDetailService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
@ -35,7 +36,7 @@ public class RlDividendDetailController extends BaseController
*/ */
@PreAuthorize("@ss.hasPermi('system:detail:list')") @PreAuthorize("@ss.hasPermi('system:detail:list')")
@GetMapping("/list") @GetMapping("/list")
public TableDataInfo list(RlDividendDetail rlDividendDetail) public TableDataInfo list(RlDividendDetailQuery rlDividendDetail)
{ {
startPage(); startPage();
List<RlDividendDetailVO> list = rlDividendDetailService.selectRlDividendDetailList(rlDividendDetail); List<RlDividendDetailVO> list = rlDividendDetailService.selectRlDividendDetailList(rlDividendDetail);
@ -48,7 +49,7 @@ public class RlDividendDetailController extends BaseController
@PreAuthorize("@ss.hasPermi('system:detail:export')") @PreAuthorize("@ss.hasPermi('system:detail:export')")
@Log(title = "分账明细", businessType = BusinessType.EXPORT) @Log(title = "分账明细", businessType = BusinessType.EXPORT)
@PostMapping("/export") @PostMapping("/export")
public void export(HttpServletResponse response, RlDividendDetail rlDividendDetail) public void export(HttpServletResponse response, RlDividendDetailQuery rlDividendDetail)
{ {
List<RlDividendDetailVO> list = rlDividendDetailService.selectRlDividendDetailList(rlDividendDetail); List<RlDividendDetailVO> list = rlDividendDetailService.selectRlDividendDetailList(rlDividendDetail);
ExcelUtil<RlDividendDetailVO> util = new ExcelUtil<RlDividendDetailVO>(RlDividendDetailVO.class); ExcelUtil<RlDividendDetailVO> util = new ExcelUtil<RlDividendDetailVO>(RlDividendDetailVO.class);

View File

@ -10,4 +10,7 @@ public class RlDeliveryOrderQuery extends RlDeliveryOrder{
/** 关键字: 手机号或订单号 */ /** 关键字: 手机号或订单号 */
private String keywords; private String keywords;
/** 代理商名称 */
private String agentName;
} }

View File

@ -1,7 +0,0 @@
package com.ruoyi.system.domain.dividendDetail;
import lombok.Data;
@Data
public class DividendDetailQuery extends RlDividendDetail{
}

View File

@ -0,0 +1,11 @@
package com.ruoyi.system.domain.dividendDetail;
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
@Data
public class RlDividendDetailQuery extends RlDividendDetail{
/** 代理商名称 */
private String agentName;
}

View File

@ -47,7 +47,7 @@ public class IndexAdminVo {
private BigDecimal todayIncome; private BigDecimal todayIncome;
/** 今日订单数 */ /** 今日订单数 */
private BigDecimal todayOrderNum; private Integer todayOrderNum;
/** 较昨日营收 */ /** 较昨日营收 */
private BigDecimal comparedYesterdayIncome; private BigDecimal comparedYesterdayIncome;

View File

@ -1,6 +1,7 @@
package com.ruoyi.system.mapper; package com.ruoyi.system.mapper;
import com.ruoyi.system.domain.dividendDetail.RlDividendDetail; import com.ruoyi.system.domain.dividendDetail.RlDividendDetail;
import com.ruoyi.system.domain.dividendDetail.RlDividendDetailQuery;
import com.ruoyi.system.domain.dividendDetail.RlDividendDetailVO; import com.ruoyi.system.domain.dividendDetail.RlDividendDetailVO;
import java.util.List; import java.util.List;
@ -27,7 +28,7 @@ public interface RlDividendDetailMapper
* @param rlDividendDetail 分账明细 * @param rlDividendDetail 分账明细
* @return 分账明细集合 * @return 分账明细集合
*/ */
public List<RlDividendDetailVO> selectRlDividendDetailList(RlDividendDetail rlDividendDetail); public List<RlDividendDetailVO> selectRlDividendDetailList(RlDividendDetailQuery rlDividendDetail);
/** /**
* 新增分账明细 * 新增分账明细

View File

@ -1,6 +1,7 @@
package com.ruoyi.system.service; package com.ruoyi.system.service;
import com.ruoyi.system.domain.dividendDetail.RlDividendDetail; import com.ruoyi.system.domain.dividendDetail.RlDividendDetail;
import com.ruoyi.system.domain.dividendDetail.RlDividendDetailQuery;
import com.ruoyi.system.domain.dividendDetail.RlDividendDetailVO; import com.ruoyi.system.domain.dividendDetail.RlDividendDetailVO;
import com.ruoyi.system.domain.order.RlOrder; import com.ruoyi.system.domain.order.RlOrder;
@ -29,7 +30,7 @@ public interface IRlDividendDetailService
* @param rlDividendDetail 分账明细 * @param rlDividendDetail 分账明细
* @return 分账明细集合 * @return 分账明细集合
*/ */
public List<RlDividendDetailVO> selectRlDividendDetailList(RlDividendDetail rlDividendDetail); public List<RlDividendDetailVO> selectRlDividendDetailList(RlDividendDetailQuery rlDividendDetail);
/** /**
* 根据订单号查询分账明细列表 * 根据订单号查询分账明细列表

View File

@ -4,7 +4,6 @@ import cn.hutool.core.util.ObjectUtil;
import com.ruoyi.common.annotation.DataScope; import com.ruoyi.common.annotation.DataScope;
import com.ruoyi.system.domain.agent.RlAgent; import com.ruoyi.system.domain.agent.RlAgent;
import com.ruoyi.system.domain.agent.RlAgentVO; import com.ruoyi.system.domain.agent.RlAgentVO;
import com.ruoyi.system.domain.area.RlOperatingArea;
import com.ruoyi.system.domain.area.RlOperatingAreaVO; import com.ruoyi.system.domain.area.RlOperatingAreaVO;
import com.ruoyi.system.domain.cancelRule.RlCancelRule; import com.ruoyi.system.domain.cancelRule.RlCancelRule;
import com.ruoyi.system.mapper.RlAgentMapper; import com.ruoyi.system.mapper.RlAgentMapper;

View File

@ -8,6 +8,7 @@ import com.ruoyi.common.exception.ServiceException;
import com.ruoyi.common.utils.DateUtils; import com.ruoyi.common.utils.DateUtils;
import com.ruoyi.system.domain.agent.RlAgentVO; import com.ruoyi.system.domain.agent.RlAgentVO;
import com.ruoyi.system.domain.dividendDetail.RlDividendDetail; import com.ruoyi.system.domain.dividendDetail.RlDividendDetail;
import com.ruoyi.system.domain.dividendDetail.RlDividendDetailQuery;
import com.ruoyi.system.domain.dividendDetail.RlDividendDetailVO; import com.ruoyi.system.domain.dividendDetail.RlDividendDetailVO;
import com.ruoyi.system.domain.order.RlOrder; import com.ruoyi.system.domain.order.RlOrder;
import com.ruoyi.system.domain.userExt.RlUserExt; import com.ruoyi.system.domain.userExt.RlUserExt;
@ -68,7 +69,7 @@ public class RlDividendDetailServiceImpl implements IRlDividendDetailService
*/ */
@Override @Override
@DataScope(agentAlias = "a",userAlias = "u") @DataScope(agentAlias = "a",userAlias = "u")
public List<RlDividendDetailVO> selectRlDividendDetailList(RlDividendDetail rlDividendDetail) public List<RlDividendDetailVO> selectRlDividendDetailList(RlDividendDetailQuery rlDividendDetail)
{ {
return rlDividendDetailMapper.selectRlDividendDetailList(rlDividendDetail); return rlDividendDetailMapper.selectRlDividendDetailList(rlDividendDetail);
} }

View File

@ -203,9 +203,7 @@ public class RlOrderServiceImpl implements IRlOrderService
List<RlOrderOper> rlOrderOpers = rlOrderOperService.selectRlOrderOperList(orderOper); List<RlOrderOper> rlOrderOpers = rlOrderOperService.selectRlOrderOperList(orderOper);
order.setOrderOpers(rlOrderOpers); order.setOrderOpers(rlOrderOpers);
/** 收益明细*/ /** 收益明细*/
RlDividendDetail rlDividendDetail = new RlDividendDetail(); List<RlDividendDetailVO> rlDividendDetails = rlDividendDetailService.selectRlDividendDetailListByOrderNo(orderNo);
rlDividendDetail.setOrderNo(orderNo);
List<RlDividendDetailVO> rlDividendDetails = rlDividendDetailService.selectRlDividendDetailList(rlDividendDetail);
order.setRlDividendDetails(rlDividendDetails); order.setRlDividendDetails(rlDividendDetails);
RlDeliveryOrder deliveryOrder = deliveryOrderService.selectRlDeliveryOrderByOrderNo(orderNo); RlDeliveryOrder deliveryOrder = deliveryOrderService.selectRlDeliveryOrderByOrderNo(orderNo);
@ -741,9 +739,7 @@ public class RlOrderServiceImpl implements IRlOrderService
} }
private void refundDividendHandle(RlOrderVO rlOrderVO, BigDecimal refundPercentage) { private void refundDividendHandle(RlOrderVO rlOrderVO, BigDecimal refundPercentage) {
RlDividendDetail rlDividendDetail = new RlDividendDetail(); List<RlDividendDetailVO> dividendDetails = rlDividendDetailService.selectRlDividendDetailListByOrderNo(rlOrderVO.getOrderNo());
rlDividendDetail.setOrderNo(rlOrderVO.getOrderNo());
List<RlDividendDetailVO> dividendDetails = rlDividendDetailService.selectRlDividendDetailList(rlDividendDetail);
for(RlDividendDetail detail:dividendDetails){ for(RlDividendDetail detail:dividendDetails){
/** 4.1 余额不足判断 */ /** 4.1 余额不足判断 */
RlUserExt rlUserExt = userExtService.selectRlUserExtByUserId(detail.getPartnerId()); RlUserExt rlUserExt = userExtService.selectRlUserExtByUserId(detail.getPartnerId());
@ -916,50 +912,73 @@ public class RlOrderServiceImpl implements IRlOrderService
private IndexAdminVo getIndexAdminVoByAgentId(String startTime, String endTime, DateTimeFormatter formatter, Long agentId,Long merchantId) { private IndexAdminVo getIndexAdminVoByAgentId(String startTime, String endTime, DateTimeFormatter formatter, Long agentId,Long merchantId) {
// 校验输入时间格式并判断时间区间是否超过15天 // 校验输入时间格式并判断时间区间是否超过15天
if (StrUtil.isNotBlank(startTime) && StrUtil.isNotBlank(endTime)) { if (StrUtil.isNotBlank(startTime) && StrUtil.isNotBlank(endTime)) {
// 使用LocalDate统一日期处理 // 获取今日订单数量和收入
LocalDate startDate = LocalDate.parse(startTime, formatter); startTime = DateUtils.getYYYY_MM_DD(DateUtils.getNowDate()) + " " + Constants.DATE_FORMAT_START_PEREND;
LocalDate endDate = LocalDate.parse(endTime, formatter); endTime = DateUtils.getYYYY_MM_DD(DateUtils.getNowDate()) + " " + Constants.DATE_FORMAT_END_PEREND;
// 计算两者之间的天数差异
long daysBetween = ChronoUnit.DAYS.between(startDate, endDate);
if (daysBetween > 15) {
throw new ServiceException("时间范围不能超过15天");
}
// 创建结果对象
IndexAdminVo indexAdminVo = new IndexAdminVo();
ArrayList<IndexAdminVo.IncomeVo> incomeVos = new ArrayList<>();
// 遍历从 startDate endDate 的每一天生成订单数据
for (LocalDate date = startDate; !date.isAfter(endDate); date = date.plusDays(1)) {
IndexAdminVo.IncomeVo orderFee = new IndexAdminVo.IncomeVo();
String day = date.format(formatter);
String startDateStr = day + " "+ Constants.DATE_FORMAT_START_PEREND;
String endDateStr = day + " " +Constants.DATE_FORMAT_END_PEREND;
orderFee.setDay(day); // 设置每一天的日期
BigDecimal orderFee1 = orderMapper.getOrderFee(startDateStr, endDateStr, agentId,merchantId);//订单金额
orderFee.setOrderFee(orderFee1);
orderFee.setOrderNum(orderMapper.getOrderNum(startDateStr, endDateStr, agentId,merchantId));//订单数量
incomeVos.add(orderFee);
}
// 设置收入数据
indexAdminVo.setIncomeVoList(incomeVos);
indexAdminVo.setTodayOrderNum(new BigDecimal(10));
indexAdminVo.setTodayIncome(new BigDecimal(100));
indexAdminVo.setComparedYesterdayIncome(new BigDecimal(5));
indexAdminVo.setComparedYesterdayOrderNum(new BigDecimal(5));
// 设置车辆统计数据
IndexAdminVo.DeviceVO deviceVO = new IndexAdminVo.DeviceVO();
deviceVO.setTotal(deviceService.getTatalDeviceCount(agentId, merchantId,null,null));
deviceVO.setIdle(deviceService.getTatalDeviceCount(agentId, merchantId,ServiceConstants.VEHICLE_STATUS_NORMAL,null));
String[] statusList = new String[] { ServiceConstants.VEHICLE_STATUS_IN_USING,ServiceConstants.VEHICLE_STATUS_TEMPORARILY_LOCK };
deviceVO.setRent(deviceService.getTatalDeviceCount(agentId, merchantId,null,statusList));
indexAdminVo.setDeviceVO(deviceVO);
return indexAdminVo;
} }
throw new ServiceException("开始时间和结束时间不能为空"); // 使用LocalDate统一日期处理
LocalDate startDate = LocalDate.parse(startTime, formatter);
LocalDate endDate = LocalDate.parse(endTime, formatter);
// 计算两者之间的天数差异
long daysBetween = ChronoUnit.DAYS.between(startDate, endDate);
if (daysBetween > 15) {
throw new ServiceException("时间范围不能超过15天");
}
// 创建结果对象
IndexAdminVo indexAdminVo = new IndexAdminVo();
ArrayList<IndexAdminVo.IncomeVo> incomeVos = new ArrayList<>();
// 遍历从 startDate endDate 的每一天生成订单数据
for (LocalDate date = startDate; !date.isAfter(endDate); date = date.plusDays(1)) {
IndexAdminVo.IncomeVo orderFee = new IndexAdminVo.IncomeVo();
String day = date.format(formatter);
String startDateStr = day + " "+ Constants.DATE_FORMAT_START_PEREND;
String endDateStr = day + " " +Constants.DATE_FORMAT_END_PEREND;
orderFee.setDay(day); // 设置每一天的日期
BigDecimal orderFee1 = orderMapper.getOrderFee(startDateStr, endDateStr, agentId,merchantId);//订单金额
orderFee.setOrderFee(orderFee1);
orderFee.setOrderNum(orderMapper.getOrderNum(startDateStr, endDateStr, agentId,merchantId));//订单数量
incomeVos.add(orderFee);
}
// 设置收入数据
indexAdminVo.setIncomeVoList(incomeVos);
// 获取今日订单数量和收入
String todayStart = DateUtils.getYYYY_MM_DD(DateUtils.getNowDate()) + " " + Constants.DATE_FORMAT_START_PEREND;
String todayEnd = DateUtils.getYYYY_MM_DD(DateUtils.getNowDate()) + " " + Constants.DATE_FORMAT_END_PEREND;
// 查询今日的订单数和营收
Integer todayOrderNum = orderMapper.getOrderNum(todayStart, todayEnd, agentId, merchantId);
BigDecimal todayIncome = orderMapper.getOrderFee(todayStart, todayEnd, agentId, merchantId);
// 设置今日的订单数和营收
indexAdminVo.setTodayOrderNum(todayOrderNum);
indexAdminVo.setTodayIncome(todayIncome);
String yesterdayStart = DateUtils.getYYYY_MM_DD(DateUtils.addDays(DateUtils.getNowDate(), -1)) + " " + Constants.DATE_FORMAT_START_PEREND;
String yesterdayEnd = DateUtils.getYYYY_MM_DD(DateUtils.addDays(DateUtils.getNowDate(), -1)) + " " + Constants.DATE_FORMAT_END_PEREND;
// 查询昨日的订单数和营收
Integer yesterdayOrderNum = orderMapper.getOrderNum(yesterdayStart, yesterdayEnd, agentId, merchantId);
BigDecimal yesterdayIncome = orderMapper.getOrderFee(yesterdayStart, yesterdayEnd, agentId, merchantId);
// 计算较昨日的营收和订单数
BigDecimal comparedYesterdayIncome = todayIncome.subtract(yesterdayIncome);
BigDecimal comparedYesterdayOrderNum = new BigDecimal(todayOrderNum - yesterdayOrderNum);
// 设置较昨日的营收和订单数
indexAdminVo.setComparedYesterdayIncome(comparedYesterdayIncome);
indexAdminVo.setComparedYesterdayOrderNum(comparedYesterdayOrderNum);
// 设置车辆统计数据
IndexAdminVo.DeviceVO deviceVO = new IndexAdminVo.DeviceVO();
deviceVO.setTotal(deviceService.getTatalDeviceCount(agentId, merchantId,null,null));
deviceVO.setIdle(deviceService.getTatalDeviceCount(agentId, merchantId,ServiceConstants.VEHICLE_STATUS_NORMAL,null));
String[] statusList = new String[] { ServiceConstants.VEHICLE_STATUS_IN_USING,ServiceConstants.VEHICLE_STATUS_TEMPORARILY_LOCK };
deviceVO.setRent(deviceService.getTatalDeviceCount(agentId, merchantId,null,statusList));
indexAdminVo.setDeviceVO(deviceVO);
return indexAdminVo;
} }
private BigDecimal deposit(Long modelId, PriceVO priceVO) { private BigDecimal deposit(Long modelId, PriceVO priceVO) {

View File

@ -716,7 +716,7 @@ public class RlUserServiceImpl implements IRlUserService{
@Override @Override
public int resetUserPwd(String userName, String password) { public int resetUserPwd(String userName, String password) {
return 0; return rlUserMapper.resetUserPwd(userName, password);
} }
@Override @Override

View File

@ -15,10 +15,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectRlAccessoryList" parameterType="RlAccessory" resultMap="RlAccessoryResult"> <select id="selectRlAccessoryList" parameterType="RlAccessory" resultMap="RlAccessoryResult">
<include refid="selectRlAccessoryVo"/> <include refid="selectRlAccessoryVo"/>
<where> where 1=1
<if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if> <if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
<if test="status != null "> and status = #{status}</if> <if test="status != null "> and status = #{status}</if>
</where>
${params.dataScope} ${params.dataScope}
GROUP BY GROUP BY
a.accessory_id a.accessory_id

View File

@ -15,16 +15,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectRlAgentList" parameterType="RlAgent" resultMap="RlAgentResult"> <select id="selectRlAgentList" parameterType="RlAgent" resultMap="RlAgentResult">
<include refid="selectRlAgentVo"/> <include refid="selectRlAgentVo"/>
<where> where 1=1
<if test="name != null and name != ''"> and a.name like concat('%', #{name}, '%')</if> <if test="name != null and name != ''"> and a.name like concat('%', #{name}, '%')</if>
<if test="servicePhone != null and servicePhone != ''"> and a.service_phone = #{servicePhone}</if> <if test="servicePhone != null and servicePhone != ''"> and a.service_phone = #{servicePhone}</if>
<if test="dispatchFee != null "> and a.dispatch_fee = #{dispatchFee}</if> <if test="dispatchFee != null "> and a.dispatch_fee = #{dispatchFee}</if>
<if test="deliveryFee != null "> and a.delivery_fee = #{deliveryFee}</if> <if test="deliveryFee != null "> and a.delivery_fee = #{deliveryFee}</if>
<if test="cityId != null "> and a.city_id = #{cityId}</if> <if test="cityId != null "> and a.city_id = #{cityId}</if>
<if test="contact != null and contact != ''"> and a.contact = #{contact}</if> <if test="contact != null and contact != ''"> and a.contact = #{contact}</if>
<if test="phone != null and phone != ''"> and a.phone = #{phone}</if> <if test="phone != null and phone != ''"> and a.phone = #{phone}</if>
<if test="userid != null "> and a.userid = #{userid}</if> <if test="userid != null "> and a.userid = #{userid}</if>
</where>
${params.dataScope} ${params.dataScope}
order by a.agent_id desc order by a.agent_id desc
</select> </select>

View File

@ -14,20 +14,19 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectRlChangeBalanceList" parameterType="RlChangeBalance" resultMap="RlChangeBalanceResult"> <select id="selectRlChangeBalanceList" parameterType="RlChangeBalance" resultMap="RlChangeBalanceResult">
<include refid="selectRlChangeBalanceVo"/> <include refid="selectRlChangeBalanceVo"/>
<where> where 1=1
<if test="orderNo != null and orderNo != ''"> and cb.order_no = #{orderNo}</if> <if test="orderNo != null and orderNo != ''"> and cb.order_no like concat('%', #{orderNo}, '%')</if>
<if test="outTradeNo != null and outTradeNo != ''"> and cb.out_trade_no = #{outTradeNo}</if> <if test="outTradeNo != null and outTradeNo != ''"> and cb.out_trade_no = #{outTradeNo}</if>
<if test="type != null and type != ''"> and cb.type = #{type}</if> <if test="type != null and type != ''"> and cb.type = #{type}</if>
<if test="busType != null and busType != ''"> and cb.bus_type = #{busType}</if> <if test="busType != null and busType != ''"> and cb.bus_type = #{busType}</if>
<if test="beforeBalance != null "> and cb.before_balance = #{beforeBalance}</if> <if test="beforeBalance != null "> and cb.before_balance = #{beforeBalance}</if>
<if test="afterBalance != null "> and cb.after_balance = #{afterBalance}</if> <if test="afterBalance != null "> and cb.after_balance = #{afterBalance}</if>
<if test="amount != null "> and cb.amount = #{amount}</if> <if test="amount != null "> and cb.amount = #{amount}</if>
<if test="ownerName != null and ownerName != ''"> and cb.owner_name like concat('%', #{ownerName}, '%')</if> <if test="ownerName != null and ownerName != ''"> and cb.owner_name like concat('%', #{ownerName}, '%')</if>
<if test="ownerId != null "> and cb.owner_id = #{ownerId}</if> <if test="ownerId != null "> and cb.owner_id = #{ownerId}</if>
<if test="ownerPhone != null and ownerPhone != ''"> and cb.owner_phone = #{ownerPhone}</if> <if test="ownerPhone != null and ownerPhone != ''"> and cb.owner_phone like concat('%', #{ownerPhone}, '%')</if>
<if test="ownerType != null and ownerType != ''"> and cb.owner_type = #{ownerType}</if> <if test="ownerType != null and ownerType != ''"> and cb.owner_type = #{ownerType}</if>
<if test="reason != null and reason != ''"> and cb.reason = #{reason}</if> <if test="reason != null and reason != ''"> and cb.reason = #{reason}</if>
</where>
${params.dataScope} ${params.dataScope}
order by create_time desc order by create_time desc
</select> </select>

View File

@ -19,24 +19,24 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectRlDeliveryOrderList" parameterType="RlDeliveryOrderVO" resultMap="RlDeliveryOrderResult"> <select id="selectRlDeliveryOrderList" parameterType="RlDeliveryOrderVO" resultMap="RlDeliveryOrderResult">
<include refid="selectRlDeliveryOrderVo"/> <include refid="selectRlDeliveryOrderVo"/>
<where> where 1=1
<if test="orderNo != null and orderNo != ''"> and do.order_no = #{orderNo}</if> <if test="orderNo != null and orderNo != ''"> and do.order_no like concat('%', #{orderNo}, '%')</if>
<if test="agentId != null "> and do.agent_id = #{agentId}</if> <if test="agentId != null "> and do.agent_id = #{agentId}</if>
<if test="deliverymanId != null and deliverymanId != ''"> and do.deliveryman_id = #{deliverymanId}</if> <if test="agentName != null "> and a.name like concat('%', #{agentName}, '%')</if>
<if test="deliverymanType != null and deliverymanType != ''"> and do.deliveryman_type = #{deliverymanType}</if> <if test="deliverymanId != null and deliverymanId != ''"> and do.deliveryman_id = #{deliverymanId}</if>
<if test="deliveryman != null and deliveryman != ''"> and do.deliveryman = #{deliveryman}</if> <if test="deliverymanType != null and deliverymanType != ''"> and do.deliveryman_type = #{deliverymanType}</if>
<if test="deliverymanPhone != null and deliverymanPhone != ''"> and do.deliveryman_phone = #{deliverymanPhone}</if> <if test="deliveryman != null and deliveryman != ''"> and do.deliveryman like concat('%', #{deliveryman}, '%')</if>
<if test="status != null and status != ''"> and do.status = #{status}</if> <if test="deliverymanPhone != null and deliverymanPhone != ''"> and do.deliveryman_phone like concat('%', #{deliverymanPhone}, '%')</if>
<if test="statusList != null and statusList !=''"> <if test="status != null and status != ''"> and do.status = #{status}</if>
AND do.status IN <if test="statusList != null and statusList !=''">
<foreach item="item" index="index" collection="statusList" open="(" separator="," close=")"> AND do.status IN
#{item} <foreach item="item" index="index" collection="statusList" open="(" separator="," close=")">
</foreach> #{item}
</if> </foreach>
<if test="keywords != null and keywords != ''"> </if>
AND (o.phone LIKE CONCAT('%', #{keywords}, '%') OR o.order_no LIKE CONCAT('%', #{keywords}, '%')) <if test="keywords != null and keywords != ''">
</if> AND (o.phone LIKE CONCAT('%', #{keywords}, '%') OR o.order_no LIKE CONCAT('%', #{keywords}, '%'))
</where> </if>
${params.dataScope} ${params.dataScope}
order by do.delivery_id desc order by do.delivery_id desc
</select> </select>

View File

@ -20,7 +20,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="deliveryId != null "> and delivery_id = #{deliveryId}</if> <if test="deliveryId != null "> and delivery_id = #{deliveryId}</if>
<if test="type != null and type != ''"> and type = #{type}</if> <if test="type != null and type != ''"> and type = #{type}</if>
<if test="operUserid != null "> and oper_userid = #{operUserid}</if> <if test="operUserid != null "> and oper_userid = #{operUserid}</if>
<if test="operPhone != null and operPhone != ''"> and oper_phone = #{operPhone}</if> <if test="operPhone != null and operPhone != ''"> and oper_phone like concat('%', #{operPhone}, '%')</if>
<if test="operName != null and operName != ''"> and oper_name like concat('%', #{operName}, '%')</if> <if test="operName != null and operName != ''"> and oper_name like concat('%', #{operName}, '%')</if>
<if test="operTime != null "> and oper_time = #{operTime}</if> <if test="operTime != null "> and oper_time = #{operTime}</if>
</where> </where>

View File

@ -13,19 +13,19 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
left join rl_user u on u.user_id = dd.partner_id left join rl_user u on u.user_id = dd.partner_id
</sql> </sql>
<select id="selectRlDividendDetailList" parameterType="RlDividendDetail" resultMap="RlDividendDetailResult"> <select id="selectRlDividendDetailList" parameterType="RlDividendDetailQuery" resultMap="RlDividendDetailResult">
<include refid="selectRlDividendDetailVo"/> <include refid="selectRlDividendDetailVo"/>
<where> where 1=1
<if test="agentId != null "> and dd.agent_id = #{agentId}</if> <if test="agentId != null "> and dd.agent_id = #{agentId}</if>
<if test="partnerId != null "> and dd.partner_id = #{partnerId}</if> <if test="agentName != null "> and a.name like concat('%', #{agentName}, '%')</if>
<if test="partnerName != null "> and dd.partner_name = #{partnerName}</if> <if test="partnerId != null "> and dd.partner_id = #{partnerId}</if>
<if test="partnerPhone != null "> and dd.partner_phone = #{partnerPhone}</if> <if test="partnerName != null "> and dd.partner_name like concat('%', #{partnerName}, '%')</if>
<if test="partnerType != null "> and dd.partner_type = #{partnerType}</if> <if test="partnerPhone != null "> and dd.partner_phone like concat('%', #{partnerPhone}, '%')</if>
<if test="orderNo != null and orderNo != ''"> and dd.order_no = #{orderNo}</if> <if test="partnerType != null "> and dd.partner_type = #{partnerType}</if>
<if test="totalAmount != null "> and dd.total_amount = #{totalAmount}</if> <if test="orderNo != null and orderNo != ''"> and dd.order_no like concat('%', #{orderNo}, '%')</if>
<if test="dividendAmount != null "> and dd.dividend_amount = #{dividendAmount}</if> <if test="totalAmount != null "> and dd.total_amount = #{totalAmount}</if>
<if test="dividendProportion != null "> and dd.dividend_proportion = #{dividendProportion}</if> <if test="dividendAmount != null "> and dd.dividend_amount = #{dividendAmount}</if>
</where> <if test="dividendProportion != null "> and dd.dividend_proportion = #{dividendProportion}</if>
${params.dataScope} ${params.dataScope}
order by dd.create_time desc order by dd.create_time desc
</select> </select>

View File

@ -14,20 +14,19 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectRlOperatingAreaList" parameterType="RlOperatingArea" resultMap="RlOperatingAreaResult"> <select id="selectRlOperatingAreaList" parameterType="RlOperatingArea" resultMap="RlOperatingAreaResult">
<include refid="selectRlOperatingAreaVo"/> <include refid="selectRlOperatingAreaVo"/>
<where> where 1=1
<if test="areaName != null and areaName != ''"> and area_name like concat('%', #{areaName}, '%')</if> <if test="areaName != null and areaName != ''"> and area_name like concat('%', #{areaName}, '%')</if>
<if test="boundary != null and boundary != ''"> and boundary = #{boundary}</if> <if test="boundary != null and boundary != ''"> and boundary = #{boundary}</if>
<if test="boundaryStr != null and boundaryStr != ''"> and boundary_str = #{boundaryStr}</if> <if test="boundaryStr != null and boundaryStr != ''"> and boundary_str = #{boundaryStr}</if>
<if test="longitude != null and longitude != ''"> and longitude = #{longitude}</if> <if test="longitude != null and longitude != ''"> and longitude = #{longitude}</if>
<if test="latitude != null and latitude != ''"> and latitude = #{latitude}</if> <if test="latitude != null and latitude != ''"> and latitude = #{latitude}</if>
<if test="status != null and status != ''"> and status = #{status}</if> <if test="status != null and status != ''"> and status = #{status}</if>
<if test="areaTime != null and areaTime != ''"> and area_time = #{areaTime}</if> <if test="areaTime != null and areaTime != ''"> and area_time = #{areaTime}</if>
<if test="areaOutOutage != null and areaOutOutage != ''"> and area_out_outage = #{areaOutOutage}</if> <if test="areaOutOutage != null and areaOutOutage != ''"> and area_out_outage = #{areaOutOutage}</if>
<if test="areaOutDispatch != null and areaOutDispatch != ''"> and area_out_dispatch = #{areaOutDispatch}</if> <if test="areaOutDispatch != null and areaOutDispatch != ''"> and area_out_dispatch = #{areaOutDispatch}</if>
<if test="agreement != null and agreement != ''"> and agreement = #{agreement}</if> <if test="agreement != null and agreement != ''"> and agreement = #{agreement}</if>
<if test="areaTimeStart != null and areaTimeStart != ''"> and area_time_start = #{areaTimeStart}</if> <if test="areaTimeStart != null and areaTimeStart != ''"> and area_time_start = #{areaTimeStart}</if>
<if test="areaTimeEnd != null and areaTimeEnd != ''"> and area_time_end = #{areaTimeEnd}</if> <if test="areaTimeEnd != null and areaTimeEnd != ''"> and area_time_end = #{areaTimeEnd}</if>
</where>
${params.dataScope} ${params.dataScope}
order by oa.create_time desc order by oa.create_time desc
</select> </select>

View File

@ -119,67 +119,66 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectRlOrderList" parameterType="RlOrderQuery" resultMap="RlOrderResult"> <select id="selectRlOrderList" parameterType="RlOrderQuery" resultMap="RlOrderResult">
<include refid="selectRlOrderDetail"/> <include refid="selectRlOrderDetail"/>
<where> where 1=1
<if test="orderNo != null and orderNo != ''"> and o.order_no like concat('%', #{orderNo}, '%')</if> <if test="orderNo != null and orderNo != ''"> and o.order_no like concat('%', #{orderNo}, '%')</if>
<if test="outTradeNo != null and outTradeNo != ''"> and o.out_trade_no like concat('%', #{outTradeNo}, '%')</if> <if test="outTradeNo != null and outTradeNo != ''"> and o.out_trade_no like concat('%', #{outTradeNo}, '%')</if>
<if test="userId != null"> and o.user_id = #{userId}</if> <if test="userId != null"> and o.user_id = #{userId}</if>
<if test="userName != null and userName != ''"> and u.user_name like concat('%', #{userName}, '%')</if> <if test="userName != null and userName != ''"> and u.user_name like concat('%', #{userName}, '%')</if>
<if test="realName != null and realName != ''"> and o.real_name like concat('%', #{realName}, '%')</if> <if test="realName != null and realName != ''"> and o.real_name like concat('%', #{realName}, '%')</if>
<if test="phone != null and phone != ''"> and u.phonenumber like concat('%', #{phone}, '%')</if> <if test="phone != null and phone != ''"> and u.phonenumber like concat('%', #{phone}, '%')</if>
<if test="ruleId != null"> and o.rule_id = #{ruleId}</if> <if test="ruleId != null"> and o.rule_id = #{ruleId}</if>
<if test="deviceMac != null and deviceMac != ''"> and o.device_mac = #{deviceMac}</if> <if test="deviceMac != null and deviceMac != ''"> and o.device_mac = #{deviceMac}</if>
<if test="sn != null and sn != ''"> and o.sn = #{sn}</if> <if test="sn != null and sn != ''"> and o.sn = #{sn}</if>
<if test="payTime != null"> and o.pay_time = #{payTime}</if> <if test="payTime != null"> and o.pay_time = #{payTime}</if>
<if test="payType != null and payType != ''"> and o.pay_type = #{payType}</if> <if test="payType != null and payType != ''"> and o.pay_type = #{payType}</if>
<if test="paid != null and paid != ''"> and o.paid = #{paid}</if> <if test="paid != null and paid != ''"> and o.paid = #{paid}</if>
<if test="type != null and type != ''"> and o.type = #{type}</if> <if test="type != null and type != ''"> and o.type = #{type}</if>
<if test="totalFee != null"> and o.total_fee = #{totalFee}</if> <if test="totalFee != null"> and o.total_fee = #{totalFee}</if>
<if test="payFee != null"> and o.pay_fee = #{payFee}</if> <if test="payFee != null"> and o.pay_fee = #{payFee}</if>
<if test="deposit != null"> and o.deposit = #{deposit}</if> <if test="deposit != null"> and o.deposit = #{deposit}</if>
<if test="dispatchFee != null"> and o.dispatch_fee = #{dispatchFee}</if> <if test="dispatchFee != null"> and o.dispatch_fee = #{dispatchFee}</if>
<if test="deliveryFee != null"> and o.delivery_fee = #{deliveryFee}</if> <if test="deliveryFee != null"> and o.delivery_fee = #{deliveryFee}</if>
<if test="leaseFee != null"> and o.lease_fee = #{leaseFee}</if> <if test="leaseFee != null"> and o.lease_fee = #{leaseFee}</if>
<if test="mark != null and mark != ''"> and o.mark = #{mark}</if> <if test="mark != null and mark != ''"> and o.mark = #{mark}</if>
<if test="duration != null"> and o.duration = #{duration}</if> <if test="duration != null"> and o.duration = #{duration}</if>
<if test="status != null and status != ''"> and o.status = #{status}</if> <if test="status != null and status != ''"> and o.status = #{status}</if>
<if test="returnTime != null"> and o.return_time = #{returnTime}</if> <if test="returnTime != null"> and o.return_time = #{returnTime}</if>
<if test="depositDeduction != null and depositDeduction != ''"> and o.deposit_deduction = #{depositDeduction}</if> <if test="depositDeduction != null and depositDeduction != ''"> and o.deposit_deduction = #{depositDeduction}</if>
<if test="deductionAmount != null"> and o.deduction_amount = #{deductionAmount}</if> <if test="deductionAmount != null"> and o.deduction_amount = #{deductionAmount}</if>
<if test="autoRefundDeposit != null"> and o.auto_refund_deposit = #{autoRefundDeposit}</if> <if test="autoRefundDeposit != null"> and o.auto_refund_deposit = #{autoRefundDeposit}</if>
<if test="rentalUnit != null and rentalUnit != ''"> and o.rental_unit = #{rentalUnit}</if> <if test="rentalUnit != null and rentalUnit != ''"> and o.rental_unit = #{rentalUnit}</if>
<if test="handlingCharge != null"> and o.handling_charge = #{handlingCharge}</if> <if test="handlingCharge != null"> and o.handling_charge = #{handlingCharge}</if>
<if test="platformServiceFee != null"> and o.platform_service_fee = #{platformServiceFee}</if> <if test="platformServiceFee != null"> and o.platform_service_fee = #{platformServiceFee}</if>
<if test="operatorDividend != null"> and o.operator_dividend = #{operatorDividend}</if> <if test="operatorDividend != null"> and o.operator_dividend = #{operatorDividend}</if>
<if test="payChannel != null"> and o.pay_channel = #{payChannel}</if> <if test="payChannel != null"> and o.pay_channel = #{payChannel}</if>
<if test="deliveryMethod != null"> and o.delivery_method = #{deliveryMethod}</if> <if test="deliveryMethod != null"> and o.delivery_method = #{deliveryMethod}</if>
<if test="pickupTime != null"> and o.pickup_time = #{pickupTime}</if> <if test="pickupTime != null"> and o.pickup_time = #{pickupTime}</if>
<if test="agentId != null"> and o.agent_id = #{agentId}</if> <if test="agentId != null"> and o.agent_id = #{agentId}</if>
<if test="storeId != null"> and o.store_id = #{storeId}</if> <if test="storeId != null"> and o.store_id = #{storeId}</if>
<if test="storeName != null and storeName != ''"> and o.store_name = #{storeName}</if> <if test="storeName != null and storeName != ''"> and o.store_name = #{storeName}</if>
<if test="merchantId != null"> and o.merchant_id = #{merchantId}</if> <if test="merchantId != null"> and o.merchant_id = #{merchantId}</if>
<if test="pickupCity != null and pickupCity != ''"> and o.pickup_city = #{pickupCity}</if> <if test="pickupCity != null and pickupCity != ''"> and o.pickup_city = #{pickupCity}</if>
<if test="pickupLoc != null and pickupLoc != ''"> and o.pickup_loc = #{pickupLoc}</if> <if test="pickupLoc != null and pickupLoc != ''"> and o.pickup_loc = #{pickupLoc}</if>
<if test="pickupLon != null and pickupLon != ''"> and o.pickup_lon = #{pickupLon}</if> <if test="pickupLon != null and pickupLon != ''"> and o.pickup_lon = #{pickupLon}</if>
<if test="pickupLat != null and pickupLat != ''"> and o.pickup_lat = #{pickupLat}</if> <if test="pickupLat != null and pickupLat != ''"> and o.pickup_lat = #{pickupLat}</if>
<if test="expiryTime != null"> and o.expiry_time = #{expiryTime}</if> <if test="expiryTime != null"> and o.expiry_time = #{expiryTime}</if>
<if test="originalOrderNo != null and originalOrderNo != ''"> and o.original_order_no = #{originalOrderNo}</if> <if test="originalOrderNo != null and originalOrderNo != ''"> and o.original_order_no = #{originalOrderNo}</if>
<if test="startTime != null and startTime != ''"><!-- 开始时间检索 --> <if test="startTime != null and startTime != ''"><!-- 开始时间检索 -->
and date_format(o.create_time,'%Y%m%d') &gt;= date_format(#{startTime},'%Y%m%d') and date_format(o.create_time,'%Y%m%d') &gt;= date_format(#{startTime},'%Y%m%d')
</if> </if>
<if test="endTime != null and endTime != ''"> <if test="endTime != null and endTime != ''">
and date_format(o.create_time,'%Y%m%d') &lt;= date_format(#{endTime},'%Y%m%d') and date_format(o.create_time,'%Y%m%d') &lt;= date_format(#{endTime},'%Y%m%d')
</if> </if>
<if test="keywords != null and keywords != ''"> <if test="keywords != null and keywords != ''">
AND (u.phonenumber LIKE CONCAT('%', #{keywords}, '%') OR o.order_no LIKE CONCAT('%', #{keywords}, '%')) AND (u.phonenumber LIKE CONCAT('%', #{keywords}, '%') OR o.order_no LIKE CONCAT('%', #{keywords}, '%'))
</if> </if>
<if test="phone != null and phone != ''"> and u.phonenumber like concat('%', #{phone}, '%')</if> <if test="phone != null and phone != ''"> and u.phonenumber like concat('%', #{phone}, '%')</if>
<if test="statusList != null and statusList !=''"> <if test="statusList != null and statusList !=''">
AND o.status IN AND o.status IN
<foreach item="item" index="index" collection="statusList" open="(" separator="," close=")"> <foreach item="item" index="index" collection="statusList" open="(" separator="," close=")">
#{item} #{item}
</foreach> </foreach>
</if> </if>
</where>
${params.dataScope} ${params.dataScope}
order by o.create_time desc order by o.create_time desc
</select> </select>

View File

@ -14,20 +14,19 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectRlWithdrawList" parameterType="RlWithdraw" resultMap="RlWithdrawResult"> <select id="selectRlWithdrawList" parameterType="RlWithdraw" resultMap="RlWithdrawResult">
<include refid="selectRlWithdrawVo"/> <include refid="selectRlWithdrawVo"/>
<where> where 1=1
<if test="withdrawNo != null and withdrawNo != ''"> and w.withdraw_no = #{withdrawNo}</if> <if test="withdrawNo != null and withdrawNo != ''"> and w.withdraw_no like concat('%', #{withdrawNo}, '%')</if>
<if test="amount != null "> and w.amount = #{amount}</if> <if test="amount != null "> and w.amount = #{amount}</if>
<if test="status != null and status != ''"> and w.status = #{status}</if> <if test="status != null and status != ''"> and w.status = #{status}</if>
<if test="rejectReason != null and rejectReason != ''"> and w.reject_reason = #{rejectReason}</if> <if test="rejectReason != null and rejectReason != ''"> and w.reject_reason like concat('%', #{rejectReason}, '%')</if>
<if test="ownerName != null and ownerName != ''"> and w.owner_name like concat('%', #{ownerName}, '%')</if> <if test="ownerName != null and ownerName != ''"> and w.owner_name like concat('%', #{ownerName}, '%')</if>
<if test="ownerId != null "> and w.owner_id = #{ownerId}</if> <if test="ownerId != null "> and w.owner_id = #{ownerId}</if>
<if test="ownerPhone != null and ownerPhone != ''"> and w.owner_phone = #{ownerPhone}</if> <if test="ownerPhone != null and ownerPhone != ''"> and w.owner_phone like concat('%', #{ownerPhone}, '%')</if>
<if test="handlingCharge != null "> and w.handling_charge = #{handlingCharge}</if> <if test="handlingCharge != null "> and w.handling_charge = #{handlingCharge}</if>
<if test="cost != null "> and w.cost = #{cost}</if> <if test="cost != null "> and w.cost = #{cost}</if>
<if test="withdrawChannelId != null "> and w.withdraw_channel_id = #{withdrawChannelId}</if> <if test="withdrawChannelId != null "> and w.withdraw_channel_id = #{withdrawChannelId}</if>
<if test="handlingChargeType != null "> and w.handling_charge_type = #{handlingChargeType}</if> <if test="handlingChargeType != null "> and w.handling_charge_type = #{handlingChargeType}</if>
<if test="withdrawHandlingCharge != null "> and w.withdraw_handling_charge = #{withdrawHandlingCharge}</if> <if test="withdrawHandlingCharge != null "> and w.withdraw_handling_charge = #{withdrawHandlingCharge}</if>
</where>
${params.dataScope} ${params.dataScope}
order by create_time order by create_time
</select> </select>