From 635262464177d1bdf5becc6d37c20ec1e1d48539 Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期四, 09 一月 2025 11:47:19 +0800 Subject: [PATCH] Merge branch 'master' of http://120.76.84.145:10101/gitblit/r/java/eyes --- manage/src/main/resources/mapping/TOrderMapper.xml | 59 ++++++++++++++++++++++++++++++++++++++++++++--------------- 1 files changed, 44 insertions(+), 15 deletions(-) diff --git a/manage/src/main/resources/mapping/TOrderMapper.xml b/manage/src/main/resources/mapping/TOrderMapper.xml index b0b423f..750e168 100644 --- a/manage/src/main/resources/mapping/TOrderMapper.xml +++ b/manage/src/main/resources/mapping/TOrderMapper.xml @@ -62,41 +62,70 @@ where o.id = #{orderId} and o.isDelete = 0 </select> <select id="pageList" resultType="com.jilongda.manage.model.TOrder"> - select * from t_order + select o.id, o.code, o.userId, o.optometryId, o.storeId, o.color, o.series, o.rLens, o.lLens, o.`type`, o.refractiveIndex, o.createTime, o.updateTime, o.createBy, + o.updateBy, o.isDelete, o.sysId, o.couponId, o.itemsId, o.remark, o.isMail, o.mailName, o.mailPhone, o.mailAddress, o.orderMoney, o.couponMoney, o.payMoney, + o.isMachining, o.machiningCode, o.isAccounting, o.accountingName, o.accountingTime,o.phone, o.realName, o.age, o.gender,o.payTypeName + from t_order o + left join t_order_goods tog on o.id = tog.orderId where 1=1 <if test="query.startTime != null and query.startTime != '' and query.endTime != null and query.endTime != ''"> - and createTime between #{query.startTime} and #{query.endTime} + and o.createTime between #{query.startTime} and #{query.endTime} </if> - <if test="query.startMoney != null "> - and orderMoney between #{query.startMoney} and #{query.endMoney} + <if test="query.startMoney != null "> + and o.orderMoney between #{query.startMoney} and #{query.endMoney} </if> <if test="query.realName != null and query.realName != ''"> - and realName like concat('%',#{query.realName},'%') + and o.realName like concat('%',#{query.realName},'%') </if> - <if test="query.phone != null and query.phone != ''"> - and phone like concat('%',#{query.phone},'%') + <if test="query.wxName != null and query.wxName != ''"> + and o.`name` like concat('%',#{query.wxName},'%') + </if> + <if test="query.phone != null and query.phone != ''"> + and o.phone like concat('%',#{query.phone},'%') + </if> + <if test="query.brandFrame != null and query.brandFrame != ''"> + and tog.brandName = #{query.brandFrame} + </if> + <if test="query.modelName != null and query.modelName != ''"> + and tog.modelName = #{query.modelName} + </if> + <if test="query.color != null and query.color != ''"> + and tog.color = #{query.color} + </if> + <if test="query.brandLens != null and query.brandLens != ''"> + and tog.brandName = #{query.brandLens} + </if> + <if test="query.series != null and query.series != ''"> + and tog.seriesName = #{query.series} + </if> + <if test="query.type != null"> + and tog.type = #{query.type} + </if> + <if test="query.refractiveIndex != null and query.refractiveIndex != ''"> + and tog.refractiveIndex = #{query.refractiveIndex} </if> <if test="query.storeId != null"> - and storeId = #{query.storeId} + and o.storeId = #{query.storeId} </if> <if test="query.sysId != null"> - and sysId = #{query.sysId} + and o.sysId = #{query.sysId} </if> - <if test="query.userId != null"> - and userId = #{query.userId} + <if test="query.userId != null"> + and o.userId = #{query.userId} </if> <if test="query.userIds != null and query.userIds.size()>0"> - AND userId IN + AND o.userId IN <foreach collection="query.userIds" close=")" open="(" item="id" separator=","> #{id} </foreach> </if> - <if test="query.orderIds != null and query.orderIds.size()>0"> - AND id IN + <if test="query.orderIds != null and query.orderIds.size()>0"> + AND o.id IN <foreach collection="query.orderIds" close=")" open="(" item="id" separator=","> #{id} </foreach> </if> - order by createTime desc + group by o.id + order by o.createTime desc </select> </mapper> -- Gitblit v1.7.1