12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?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="cn.ezhizao.project.business.keepAccounts.mapper.BizFinancialKeepAccountMapper">
- <!-- 基础的返回map 多表复杂的 自行组合 -->
- <resultMap id="BaseResultMap" type="cn.ezhizao.project.business.keepAccounts.domain.BizFinancialKeepAccount" >
- <result column="company_id" jdbcType="BIGINT" property="companyId"/>
- </resultMap>
- <!--带条件的List查询-->
- <select id="getList" resultMap="BaseResultMap">
- <include refid="getListSql" />
- </select>
- <!--带条件的List查询 数据总条数-->
- <select id="getTotal" resultType="java.lang.Integer">
- SELECT COUNT(1) FROM (<include refid="getListSql" />) AS t
- </select>
- <sql id="getListSql">
- SELECT
- t1.*, t2.name as company_name,
- t3.account_name as from_company_name, t2.tax_type
- from biz_financial_keep_account t1
- left join biz_company t2 on t2.id = t1.company_id
- left join biz_tenant t3 on t3.id = t1.tenant_id
- WHERE
- t1.deleted = 0
- <if test="id != null">
- AND t1.id = #{id}
- </if>
- <if test="keyword != null and keyword != ''">
- AND (t2.name like concat('%', #{keyword}, '%') or t2.code like concat('%', #{keyword}, '%'))
- </if>
- <if test="workOrderId != null and workOrderId != ''">
- AND t1.work_order_id = #{workOrderId}
- </if>
- <if test="taxType != null and taxType != ''">
- AND t2.tax_type = #{taxType}
- </if>
- <if test="fromCompanyName != null and fromCompanyName != ''">
- AND (t3.account_name like concat('%', #{fromCompanyName}, '%'))
- </if>
- <if test="month != null and year != null">
- <if test="tenantId != null">
- AND exists (select 1 from biz_entrust eb
- where eb.deleted = 0
- and (eb.to_tenant_id = #{tenantId} or eb.from_tenant_id = #{tenantId})
- and date_format(eb.current_month, '%Y%m') = concat(#{year}, #{month})
- and eb.work_order_id = t1.work_order_id
- )
- </if>
- <if test="status != null and status != 0">
- AND exists (select 1 from biz_financial_keep_account_detail fsd where fsd.financial_keep_account_id = t1.id and
- fsd.month = #{month} and fsd.year = #{year} and fsd.status = #{status})
- </if>
- <if test="status != null and status == 0">
- AND not exists (select 1 from biz_financial_keep_account_detail fsd where fsd.financial_keep_account_id = t1.id and
- fsd.month = #{month} and fsd.year = #{year})
- </if>
- </if>
- </sql>
- <update id="updateByWorkOrderId"
- parameterType="java.util.List">
- update biz_financial_keep_account set is_stop=1
- WHERE work_order_id in
- <foreach collection="ids" item="id" index="index" open="(" separator="," close=")">
- #{id}
- </foreach>
- </update>
- </mapper>
|