xiaoyong931011
2021-06-30 b9857b9a19ae585d342b74fca6ee26277019e65c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.xzx.gc.order.mapper.OrderBatchInfoMapper">
 
    <select id="queryBatchInfoDetailList" resultType="map">
        select a.create_time as createtime,a.weight as cweight,(select c.weight from xzx_user_vehicle_info c where c.id
        = #{vehicleId} ) as vweight,'0' as orderId
        from xzx_order_clock_in_info a where a.user_id =#{userId} and a.vehicle_id=#{vehicleId}
        <if test="weightError != null and weightError != ''">
            AND a.weight-(select c.weight from xzx_user_vehicle_info c where c.id = #{vehicleId})>=#{weightError}
        </if>
        <if test="startTime != null and startTime != ''">
            AND a.create_time>=#{startTime}
        </if>
        <if test="endTime != null and endTime != ''">
            AND a.create_time&lt;=#{endTime}
        </if>
        union all
        select b.create_time as createtime, b.weight as bweight,(select c.weight from xzx_user_vehicle_info c where c.id
        = #{vehicleId} ) as vweight,
        b.order_id as orderId from xzx_order_batch_info b where b.user_id=#{userId} and b.vehicle_id=#{vehicleId}
        <if test="weightError != null and weightError != ''">
            AND b.weight-(select c.weight from xzx_user_vehicle_info c where c.id = #{vehicleId})>=#{weightError}
        </if>
        <if test="startTime != null and startTime != ''">
            AND b.create_time>=#{startTime}
        </if>
        <if test="endTime != null and endTime != ''">
            AND b.create_time&lt;=#{endTime}
        </if>
    </select>
 
 
    <select id="queryClockDetailList" resultType="map">
        select a.create_time as createtime,a.weight as cweight,(select c.weight from xzx_user_vehicle_info c where c.id
        = #{vehicleId} ) as vweight,'0' as orderId
        from xzx_order_clock_in_info a where a.user_id =#{userId} and a.vehicle_id=#{vehicleId}
        <if test="weightError != null and weightError != ''">
            AND a.weight-(select c.weight from xzx_user_vehicle_info c where c.id = #{vehicleId})>=#{weightError}
        </if>
        <if test="startTime != null and startTime != ''">
            AND a.create_time>=#{startTime}
        </if>
        <if test="endTime != null and endTime != ''">
            AND a.create_time&lt;=#{endTime}
        </if>
    </select>
    <select id="queryBatchDetailList" resultType="map">
        select b.create_time as createtime, b.weight as bweight,(select c.weight from xzx_user_vehicle_info c where c.id
        = #{vehicleId} ) as vweight,
        b.order_id as orderId from xzx_order_batch_info b where b.user_id=#{userId} and b.vehicle_id=#{vehicleId}
        <if test="weightError != null and weightError != ''">
            AND b.weight-(select c.weight from xzx_user_vehicle_info c where c.id = #{vehicleId})>=#{weightError}
        </if>
        <if test="startTime != null and startTime != ''">
            AND b.create_time>=#{startTime}
        </if>
        <if test="endTime != null and endTime != ''">
            AND b.create_time&lt;=#{endTime}
        </if>
    </select>
    <select id="queryEmptyWeight" resultType="java.util.Map">
        select a.create_time as createtime,a.weight as cweight,(select c.weight from xzx_user_vehicle_info c where c.id
        = #{vehicleId} ) as vweight,'0' as orderId
        from xzx_order_clock_in_info a where a.user_id =#{userId} and a.vehicle_id=#{vehicleId}
        <if test="weightError != null and weightError != ''">
            AND a.weight-(select c.weight from xzx_user_vehicle_info c where c.id = #{vehicleId})>=#{weightError}
        </if>
        <if test="startTime != null and startTime != ''">
            AND a.create_time>=#{startTime}
        </if>
        <if test="endTime != null and endTime != ''">
            AND a.create_time&lt;=#{endTime}
        </if>
        LIMIT 1
    </select>
 
</mapper>