| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 |
- <?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.sckw.contract.dao.KwcContractLogisticsMapper">
- <select id="queryList" resultType="com.sckw.contract.model.dto.res.QueryListResDto">
- select a.amount,
- a.charging,
- a.name contractName,
- a.contract_no,
- c.create_by initiateBy,
- c.create_time initiateTime,
- a.create_time,
- a.start_time,
- a.end_time,
- a.id,
- a.remark,
- a.signing_way,
- d.create_time signTime,
- a.status,
- b.unit_type,
- b.ent_id,
- b.firm_name entName,
- e.ent_id targetEntId,
- e.firm_name targetEntName,
- a.performed_amount performedAmount,
- a.contract_pid contractPid,
- f.name contractPname
- from kwc_contract_logistics a
- left join kwc_contract_logistics_unit b on a.id = b.contract_id
- and b.unit_type = #{entType}
- and case when a.status != 3 then b.ent_id in
- <foreach collection="allEnt" separator="," open="(" close=")" item="item">
- #{item}
- </foreach>
- else 1 = 1
- end
- and b.del_flag = 0
- left join kwc_contract_logistics_track c on a.id = c.contract_id and c.del_flag = 0 and c.type = 1
- left join kwc_contract_logistics_track d on a.id = d.contract_id and d.del_flag = 0 and d.type = 0
- left join kwc_contract_logistics_unit e on a.id = e.contract_id and e.unit_type != #{entType} and e.del_flag = 0
- left join kwc_contract_logistics f on f.id = a.contract_pid
- where a.del_flag = 0
- and case when a.status = 3 then a.ent_id = #{entId} and #{entType} = 3
- else (b.ent_id in
- <foreach collection="allEnt" separator="," open="(" close=")" item="item">
- #{item}
- </foreach>
- and b.id is not null)
- end
- <if test="startTime != null">
- and a.create_time >= #{startTime}
- </if>
- <if test="endTime != null">
- and a.create_time <= #{endTime}
- </if>
- <if test="status != null">
- and a.status = #{status}
- </if>
- <if test="charging != null">
- and a.charging = #{charging}
- </if>
- <if test="signingWay != null">
- and a.signing_way = #{signingWay}
- </if>
- <if test="keywords != null and keywords != ''">
- and (b.firm_name like concat('%', #{keywords}, '%') or
- e.firm_name like concat('%', #{keywords}, '%') or
- b.phone like concat('%', #{keywords}, '%') or
- b.sign_phone like concat('%', #{keywords}, '%') or
- a.contract_no like concat('%', #{keywords}, '%') or
- a.name like concat('%', #{keywords}, '%')
- <if test="initiateList != null and initiateList.size() > 0">
- or a.create_by in
- <foreach collection="initiateList" item="item" open="(" close=")" separator=",">
- #{item}
- </foreach>
- </if>
- )
- </if>
- <if test="idList != null and idList.size() > 0">
- and a.id in
- <foreach collection="idList" open="(" close=")" separator="," item="item">
- #{item}
- </foreach>
- </if>
- <if test="targetEntId != null">
- and e.ent_id = #{targetEntId}
- </if>
- order by a.create_time desc
- </select>
- <select id="queryLogisticsList" resultType="com.sckw.contract.model.dto.res.QueryListResDto">
- select a.amount,
- a.charging,
- a.name contractName,
- a.contract_no,
- c.create_by initiateBy,
- c.create_time initiateTime,
- a.create_time,
- a.start_time,
- a.end_time,
- a.id,
- a.remark,
- a.signing_way,
- d.create_time signTime,
- a.status,
- b.unit_type,
- b.ent_id checkedEntId,
- b.firm_name checkedEntName,
- e.ent_id carrierEntId,
- e.firm_name carrierEntName,
- a.performed_amount performedAmount,
- a.contract_pid contractPid,
- f.name contractPname
- from kwc_contract_logistics a
- left join kwc_contract_logistics_unit b on a.id = b.contract_id and b.del_flag = 0 and b.unit_type = 3
- left join kwc_contract_logistics_unit e on a.id = e.contract_id and e.del_flag = 0 and e.unit_type = 4
- left join kwc_contract_logistics_track c on a.id = c.contract_id and c.del_flag = 0 and c.type = 1
- left join kwc_contract_logistics_track d on a.id = d.contract_id and d.del_flag = 0 and d.type = 0
- left join kwc_contract_logistics f on f.id = a.contract_pid
- where a.del_flag = 0
- and a.status != 3
- <if test="authEntIdList != null and authEntIdList.size() != 0">
- and a.ent_id in
- <foreach collection="authEntIdList" separator="," close=")" open="(" item="item">
- #{item}
- </foreach>
- </if>
- <if test="reqVo.startTime != null">
- and a.create_time >= #{reqVo.startTime}
- </if>
- <if test="reqVo.endTime != null">
- and a.create_time <= #{reqVo.endTime}
- </if>
- <if test="reqVo.status != null">
- and a.status = #{reqVo.status}
- </if>
- <if test="reqVo.signingWay != null">
- and a.signing_way = #{reqVo.signingWay}
- </if>
- <if test="reqVo.charging != null">
- and a.charging = #{reqVo.charging}
- </if>
- <if test="reqVo.keywords != null and reqVo.keywords != ''">
- and (b.firm_name like concat('%', #{reqVo.keywords}, '%') or
- e.firm_name like concat('%', #{reqVo.keywords}, '%') or
- b.contacts like concat('%', #{reqVo.keywords}, '%') or
- e.contacts like concat('%', #{reqVo.keywords}, '%') or
- a.contract_no like concat('%', #{reqVo.keywords}, '%') or
- a.name like concat('%', #{reqVo.keywords}, '%'))
- </if>
- <if test="reqVo.idList != null and reqVo.idList.size() > 0">
- and a.id in
- <foreach collection="reqVo.idList" open="(" close=")" separator="," item="item">
- #{item}
- </foreach>
- </if>
- order by a.create_time desc
- </select>
- <select id="checkContractIsSole" resultType="java.lang.String">
- SELECT
- DISTINCT CONCAT(a.contract_no,b.ent_id,c.ent_id) as isSole
- FROM
- kwc_contract_logistics a
- LEFT JOIN kwc_contract_logistics_unit b ON a.id = b.contract_id
- LEFT JOIN kwc_contract_logistics_unit c ON a.id = c.contract_id
- WHERE
- a.del_flag = 0
- AND b.unit_type = 4
- AND c.unit_type = 3
- </select>
- <select id="selectIsSole" resultType="com.sckw.contract.model.entity.KwcContractLogistics">
- SELECT
- a.*
- FROM
- kwc_contract_logistics a
- LEFT JOIN kwc_contract_logistics_unit b ON a.id = b.contract_id
- LEFT JOIN kwc_contract_logistics_unit c ON a.id = c.contract_id
- WHERE
- a.del_flag = 0
- AND b.unit_type = 4
- AND c.unit_type = 3
- and b.ent_id =#{acceptId}
- and c.ent_id =#{consignId}
- and a.contract_no=#{contractNo}
- </select>
- <select id="count" resultType="java.lang.Long">
- SELECT count(1)
- FROM kwc_contract_logistics a
- LEFT JOIN kwc_contract_logistics_unit b ON a.id = b.contract_id and b.del_flag = 0 and b.unit_type = 3
- <where>
- a.del_flag = 0
- and a.status = 1
- and a.ent_id != #{entId}
- <if test="ids != null and ids.size() != 0">
- and a.ent_id in
- <foreach collection="ids" open="(" close=")" separator="," item="item">
- #{item}
- </foreach>
- </if>
- </where>
- </select>
- <select id="logisticsList" resultType="com.sckw.contract.api.model.vo.ContractVo">
- SELECT d.firm_name, a.name, a.status, a.create_time, a.amount
- FROM kwc_contract_logistics a
- LEFT JOIN kwc_contract_logistics_unit b ON a.id = b.contract_id and b.del_flag = 0 and b.unit_type = 3
- LEFT JOIN kwc_contract_logistics_unit d ON a.id = d.contract_id and d.del_flag = 0 and d.unit_type = 4
- <where>
- a.del_flag = 0
- and a.status = 1
- and a.ent_id != #{entId}
- <if test="ids != null and ids.size() != 0">
- and a.ent_id in
- <foreach collection="ids" open="(" close=")" separator="," item="item">
- #{item}
- </foreach>
- </if>
- order by a.create_time desc
- <if test="all != null and all">
- limit 10
- </if>
- </where>
- </select>
- <select id="selectSignCount" resultType="java.lang.Long">
- SELECT count(distinct a.id)
- FROM kwc_contract_logistics a
- LEFT JOIN kwc_contract_logistics_unit b ON a.id = b.contract_id and b.del_flag = 0 and b.unit_type = 3
- LEFT JOIN kwc_contract_logistics_unit d ON a.id = d.contract_id and d.del_flag = 0 and d.unit_type = 4
- <where>
- a.del_flag = 0
- and a.status = 1
- and (d.ent_id = #{entId} or b.ent_id = #{entId})
- </where>
- </select>
- </mapper>
|