TSalaryAccountMapper.xml 46.4 KB
Newer Older
hongguangwu's avatar
hongguangwu committed
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
<?xml version="1.0" encoding="UTF-8"?>

<!--
  ~
  ~      Copyright (c) 2018-2025, lengleng All rights reserved.
  ~
  ~  Redistribution and use in source and binary forms, with or without
  ~  modification, are permitted provided that the following conditions are met:
  ~
  ~ Redistributions of source code must retain the above copyright notice,
  ~  this list of conditions and the following disclaimer.
  ~  Redistributions in binary form must reproduce the above copyright
  ~  notice, this list of conditions and the following disclaimer in the
  ~  documentation and/or other materials provided with the distribution.
  ~  Neither the name of the yifu4cloud.com developer nor the names of its
  ~  contributors may be used to endorse or promote products derived from
  ~  this software without specific prior written permission.
  ~  Author: lengleng (wangiegie@gmail.com)
  ~
  -->

<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<mapper namespace="com.yifu.cloud.plus.v1.yifu.salary.mapper.TSalaryAccountMapper">

  <resultMap id="tSalaryAccountMap" type="com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryAccount">
    <id property="id" column="ID"/>
    <result property="invoiceTitle" column="INVOICE_TITLE"/>
    <result property="salaryFormId" column="SALARY_FORM_ID"/>
    <result property="salaryMonth" column="SALARY_MONTH"/>
    <result property="empId" column="EMP_ID"/>
    <result property="empName" column="EMP_NAME"/>
    <result property="empIdcard" column="EMP_IDCARD"/>
    <result property="bankNo" column="BANK_NO"/>
    <result property="bankName" column="BANK_NAME"/>
    <result property="deptId" column="DEPT_ID"/>
    <result property="deptNo" column="DEPT_NO"/>
    <result property="deptName" column="DEPT_NAME"/>
    <result property="salaryStyle" column="SALARY_STYLE"/>
    <result property="salaryGiveTime" column="SALARY_GIVE_TIME"/>
    <result property="distributionFlag" column="DISTRIBUTION_FLAG"/>
    <result property="deduSocialMonth" column="DEDU_SOCIAL_MONTH"/>
    <result property="deduProvidentMonth" column="DEDU_PROVIDENT_MONTH"/>
    <result property="formType" column="FORM_TYPE"/>
    <result property="settlementMonth" column="SETTLEMENT_MONTH"/>
    <result property="deleteFlag" column="DELETE_FLAG"/>
    <result property="socialPriority" column="SOCIAL_PRIORITY"/>
    <result property="fundPriority" column="FUND_PRIORITY"/>
    <result property="annualBonusType" column="ANNUAL_BONUS_TYPE"/>
    <result property="taxMonth" column="TAX_MONTH"/>
    <result property="isDeductSocial" column="IS_DEDUCT_SOCIAL"/>
    <result property="isDeductFund" column="IS_DEDUCT_FUND"/>
    <result property="province" column="PROVINCE"/>
    <result property="city" column="CITY"/>
    <result property="town" column="TOWN"/>
    <result property="empPhone" column="EMP_PHONE"/>
    <result property="ownFlag" column="OWN_FLAG"/>
    <result property="isRepeat" column="IS_REPEAT"/>
    <result property="bankSubName" column="BANK_SUB_NAME"/>
    <result property="bankProvince" column="BANK_PROVINCE"/>
    <result property="bankCity" column="BANK_CITY"/>
    <result property="isPersonTax" column="IS_PERSON_TAX"/>
    <result property="relaySalary" column="RELAY_SALARY"/>
    <result property="actualSalary" column="ACTUAL_SALARY"/>
    <result property="salaryTax" column="SALARY_TAX"/>
    <result property="relaySalaryUnit" column="RELAY_SALARY_UNIT"/>
    <result property="salaryTaxUnit" column="SALARY_TAX_UNIT"/>
hongguangwu's avatar
hongguangwu committed
68 69
	<result property="haveSalaryFlag" column="HAVE_SALARY_FLAG"/>
	<result property="haveSpecialFlag" column="HAVE_SPECIAL_FLAG"/>
hongguangwu's avatar
hongguangwu committed
70 71 72 73 74
	<result property="createBy" column="CREATE_BY"/>
	<result property="createName" column="CREATE_NAME"/>
	<result property="createTime" column="CREATE_TIME"/>
	<result property="updateBy" column="UPDATE_BY"/>
	<result property="updateTime" column="UPDATE_TIME"/>
hongguangwu's avatar
hongguangwu committed
75 76 77 78 79
	<result property="sendStatus" column="SEND_STATUS"/>
	<result property="sendTime" column="SEND_TIME"/>
	<result property="sendUser" column="SEND_USER"/>
	<result property="sendUserName" column="SEND_USER_NAME"/>
	<result property="sendMonth" column="SEND_MONTH"/>
80
	<result property="orderId" column="ORDER_ID"/>
hongguangwu's avatar
hongguangwu committed
81 82 83 84 85 86 87 88 89 90 91 92 93

	<result property="unitSocial" column="UNIT_SOCIAL"/>
	<result property="personSocial" column="PERSON_SOCIAL"/>
	<result property="unitFund" column="UNIT_FUND"/>
	<result property="personFund" column="PERSON_FUND"/>
	<result property="costReduction" column="COST_REDUCTION"/>
	<result property="annualBonusTax" column="ANNUAL_BONUS_TAX"/>
	<result property="sumChildEduMoney" column="SUM_CHILD_EDU_MONEY"/>
	<result property="sumHousingLoanMoney" column="SUM_HOUSING_LOAN_MONEY"/>
	<result property="sumHousingRentMoney" column="SUM_HOUSING_RENT_MONEY"/>
	<result property="sumSupportElderlyMoney" column="SUM_SUPPORT_ELDERLY_MONEY"/>
	<result property="sumContinuingEducationMoney" column="SUM_CONTINUING_EDUCATION_MONEY"/>
	<result property="sumBabyMoney" column="SUM_BABY_MONEY"/>
94
	<result property="sumPrivatePension" column="SUM_PRIVATE_PENSION"/>
huyuchen's avatar
huyuchen committed
95 96 97 98
	<result property="incomeSettleFlag" column="INCOME_SETTLE_FLAG"/>
	<result property="incomeCollectFlag" column="INCOME_COLLECT_FLAG"/>
	<result property="paySettleFlag" column="PAY_COLLECT_FLAG"/>
	<result property="payCollectFlag" column="PAY_SETTLE_FLAG"/>
hongguangwu's avatar
hongguangwu committed
99
  </resultMap>
hongguangwu's avatar
hongguangwu committed
100

101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
	<!-- B端薪酬第一个统计列表 -->
	<resultMap id="settlementFormVoMap" type="com.yifu.cloud.plus.v1.yifu.salary.vo.SettlementFormVo">
		<result property="salaryMonth" column="SALARY_MONTH"/>
		<result property="personTime" column="PERSON_TIME"/>
		<result property="salarySum" column="SALARY_SUM"/>
		<result property="cardPay" column="CARD_PAY"/>
		<result property="laborCosts" column="LABOR_COSTS"/>
	</resultMap>

	<!-- B端工资报账信息 -->
	<resultMap id="salaryAccountAndItemVoMap" type="com.yifu.cloud.plus.v1.yifu.salary.vo.SalaryAccountAndItemVo">
		<id property="id" column="ID"/>
		<result property="salaryDate" column="SALARY_DATE"/>
		<result property="empName" column="EMP_NAME"/>
		<result property="empIdcard" column="EMP_IDCARD"/>
		<result property="salaryGiveTime" column="SALARY_GIVE_TIME"/>
		<result property="distributionFlag" column="DISTRIBUTION_FLAG"/>
		<result property="deduSocialMonth" column="DEDU_SOCIAL_MONTH"/>
		<result property="deduProvidentMonth" column="DEDU_PROVIDENT_MONTH"/>
		<result property="salaryType" column="SALARY_TYPE"/>
		<result property="settlementMonth" column="SETTLEMENT_MONTH"/>
		<result property="relaySalary" column="RELAY_SALARY"/>
		<result property="actualSalarySum" column="ACTUAL_SALARY_SUM"/>
		<result property="salaryTax" column="SALARY_TAX"/>
		<result property="unitSocial" column="UNIT_SOCIAL"/>
		<result property="personalSocial" column="PERSONAL_SOCIAL"/>
		<result property="unitFund" column="UNIT_FUND"/>
		<result property="personalFund" column="PERSONAL_FUND"/>
		<result property="revenueTime" column="REVENUE_TIME"/>
	</resultMap>

hongguangwu's avatar
hongguangwu committed
132
	<!-- 对接EKP的参数 -->
133
	<resultMap id="ekpSalaryParamVoMap" type="com.yifu.cloud.plus.v1.yifu.ekp.vo.EkpSalaryParamVo">
hongguangwu's avatar
hongguangwu committed
134
		<result property="fd_3b10af838eab5c" column="fd_3b10af838eab5c"/>
hongguangwu's avatar
hongguangwu committed
135 136 137 138 139 140 141 142 143
		<result property="fd_3adfedf98ccba2" column="fd_3adfedf98ccba2"/>
		<result property="fd_3adfedf9d2bf1c" column="fd_3adfedf9d2bf1c"/>
		<result property="fd_3adfedfacd65d6" column="fd_3adfedfacd65d6"/>
		<result property="fd_3adfedfb174068" column="fd_3adfedfb174068"/>
		<result property="fd_3adfedfb5a68a2" column="fd_3adfedfb5a68a2"/>
		<result property="fd_3adfedfb8f76d4" column="fd_3adfedfb8f76d4"/>
		<result property="fd_3adfedfbd23ab8" column="fd_3adfedfbd23ab8"/>
		<result property="fd_3adfedfcb17f1e" column="fd_3adfedfcb17f1e"/>
		<result property="fd_3adfedfc453cc4" column="fd_3adfedfc453cc4"/>
144
		<result property="fd_3b73de2809465a" column="fd_3b73de2809465a"/>
hongguangwu's avatar
hongguangwu committed
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
		<result property="fd_3adfee063acff0" column="fd_3adfee063acff0"/>
		<result property="fd_3adfee0690737c" column="fd_3adfee0690737c"/>
		<result property="fd_3adfee01668666" column="fd_3adfee01668666"/>
		<result property="fd_3adfedfed8bb28" column="fd_3adfedfed8bb28"/>
		<result property="fd_3adfedff3a7430" column="fd_3adfedff3a7430"/>
		<result property="fd_3adfee0009d070" column="fd_3adfee0009d070"/>
		<result property="fd_3adfee01dea2fa" column="fd_3adfee01dea2fa"/>
		<result property="fd_3adfee12cb8840" column="fd_3adfee12cb8840"/>
		<result property="fd_3adfee1374ed7a" column="fd_3adfee1374ed7a"/>
		<result property="fd_3adfee1e2b2f78" column="fd_3adfee1e2b2f78"/>
		<result property="fd_3adfee1e88723e" column="fd_3adfee1e88723e"/>
		<result property="fd_3adfee1ee24680" column="fd_3adfee1ee24680"/>
		<result property="fd_3adfee1f32fa24" column="fd_3adfee1f32fa24"/>
		<result property="fd_3adfee1f901c46" column="fd_3adfee1f901c46"/>
		<result property="fd_3adfee20fe5ba4" column="fd_3adfee20fe5ba4"/>
		<result property="fd_3af9d49d165e90" column="fd_3af9d49d165e90"/>
		<result property="fd_3afab1895feea2" column="fd_3afab1895feea2"/>
hongguangwu's avatar
hongguangwu committed
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
		<result property="fd_3adfedfa4410aa" column="fd_3adfedfa4410aa"/>
		<result property="fd_3adfee1ff1ca6a" column="fd_3adfee1ff1ca6a"/>
		<result property="fd_3adfee203f86b2" column="fd_3adfee203f86b2"/>
		<result property="fd_3adfee21802434" column="fd_3adfee21802434"/>
		<result property="fd_3adfee4ba5ad36" column="fd_3adfee4ba5ad36"/>
		<result property="fd_3adfee4c0c59ee" column="fd_3adfee4c0c59ee"/>
		<result property="fd_3adfee5dd14866" column="fd_3adfee5dd14866"/>
		<result property="fd_3adfee5e3d1638" column="fd_3adfee5e3d1638"/>
		<result property="fd_3adfeeb34ea0ea" column="fd_3adfeeb34ea0ea"/>
		<result property="fd_3adfeededfb5a6" column="fd_3adfeededfb5a6"/>
		<result property="fd_3adfeed3a20598" column="fd_3adfeed3a20598"/>
		<result property="fd_3aea30866d0c30" column="fd_3aea30866d0c30"/>
		<result property="fd_3aea309696d32e" column="fd_3aea309696d32e"/>
		<result property="fd_3adfeec6db8766" column="fd_3adfeec6db8766"/>
		<result property="fd_3adfeef8ef38fc" column="fd_3adfeef8ef38fc"/>
		<result property="fd_3adfeedd08222c" column="fd_3adfeedd08222c"/>
		<result property="fd_3aeadede4cea84" column="fd_3aeadede4cea84"/>
		<result property="fd_3aeadee1cf1266" column="fd_3aeadee1cf1266"/>
		<result property="fd_3adfeec730ec44" column="fd_3adfeec730ec44"/>
		<result property="fd_3adfeef9440ab2" column="fd_3adfeef9440ab2"/>
		<result property="fd_3adfeedd5f3cb2" column="fd_3adfeedd5f3cb2"/>
		<result property="fd_3aeadf17522642" column="fd_3aeadf17522642"/>
		<result property="fd_3aeadf17b7d03a" column="fd_3aeadf17b7d03a"/>
		<result property="fd_3adfeec782070a" column="fd_3adfeec782070a"/>
		<result property="fd_3adfeef9b9fb3e" column="fd_3adfeef9b9fb3e"/>
		<result property="fd_3adfeeddacf6d4" column="fd_3adfeeddacf6d4"/>
		<result property="fd_3aeadf182ef6a2" column="fd_3aeadf182ef6a2"/>
		<result property="fd_3aeadf1892fdb2" column="fd_3aeadf1892fdb2"/>
		<result property="fd_3adfeec7ccdd1c" column="fd_3adfeec7ccdd1c"/>
		<result property="fd_3adfeefa1eba32" column="fd_3adfeefa1eba32"/>
		<result property="fd_3adfeede08d430" column="fd_3adfeede08d430"/>
		<result property="fd_3aeadf191c62a0" column="fd_3aeadf191c62a0"/>
		<result property="fd_3aeadf1992544c" column="fd_3aeadf1992544c"/>
		<result property="fd_3af9d49d165e90" column="fd_3af9d49d165e90"/>
		<result property="fd_3afab1895feea2" column="fd_3afab1895feea2"/>
197 198 199 200 201 202 203 204
		<result property="fd_3b16ce48a9735c" column="fd_3b16ce48a9735c"/>
		<result property="fd_3b16ce4b7fc42a" column="fd_3b16ce4b7fc42a"/>
		<result property="deduSocialMonth" column="DEDU_SOCIAL_MONTH"/>
		<result property="deduProvidentMonth" column="DEDU_PROVIDENT_MONTH"/>
		<result property="unitSocial" column="unit_social"/>
		<result property="unitFund" column="unit_fund"/>
		<result property="socialSum" column="social_sum"/>
		<result property="fundSum" column="fund_sum"/>
hongguangwu's avatar
hongguangwu committed
205
		<result property="fd_3b178f0ded2114" column="fd_3b178f0ded2114"/>
hongguangwu's avatar
hongguangwu committed
206
		<result property="fd_3b3bef19b61c38" column="fd_3b3bef19b61c38"/>
hongguangwu's avatar
hongguangwu committed
207
	</resultMap>
hongguangwu's avatar
hongguangwu committed
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
    <sql id="Base_Column_List">
                a.ID,
                a.INVOICE_TITLE,
                a.SALARY_FORM_ID,
                a.SALARY_MONTH,
                a.EMP_ID,
                a.EMP_NAME,
                a.EMP_IDCARD,
                a.BANK_NO,
                a.BANK_NAME,
                a.DEPT_ID,
                a.DEPT_NO,
                a.DEPT_NAME,
                a.SALARY_STYLE,
                a.SALARY_GIVE_TIME,
                a.DISTRIBUTION_FLAG,
                a.DEDU_SOCIAL_MONTH,
                a.DEDU_PROVIDENT_MONTH,
                a.FORM_TYPE,
                a.SETTLEMENT_MONTH,
                a.DELETE_FLAG,
                a.SOCIAL_PRIORITY,
                a.FUND_PRIORITY,
                a.ANNUAL_BONUS_TYPE,
                a.TAX_MONTH,
                a.IS_DEDUCT_SOCIAL,
                a.IS_DEDUCT_FUND,
                a.PROVINCE,
                a.CITY,
                a.TOWN,
                a.EMP_PHONE,
                a.OWN_FLAG,
                a.IS_REPEAT,
                a.BANK_SUB_NAME,
                a.BANK_PROVINCE,
                a.BANK_CITY,
                a.IS_PERSON_TAX,
                a.RELAY_SALARY,
                a.ACTUAL_SALARY,
                a.SALARY_TAX,
                a.RELAY_SALARY_UNIT,
hongguangwu's avatar
hongguangwu committed
249 250
                a.SALARY_TAX_UNIT,
                a.HAVE_SALARY_FLAG,
hongguangwu's avatar
hongguangwu committed
251 252 253 254 255
                a.HAVE_SPECIAL_FLAG,
				a.CREATE_BY,
                a.CREATE_NAME,
                a.CREATE_TIME,
                a.UPDATE_BY,
hongguangwu's avatar
hongguangwu committed
256 257 258 259 260
                a.UPDATE_TIME,
                a.SEND_STATUS,
                a.SEND_TIME,
                a.SEND_USER,
                a.SEND_USER_NAME,
261
                a.SEND_MONTH,
hongguangwu's avatar
hongguangwu committed
262 263 264 265 266 267 268 269 270 271 272 273
				a.ORDER_ID,
				a.UNIT_SOCIAL,
				a.PERSON_SOCIAL,
				a.UNIT_FUND,
				a.PERSON_FUND,
				a.COST_REDUCTION,
				a.ANNUAL_BONUS_TAX,
				a.SUM_CHILD_EDU_MONEY,
				a.SUM_HOUSING_LOAN_MONEY,
				a.SUM_HOUSING_RENT_MONEY,
				a.SUM_SUPPORT_ELDERLY_MONEY,
				a.SUM_CONTINUING_EDUCATION_MONEY,
274 275
				a.SUM_BABY_MONEY,
				a.SUM_PRIVATE_PENSION
hongguangwu's avatar
hongguangwu committed
276
	</sql>
hongguangwu's avatar
hongguangwu committed
277 278 279 280 281 282 283 284
    <sql id="tSalaryAccount_where">
        <if test="tSalaryAccount != null">
                    <if test="tSalaryAccount.id != null and tSalaryAccount.id.trim() != ''">
                        AND a.ID = #{tSalaryAccount.id}
                    </if>
                    <if test="tSalaryAccount.invoiceTitle != null and tSalaryAccount.invoiceTitle.trim() != ''">
                        AND a.INVOICE_TITLE = #{tSalaryAccount.invoiceTitle}
                    </if>
285 286 287
					<if test="tSalaryAccount.orderId != null and tSalaryAccount.orderId.trim() != ''">
						AND a.ORDER_ID = #{tSalaryAccount.orderId}
					</if>
hongguangwu's avatar
hongguangwu committed
288 289 290 291 292 293
                    <if test="tSalaryAccount.salaryFormId != null and tSalaryAccount.salaryFormId.trim() != ''">
                        AND a.SALARY_FORM_ID = #{tSalaryAccount.salaryFormId}
                    </if>
                    <if test="tSalaryAccount.salaryMonth != null and tSalaryAccount.salaryMonth.trim() != ''">
                        AND a.SALARY_MONTH = #{tSalaryAccount.salaryMonth}
                    </if>
294 295 296 297 298 299
					<if test="tSalaryAccount.salaryMonthStart != null and tSalaryAccount.salaryMonthStart.trim() != ''">
						AND a.SALARY_MONTH >= #{tSalaryAccount.salaryMonthStart}
					</if>
					<if test="tSalaryAccount.salaryMonthEnd != null and tSalaryAccount.salaryMonthEnd.trim() != ''">
						AND a.SALARY_MONTH <![CDATA[<=]]> #{tSalaryAccount.salaryMonthEnd}
					</if>
hongguangwu's avatar
hongguangwu committed
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
                    <if test="tSalaryAccount.empId != null and tSalaryAccount.empId.trim() != ''">
                        AND a.EMP_ID = #{tSalaryAccount.empId}
                    </if>
                    <if test="tSalaryAccount.empName != null and tSalaryAccount.empName.trim() != ''">
                        AND a.EMP_NAME = #{tSalaryAccount.empName}
                    </if>
                    <if test="tSalaryAccount.empIdcard != null and tSalaryAccount.empIdcard.trim() != ''">
                        AND a.EMP_IDCARD = #{tSalaryAccount.empIdcard}
                    </if>
                    <if test="tSalaryAccount.bankNo != null and tSalaryAccount.bankNo.trim() != ''">
                        AND a.BANK_NO = #{tSalaryAccount.bankNo}
                    </if>
                    <if test="tSalaryAccount.bankName != null and tSalaryAccount.bankName.trim() != ''">
                        AND a.BANK_NAME = #{tSalaryAccount.bankName}
                    </if>
                    <if test="tSalaryAccount.deptId != null and tSalaryAccount.deptId.trim() != ''">
                        AND a.DEPT_ID = #{tSalaryAccount.deptId}
                    </if>
                    <if test="tSalaryAccount.deptNo != null and tSalaryAccount.deptNo.trim() != ''">
                        AND a.DEPT_NO = #{tSalaryAccount.deptNo}
                    </if>
                    <if test="tSalaryAccount.deptName != null and tSalaryAccount.deptName.trim() != ''">
                        AND a.DEPT_NAME = #{tSalaryAccount.deptName}
                    </if>
                    <if test="tSalaryAccount.salaryStyle != null and tSalaryAccount.salaryStyle.trim() != ''">
                        AND a.SALARY_STYLE = #{tSalaryAccount.salaryStyle}
                    </if>
                    <if test="tSalaryAccount.salaryGiveTime != null and tSalaryAccount.salaryGiveTime.trim() != ''">
                        AND a.SALARY_GIVE_TIME = #{tSalaryAccount.salaryGiveTime}
                    </if>
                    <if test="tSalaryAccount.distributionFlag != null and tSalaryAccount.distributionFlag.trim() != ''">
                        AND a.DISTRIBUTION_FLAG = #{tSalaryAccount.distributionFlag}
                    </if>
                    <if test="tSalaryAccount.deduSocialMonth != null and tSalaryAccount.deduSocialMonth.trim() != ''">
                        AND a.DEDU_SOCIAL_MONTH = #{tSalaryAccount.deduSocialMonth}
                    </if>
                    <if test="tSalaryAccount.deduProvidentMonth != null and tSalaryAccount.deduProvidentMonth.trim() != ''">
                        AND a.DEDU_PROVIDENT_MONTH = #{tSalaryAccount.deduProvidentMonth}
                    </if>
                    <if test="tSalaryAccount.formType != null and tSalaryAccount.formType.trim() != ''">
                        AND a.FORM_TYPE = #{tSalaryAccount.formType}
                    </if>
                    <if test="tSalaryAccount.settlementMonth != null and tSalaryAccount.settlementMonth.trim() != ''">
                        AND a.SETTLEMENT_MONTH = #{tSalaryAccount.settlementMonth}
                    </if>
                    <if test="tSalaryAccount.deleteFlag != null">
                        AND a.DELETE_FLAG = #{tSalaryAccount.deleteFlag}
                    </if>
                    <if test="tSalaryAccount.socialPriority != null and tSalaryAccount.socialPriority.trim() != ''">
                        AND a.SOCIAL_PRIORITY = #{tSalaryAccount.socialPriority}
                    </if>
                    <if test="tSalaryAccount.fundPriority != null and tSalaryAccount.fundPriority.trim() != ''">
                        AND a.FUND_PRIORITY = #{tSalaryAccount.fundPriority}
                    </if>
                    <if test="tSalaryAccount.annualBonusType != null and tSalaryAccount.annualBonusType.trim() != ''">
                        AND a.ANNUAL_BONUS_TYPE = #{tSalaryAccount.annualBonusType}
                    </if>
                    <if test="tSalaryAccount.taxMonth != null and tSalaryAccount.taxMonth.trim() != ''">
                        AND a.TAX_MONTH = #{tSalaryAccount.taxMonth}
                    </if>
                    <if test="tSalaryAccount.isDeductSocial != null and tSalaryAccount.isDeductSocial.trim() != ''">
                        AND a.IS_DEDUCT_SOCIAL = #{tSalaryAccount.isDeductSocial}
                    </if>
                    <if test="tSalaryAccount.isDeductFund != null and tSalaryAccount.isDeductFund.trim() != ''">
                        AND a.IS_DEDUCT_FUND = #{tSalaryAccount.isDeductFund}
                    </if>
                    <if test="tSalaryAccount.province != null">
                        AND a.PROVINCE = #{tSalaryAccount.province}
                    </if>
                    <if test="tSalaryAccount.city != null">
                        AND a.CITY = #{tSalaryAccount.city}
                    </if>
                    <if test="tSalaryAccount.town != null">
                        AND a.TOWN = #{tSalaryAccount.town}
                    </if>
                    <if test="tSalaryAccount.empPhone != null and tSalaryAccount.empPhone.trim() != ''">
                        AND a.EMP_PHONE = #{tSalaryAccount.empPhone}
                    </if>
                    <if test="tSalaryAccount.ownFlag != null">
                        AND a.OWN_FLAG = #{tSalaryAccount.ownFlag}
                    </if>
                    <if test="tSalaryAccount.isRepeat != null">
                        AND a.IS_REPEAT = #{tSalaryAccount.isRepeat}
                    </if>
                    <if test="tSalaryAccount.bankSubName != null and tSalaryAccount.bankSubName.trim() != ''">
                        AND a.BANK_SUB_NAME = #{tSalaryAccount.bankSubName}
                    </if>
                    <if test="tSalaryAccount.bankProvince != null">
                        AND a.BANK_PROVINCE = #{tSalaryAccount.bankProvince}
                    </if>
                    <if test="tSalaryAccount.bankCity != null">
                        AND a.BANK_CITY = #{tSalaryAccount.bankCity}
                    </if>
                    <if test="tSalaryAccount.isPersonTax != null and tSalaryAccount.isPersonTax.trim() != ''">
                        AND a.IS_PERSON_TAX = #{tSalaryAccount.isPersonTax}
                    </if>
                    <if test="tSalaryAccount.relaySalary != null">
                        AND a.RELAY_SALARY = #{tSalaryAccount.relaySalary}
                    </if>
                    <if test="tSalaryAccount.actualSalary != null">
                        AND a.ACTUAL_SALARY = #{tSalaryAccount.actualSalary}
                    </if>
                    <if test="tSalaryAccount.salaryTax != null">
                        AND a.SALARY_TAX = #{tSalaryAccount.salaryTax}
                    </if>
                    <if test="tSalaryAccount.relaySalaryUnit != null">
                        AND a.RELAY_SALARY_UNIT = #{tSalaryAccount.relaySalaryUnit}
                    </if>
                    <if test="tSalaryAccount.salaryTaxUnit != null">
                        AND a.SALARY_TAX_UNIT = #{tSalaryAccount.salaryTaxUnit}
hongguangwu's avatar
hongguangwu committed
410 411 412
                    </if>
					<if test="tSalaryAccount.sendStatus != null">
                        AND a.SEND_STATUS = #{tSalaryAccount.sendStatus}
hongguangwu's avatar
hongguangwu committed
413 414 415 416 417 418 419
                    </if>
        </if>
    </sql>
    <!--tSalaryAccount简单分页查询-->
    <select id="getTSalaryAccountPage" resultMap="tSalaryAccountMap">
        SELECT
        <include refid="Base_Column_List"/>
420 421 422 423 424 425 426
        FROM
			<if test="tSalaryAccount.salaryMonthStart == null or tSalaryAccount.salaryMonthStart.trim() >= '202201' ">
				t_salary_account a
			</if>
			<if test="tSalaryAccount.salaryMonthStart != null and tSalaryAccount.salaryMonthStart.trim() &lt; '202201' ">
				t_salary_account_hro_2021 a
			</if>
hongguangwu's avatar
hongguangwu committed
427
        <where>
hongguangwu's avatar
hongguangwu committed
428 429 430 431
			a.DELETE_FLAG = 0
			and not EXISTS (
				select 1 from t_dept_see d where a.DEPT_NO = d.DEPT_NO and d.CAN_SEE = 1
			)
hongguangwu's avatar
hongguangwu committed
432
			<include refid="tSalaryAccount_where"/>
433 434 435
			<if test="tSalaryAccount.authSql != null and tSalaryAccount.authSql.trim() != ''">
				${tSalaryAccount.authSql}
			</if>
hongguangwu's avatar
hongguangwu committed
436
        </where>
hongguangwu's avatar
hongguangwu committed
437
		order by a.CREATE_TIME desc
hongguangwu's avatar
hongguangwu committed
438
    </select>
439

fangxinjiang's avatar
fangxinjiang committed
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
	<!--tSalaryAccount简单分页查询-->
	<select id="getTSalaryAccountPageDiy" resultMap="tSalaryAccountMap">
		SELECT
		<include refid="Base_Column_List"/>
		FROM (select * from t_salary_account
		<if test="null != page and null != size">
			limit #{page},#{size}
		</if>
		) a
		LEFT JOIN t_dept_see d ON a.DEPT_NO = d.DEPT_NO
		<where>
			a.DELETE_FLAG = 0 AND (d.CAN_SEE = 0 OR d.id is null)
			<include refid="tSalaryAccount_where"/>
			<if test="tSalaryAccount.authSql != null and tSalaryAccount.authSql.trim() != ''">
				${tSalaryAccount.authSql}
			</if>
		</where>
		order by a.CREATE_TIME desc
	</select>
	<select id="getTSalaryAccountPageCountDiy" resultType="java.lang.Long">
		SELECT
		count(1)
		FROM t_salary_account a
		LEFT JOIN t_dept_see d ON a.DEPT_NO = d.DEPT_NO
		<where>
			a.DELETE_FLAG = 0 AND (d.CAN_SEE = 0 OR d.id is null)
			<include refid="tSalaryAccount_where"/>
			<if test="tSalaryAccount.authSql != null and tSalaryAccount.authSql.trim() != ''">
				${tSalaryAccount.authSql}
			</if>
		</where>
		order by a.CREATE_TIME desc
	</select>
473 474 475
	<!-- 获取校验的报账明细 ### 格式:身份证号_工资月份_报表类型_应发金额 -->
	<select id="getAccountCheckList" resultType="com.yifu.cloud.plus.v1.yifu.salary.vo.AccountCheckVo">
		select
hongguangwu's avatar
hongguangwu committed
476
			CONCAT(a.EMP_IDCARD,"_",a.SALARY_MONTH,"_",a.FORM_TYPE) title,ifnull(ifnull(relaySalary.SALARY_MONEY,actSalary.SALARY_MONEY),0) relaySalary
477 478 479
		from t_salary_account a
				 left join t_salary_account_item relaySalary on relaySalary.SALARY_ACCOUNT_ID = a.id and relaySalary.JAVA_FIED_NAME='relaySalary'
				 left join t_salary_account_item actSalary on actSalary.SALARY_ACCOUNT_ID = a.id and actSalary.JAVA_FIED_NAME='actualSalarySum'
480
		where a.DELETE_FLAG = 0 and a.DEPT_ID = #{settleId} and a.SALARY_MONTH = #{settleMonth}
481 482
	</select>

hongguangwu's avatar
hongguangwu committed
483 484 485
	<!-- 获取校验的报账明细 ### 格式:身份证号_工资月份_报表类型_应发金额 -->
	<select id="getAccountSpecialList" resultType="com.yifu.cloud.plus.v1.yifu.salary.vo.AccountCheckVo">
		select
hongguangwu's avatar
hongguangwu committed
486
			a.EMP_IDCARD title,sum(ifnull(relaySalary.SALARY_MONEY,0)) relaySalary
hongguangwu's avatar
hongguangwu committed
487
		from t_salary_account a
hongguangwu's avatar
hongguangwu committed
488
		left join t_salary_standard s on a.SALARY_FORM_ID = s.id
hongguangwu's avatar
hongguangwu committed
489
		left join t_salary_account_item relaySalary on relaySalary.SALARY_ACCOUNT_ID = a.id and relaySalary.JAVA_FIED_NAME='relaySalary'
hongguangwu's avatar
hongguangwu committed
490
		where a.DELETE_FLAG = 0 and s.UNIT_ID = #{unitId} and a.SALARY_MONTH = #{salaryMonth} and a.INVOICE_TITLE = #{invoiceTitle}
491
		and a.FORM_TYPE !='3' and a.FORM_TYPE !='4'
hongguangwu's avatar
hongguangwu committed
492
		group by a.EMP_IDCARD
hongguangwu's avatar
hongguangwu committed
493 494
	</select>

huyuchen's avatar
huyuchen committed
495 496 497 498 499 500 501 502 503
	<!-- 获取校验的报账明细 ### 格式:身份证号_工资月份_报表类型_应发金额 -->
	<select id="getAccountCheckListLabor" resultType="com.yifu.cloud.plus.v1.yifu.salary.vo.AccountCheckVo">
		select
			CONCAT(a.EMP_IDCARD,"_",a.SALARY_MONTH,"_",a.FORM_TYPE) title,ifnull(actSalary.SALARY_MONEY,0) relaySalary
		from t_salary_account a
				 left join t_salary_account_item actSalary on actSalary.SALARY_ACCOUNT_ID = a.id and actSalary.JAVA_FIED_NAME='actualSalarySum'
		where a.DELETE_FLAG = 0 and a.DEPT_ID = #{settleId} and a.SALARY_MONTH = #{settleMonth}
	</select>

504 505 506
	<!-- 获取当前年最小计税月 -->
	<select id="getMinTaxMonthByNowYear" resultType="java.lang.String">
		select
507
			concat(min(a.TAX_MONTH - 0),'')
508 509
		from t_salary_account a
		where a.EMP_IDCARD = #{empIdCard} and a.DELETE_FLAG = 0 and a.SETTLEMENT_MONTH like concat(#{nowYear},"%")
hongguangwu's avatar
hongguangwu committed
510
		  and a.FORM_TYPE != '3' and a.FORM_TYPE != '4'
511
	</select>
fangxinjiang's avatar
fangxinjiang committed
512 513 514

	<select id="getLastMonthTHaveSalaryNosocial"  resultType="com.yifu.cloud.plus.v1.yifu.salary.entity.THaveSalaryNosocial">
		select a.EMP_ID           employee_id
515 516 517
			 , a.EMP_IDCARD       employee_id_card
			 , a.EMP_NAME         employee_name
			 , GROUP_CONCAT(a.relaySalary)    relay_salary
518
			 , a.CREATE_BY      CREATE_BY
519 520 521 522 523 524 525
			 , GROUP_CONCAT(a.SALARY_MONTH)      month
			 , a.EMP_NAME         employee_name
			 , a.EMP_IDCARD       employee_id_card
			 , a.DEPT_ID          settle_domain_id
			 , a.DEPT_NAME        SETTLEMENT_ORGAN_NAME
			 , a.DEPT_NO          SETTLEMENT_ORGAN_NO
			 , a.SETTLEMENT_MONTH SETTLE_MONTH
526
		     ,a.CREATE_NAME,a.CREATE_TIME
fangxinjiang's avatar
fangxinjiang committed
527
		from (
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
				 select a.id
					  , s.DEPT_ID
					  , s.DEPT_NAME
					  , s.DEPT_NO
					  , s.CREATE_BY
					  , a.SALARY_FORM_ID
					  , a.EMP_ID
					  , a.EMP_IDCARD
					  , a.EMP_NAME
					  , a.SALARY_MONTH
					  , a.SETTLEMENT_MONTH
					  , if(item.JAVA_FIED_NAME = 'relaySalary', item.SALARY_MONEY, 0) relaySalary
					  , sum(if(item.JAVA_FIED_NAME in
							   ('unitSocial', 'personalSocial', 'withholidingUnitSocial', 'withholidingPersonSocial'),
							   item.SALARY_MONEY, 0))                                 social
543
					  ,a.CREATE_NAME,a.CREATE_TIME
544 545 546
				 from mvp_salary.t_salary_account a
						  left join mvp_salary.t_salary_account_item item on item.SALARY_ACCOUNT_ID = a.id
						  LEFT JOIN mvp_salary.t_salary_standard s on a.SALARY_FORM_ID = s.id
fangxinjiang's avatar
fangxinjiang committed
547

548 549
				 where
					 a.DELETE_FLAG = 0
fangxinjiang's avatar
fangxinjiang committed
550 551
				   and a.FORM_TYPE='0'
				   and a.SALARY_MONTH in ( #{month} , #{month2} , #{month3})
552
				   AND s.STATUS IN (3, 4)
553
				 GROUP BY a.EMP_IDCARD, a.SALARY_MONTH
554 555 556 557
			 ) a
		where a.relaySalary > 0
		  and a.social = 0
		GROUP BY a.EMP_IDCARD  HAVING count(1) = 3
fangxinjiang's avatar
fangxinjiang committed
558
	</select>
huyuchen's avatar
huyuchen committed
559 560 561 562 563

	<!-- 薪资类型互斥校验 获取本年度身份证号列表 -->
	<select id="getAccountYearCheckList" resultType="java.lang.String">
		select a.EMP_IDCARD
		from t_salary_account a
huyuchen's avatar
huyuchen committed
564
		where a.DELETE_FLAG = 0 and a.FORM_TYPE = '0' and a.SALARY_MONTH like concat(DATE_FORMAT(NOW(), '%Y'), '%')
huyuchen's avatar
huyuchen committed
565
	</select>
hongguangwu's avatar
hongguangwu committed
566 567

	<!-- 获取薪资明细 -->
hongguangwu's avatar
hongguangwu committed
568
	<select id="getEkpSalaryParamList" resultMap="ekpSalaryParamVoMap">
hongguangwu's avatar
hongguangwu committed
569
		select
hongguangwu's avatar
hongguangwu committed
570
			ifnull(a.id,'') fd_3b10af838eab5c
hongguangwu's avatar
hongguangwu committed
571 572 573 574 575 576 577 578 579 580
			 ,ifnull(a.DEPT_NO,'') fd_3adfedf98ccba2
			 ,ifnull(a.DEPT_NAME,'') fd_3adfedf9d2bf1c
			 ,'' fd_3adfedfa4410aa
			 ,ifnull(s.UNIT_NO,'') fd_3adfedfacd65d6
			 ,ifnull(s.UNIT_NAME,'') fd_3adfedfb174068
			 ,ifnull(a.EMP_NAME,'') fd_3adfedfb5a68a2
			 ,ifnull(a.EMP_IDCARD,'') fd_3adfedfb8f76d4
			 ,ifnull(a.EMP_PHONE,'') fd_3adfedfbd23ab8
			 ,ifnull(a.BANK_NO,'') fd_3adfedfcb17f1e
			 ,ifnull(a.BANK_NAME,'') fd_3adfedfc453cc4
581
			 ,ifnull(a.BANK_SUB_NAME,'') fd_3b73de2809465a
hongguangwu's avatar
hongguangwu committed
582 583
			 ,concat(left(ifnull(a.SALARY_MONTH,'1970'),4),'-',right(ifnull(a.SALARY_MONTH,'02'),2)) fd_3adfee063acff0
			 ,concat(left(ifnull(a.SETTLEMENT_MONTH,'1970'),4),'-',right(ifnull(a.SETTLEMENT_MONTH,'02'),2)) fd_3adfee0690737c
hongguangwu's avatar
hongguangwu committed
584 585 586 587 588
			 ,'是' fd_3adfee01668666
			 ,if(a.SOCIAL_PRIORITY='1','缴纳月','生成月') fd_3adfedfed8bb28
			 ,if(a.FUND_PRIORITY='1','缴纳月','生成月') fd_3adfedff3a7430
			 ,if(a.OWN_FLAG='1','是','否') fd_3adfee0009d070
			 ,if(a.ANNUAL_BONUS_TYPE='1','单独','合并') fd_3adfee01dea2fa
hongguangwu's avatar
hongguangwu committed
589
			 ,ifnull(a.RELAY_SALARY,'0') fd_3adfee12cb8840
590
			 ,ifnull(sum(ifnull(pdeduction.SALARY_MONEY,0))+ifnull(exemptionPersionTax.SALARY_MONEY,0),'') fd_3adfee1374ed7a
hongguangwu's avatar
hongguangwu committed
591 592 593 594
			 ,ifnull(ifnull(withholidingUnitSocial.SALARY_MONEY,unitSocial.SALARY_MONEY),'') fd_3adfee1e2b2f78
			 ,ifnull(ifnull(withholidingPersonSocial.SALARY_MONEY,personalSocial.SALARY_MONEY),'') fd_3adfee1e88723e
			 ,ifnull(ifnull(withholidingUnitFund.SALARY_MONEY,unitFund.SALARY_MONEY),'') fd_3adfee1ee24680
			 ,ifnull(ifnull(withholidingPersonFund.SALARY_MONEY,personalFund.SALARY_MONEY),'') fd_3adfee1f32fa24
595
			 ,ifnull(a.SALARY_TAX,'0') + ifnull(a.SALARY_TAX_UNIT,'0') + ifnull(a.ANNUAL_BONUS_TAX,'0') fd_3adfee1f901c46
596 597
			 ,ifnull(enterpriseAnnuityUnit.SALARY_MONEY,'0') fd_3adfee1ff1ca6a
			 ,ifnull(enterpriseAnnuity.SALARY_MONEY,'0') fd_3adfee203f86b2
hongguangwu's avatar
hongguangwu committed
598
			 ,ifnull(a.ACTUAL_SALARY,'0') fd_3adfee20fe5ba4
599
			 ,ifnull(a.RELAY_SALARY,'0') - ifnull(ifnull(withholidingPersonSocial.SALARY_MONEY,personalSocial.SALARY_MONEY),'0') - ifnull(ifnull(withholidingPersonFund.SALARY_MONEY,personalFund.SALARY_MONEY),'') fd_3adfee21802434
hongguangwu's avatar
hongguangwu committed
600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628
			 ,'' fd_3adfee4ba5ad36
			 ,'' fd_3adfee4c0c59ee
			 ,'' fd_3adfee5dd14866
			 ,'' fd_3adfee5e3d1638
			 ,'' fd_3adfeeb34ea0ea
			 ,'' fd_3adfeededfb5a6
			 ,'' fd_3adfeed3a20598
			 ,'' fd_3aea30866d0c30
			 ,'' fd_3aea309696d32e
			 ,'' fd_3adfeec6db8766
			 ,'' fd_3adfeef8ef38fc
			 ,'' fd_3adfeedd08222c
			 ,'' fd_3aeadede4cea84
			 ,'' fd_3aeadee1cf1266
			 ,'' fd_3adfeec730ec44
			 ,'' fd_3adfeef9440ab2
			 ,'' fd_3adfeedd5f3cb2
			 ,'' fd_3aeadf17522642
			 ,'' fd_3aeadf17b7d03a
			 ,'' fd_3adfeec782070a
			 ,'' fd_3adfeef9b9fb3e
			 ,'' fd_3adfeeddacf6d4
			 ,'' fd_3aeadf182ef6a2
			 ,'' fd_3aeadf1892fdb2
			 ,'' fd_3adfeec7ccdd1c
			 ,'' fd_3adfeefa1eba32
			 ,'' fd_3adfeede08d430
			 ,'' fd_3aeadf191c62a0
			 ,'' fd_3aeadf1992544c
hongguangwu's avatar
hongguangwu committed
629
			 ,if(a.SALARY_GIVE_TIME='1','是','否') fd_3af9d49d165e90
hongguangwu's avatar
hongguangwu committed
630
			 ,ifnull(a.INVOICE_TITLE,'') fd_3afab1895feea2
631 632 633 634 635 636 637 638
			 ,ifnull(withholidingPersonSocial.SALARY_MONEY,'') fd_3b16ce48a9735c
			 ,ifnull(withholidingPersonFund.SALARY_MONEY,'') fd_3b16ce4b7fc42a
		     ,ifnull(withholidingUnitSocial.SALARY_MONEY,'') unit_social
			 ,ifnull(withholidingUnitFund.SALARY_MONEY,'') unit_fund
			 ,ifnull(withholidingUnitSocial.SALARY_MONEY,'0')+ifnull(withholidingPersonSocial.SALARY_MONEY,'0') social_sum
			 ,ifnull(withholidingUnitFund.SALARY_MONEY,'0')+ifnull(withholidingPersonFund.SALARY_MONEY,'0') fund_sum
			 ,concat(left(ifnull(a.DEDU_SOCIAL_MONTH,'1970'),4),'-',right(ifnull(a.DEDU_SOCIAL_MONTH,'02'),2)) DEDU_SOCIAL_MONTH
			 ,concat(left(ifnull(a.DEDU_PROVIDENT_MONTH,'1970'),4),'-',right(ifnull(a.DEDU_PROVIDENT_MONTH,'02'),2)) DEDU_PROVIDENT_MONTH
hongguangwu's avatar
hongguangwu committed
639
			,ifnull(s.BPO_FLAG,'') fd_3b178f0ded2114
640
			,ifnull(s.APPLY_NO,'') fd_3b3bef19b61c38
hongguangwu's avatar
hongguangwu committed
641 642 643 644 645 646 647 648 649 650 651 652
		from t_salary_account a
			 LEFT JOIN t_salary_standard s on a.SALARY_FORM_ID=s.ID
			 left join t_salary_account_item withholidingPersonSocial on withholidingPersonSocial.SALARY_ACCOUNT_ID = a.id and withholidingPersonSocial.JAVA_FIED_NAME='withholidingPersonSocial'
			 left join t_salary_account_item withholidingPersonFund on withholidingPersonFund.SALARY_ACCOUNT_ID = a.id and withholidingPersonFund.JAVA_FIED_NAME='withholidingPersonFund'
			 left join t_salary_account_item personalSocial on personalSocial.SALARY_ACCOUNT_ID = a.id and personalSocial.JAVA_FIED_NAME='personalSocial'
			 left join t_salary_account_item personalFund on personalFund.SALARY_ACCOUNT_ID = a.id and personalFund.JAVA_FIED_NAME='personalFund'
			 left join t_salary_account_item exemptionPersionTax on exemptionPersionTax.SALARY_ACCOUNT_ID = a.id and exemptionPersionTax.JAVA_FIED_NAME='exemptionPersionTax'
			 left join t_salary_account_item unitSocial on unitSocial.SALARY_ACCOUNT_ID = a.id and unitSocial.JAVA_FIED_NAME='unitSocial'
			 left join t_salary_account_item unitFund on unitFund.SALARY_ACCOUNT_ID = a.id and unitFund.JAVA_FIED_NAME='unitFund'
			 left join t_salary_account_item withholidingUnitSocial on withholidingUnitSocial.SALARY_ACCOUNT_ID = a.id and withholidingUnitSocial.JAVA_FIED_NAME='withholidingUnitSocial'
			 left join t_salary_account_item withholidingUnitFund on withholidingUnitFund.SALARY_ACCOUNT_ID = a.id and withholidingUnitFund.JAVA_FIED_NAME='withholidingUnitFund'
			 left join t_salary_account_item pdeduction on pdeduction.SALARY_ACCOUNT_ID = a.id and pdeduction.JAVA_FIED_NAME='pdeduction'
653 654
			 left join t_salary_account_item enterpriseAnnuity on enterpriseAnnuity.SALARY_ACCOUNT_ID = a.id and enterpriseAnnuity.JAVA_FIED_NAME='enterpriseAnnuity'
			 left join t_salary_account_item enterpriseAnnuityUnit on enterpriseAnnuityUnit.SALARY_ACCOUNT_ID = a.id and enterpriseAnnuityUnit.JAVA_FIED_NAME='enterpriseAnnuityUnit'
hongguangwu's avatar
hongguangwu committed
655
		where a.DELETE_FLAG = 0 and a.SALARY_FORM_ID = #{salaryId} and a.SEND_STATUS = '0'
656
		GROUP BY a.id
hongguangwu's avatar
hongguangwu committed
657 658
	</select>

659

fangxinjiang's avatar
fangxinjiang committed
660 661 662
	<select id="noPageDiy" resultMap="tSalaryAccountMap" parameterType="com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryAccount">
		SELECT
		<include refid="Base_Column_List"/>
663 664 665 666 667 668 669
		FROM
			<if test="searchVo.salaryMonthStart == null or searchVo.salaryMonthStart.trim() >= '202201'">
				t_salary_account a
			</if>
			<if test="searchVo.salaryMonthStart != null and searchVo.salaryMonthStart.trim() &lt; '202201' ">
				t_salary_account_hro_2021 a
			</if>
fangxinjiang's avatar
fangxinjiang committed
670
		<where>
hongguangwu's avatar
hongguangwu committed
671 672 673
			a.DELETE_FLAG = 0 and not EXISTS (
			select 1 from t_dept_see d where a.DEPT_NO = d.DEPT_NO and d.CAN_SEE = 1
			)
fangxinjiang's avatar
fangxinjiang committed
674
			<include refid="where_export"/>
675 676 677
			<if test="searchVo.authSql != null and searchVo.authSql.trim() != ''">
				${searchVo.authSql}
			</if>
fangxinjiang's avatar
fangxinjiang committed
678 679 680 681 682 683 684 685 686
			ORDER BY a.CREATE_TIME desc
			<if test="searchVo != null">
				<if test="searchVo.limitStart != null">
					limit #{searchVo.limitStart},#{searchVo.limitEnd}
				</if>
			</if>
		</where>

	</select>
hongguangwu's avatar
hongguangwu committed
687

688 689 690 691 692 693 694 695 696 697 698
	<select id="getAccountListBySalaryId" resultMap="tSalaryAccountMap" parameterType="com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryAccount">
		SELECT
			<include refid="Base_Column_List"/>
		FROM
			<if test="searchVo.salaryMonthStart == null or searchVo.salaryMonthStart.trim() >= '202201'">
				t_salary_account a
			</if>
			<if test="searchVo.salaryMonthStart != null and searchVo.salaryMonthStart.trim() &lt; '202201' ">
				t_salary_account_hro_2021 a
			</if>
		where a.SALARY_FORM_ID = #{searchVo.salaryFormId}
699
		ORDER BY a.ROW_INDEX ASC
700 701
	</select>

hongguangwu's avatar
hongguangwu committed
702 703 704 705 706 707 708 709 710 711
	<!-- 计算收入需要的报账明细 -->
	<select id="getListByIncome" resultMap="tSalaryAccountMap">
		SELECT
			a.ID,
			a.SALARY_MONTH,
			a.EMP_NAME,
			a.EMP_IDCARD,
			a.DEPT_ID,
			a.DEPT_NO,
			a.DEPT_NAME,
hongguangwu's avatar
hongguangwu committed
712
			ifnull(if(a.FORM_TYPE='3',a.RELAY_SALARY_UNIT,a.RELAY_SALARY),0)
hongguangwu's avatar
hongguangwu committed
713 714 715 716 717 718 719
				-ifnull(personalSocial.SALARY_MONEY,0)
				-ifnull(personalFund.SALARY_MONEY,0) RELAY_SALARY
		FROM t_salary_account a
			 left join t_salary_account_item personalSocial on personalSocial.SALARY_ACCOUNT_ID = a.id and personalSocial.JAVA_FIED_NAME='personalSocial'
			 left join t_salary_account_item personalFund on personalFund.SALARY_ACCOUNT_ID = a.id and personalFund.JAVA_FIED_NAME='personalFund'
		where a.DELETE_FLAG = 0 and a.SALARY_FORM_ID = #{salaryId}
	</select>
fangxinjiang's avatar
fangxinjiang committed
720 721 722
	<select id="noPageCountDiy"  resultType="java.lang.Integer">
		SELECT
		count(1)
723 724 725 726 727 728 729
		FROM
			<if test="searchVo.salaryMonthStart == null or searchVo.salaryMonthStart.trim() >= '202201' ">
				t_salary_account a
			</if>
			<if test="searchVo.salaryMonthStart != null and searchVo.salaryMonthStart.trim() &lt; '202201' ">
				t_salary_account_hro_2021 a
			</if>
fangxinjiang's avatar
fangxinjiang committed
730
		<where>
hongguangwu's avatar
hongguangwu committed
731 732 733
			a.DELETE_FLAG = 0 and not EXISTS (
			select 1 from t_dept_see d where a.DEPT_NO = d.DEPT_NO and d.CAN_SEE = 1
			)
fangxinjiang's avatar
fangxinjiang committed
734
			<include refid="where_export"/>
735 736 737
			<if test="searchVo.authSql != null and searchVo.authSql.trim() != ''">
				${searchVo.authSql}
			</if>
fangxinjiang's avatar
fangxinjiang committed
738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759
		</where>
	</select>
	<sql id="where_export">
		<if test="idList != null and idList.size>0">
			AND a.id in
			<foreach item="idStr" index="index" collection="idList" open="(" separator="," close=")">
				#{idStr}
			</foreach>
		</if>
		<if test="searchVo != null">
			<if test="searchVo.id != null and searchVo.id.trim() != ''">
				AND a.ID = #{searchVo.id}
			</if>
			<if test="searchVo.invoiceTitle != null and searchVo.invoiceTitle.trim() != ''">
				AND a.INVOICE_TITLE = #{searchVo.invoiceTitle}
			</if>
			<if test="searchVo.salaryFormId != null and searchVo.salaryFormId.trim() != ''">
				AND a.SALARY_FORM_ID = #{searchVo.salaryFormId}
			</if>
			<if test="searchVo.salaryMonth != null and searchVo.salaryMonth.trim() != ''">
				AND a.SALARY_MONTH = #{searchVo.salaryMonth}
			</if>
760 761 762 763 764 765
			<if test="searchVo.salaryMonthStart != null and searchVo.salaryMonthStart.trim() != ''">
				AND a.SALARY_MONTH >= #{searchVo.salaryMonthStart}
			</if>
			<if test="searchVo.salaryMonthEnd != null and searchVo.salaryMonthEnd.trim() != ''">
				AND a.SALARY_MONTH <![CDATA[<=]]> #{searchVo.salaryMonthEnd}
			</if>
fangxinjiang's avatar
fangxinjiang committed
766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878
			<if test="searchVo.empId != null and searchVo.empId.trim() != ''">
				AND a.EMP_ID = #{searchVo.empId}
			</if>
			<if test="searchVo.empName != null and searchVo.empName.trim() != ''">
				AND a.EMP_NAME = #{searchVo.empName}
			</if>
			<if test="searchVo.empIdcard != null and searchVo.empIdcard.trim() != ''">
				AND a.EMP_IDCARD = #{searchVo.empIdcard}
			</if>
			<if test="searchVo.bankNo != null and searchVo.bankNo.trim() != ''">
				AND a.BANK_NO = #{searchVo.bankNo}
			</if>
			<if test="searchVo.bankName != null and searchVo.bankName.trim() != ''">
				AND a.BANK_NAME = #{searchVo.bankName}
			</if>
			<if test="searchVo.deptId != null and searchVo.deptId.trim() != ''">
				AND a.DEPT_ID = #{searchVo.deptId}
			</if>
			<if test="searchVo.deptNo != null and searchVo.deptNo.trim() != ''">
				AND a.DEPT_NO = #{searchVo.deptNo}
			</if>
			<if test="searchVo.deptName != null and searchVo.deptName.trim() != ''">
				AND a.DEPT_NAME = #{searchVo.deptName}
			</if>
			<if test="searchVo.salaryStyle != null and searchVo.salaryStyle.trim() != ''">
				AND a.SALARY_STYLE = #{searchVo.salaryStyle}
			</if>
			<if test="searchVo.salaryGiveTime != null and searchVo.salaryGiveTime.trim() != ''">
				AND a.SALARY_GIVE_TIME = #{searchVo.salaryGiveTime}
			</if>
			<if test="searchVo.distributionFlag != null and searchVo.distributionFlag.trim() != ''">
				AND a.DISTRIBUTION_FLAG = #{searchVo.distributionFlag}
			</if>
			<if test="searchVo.deduSocialMonth != null and searchVo.deduSocialMonth.trim() != ''">
				AND a.DEDU_SOCIAL_MONTH = #{searchVo.deduSocialMonth}
			</if>
			<if test="searchVo.deduProvidentMonth != null and searchVo.deduProvidentMonth.trim() != ''">
				AND a.DEDU_PROVIDENT_MONTH = #{searchVo.deduProvidentMonth}
			</if>
			<if test="searchVo.formType != null and searchVo.formType.trim() != ''">
				AND a.FORM_TYPE = #{searchVo.formType}
			</if>
			<if test="searchVo.settlementMonth != null and searchVo.settlementMonth.trim() != ''">
				AND a.SETTLEMENT_MONTH = #{searchVo.settlementMonth}
			</if>
			<if test="searchVo.deleteFlag != null">
				AND a.DELETE_FLAG = #{searchVo.deleteFlag}
			</if>
			<if test="searchVo.socialPriority != null and searchVo.socialPriority.trim() != ''">
				AND a.SOCIAL_PRIORITY = #{searchVo.socialPriority}
			</if>
			<if test="searchVo.fundPriority != null and searchVo.fundPriority.trim() != ''">
				AND a.FUND_PRIORITY = #{searchVo.fundPriority}
			</if>
			<if test="searchVo.annualBonusType != null and searchVo.annualBonusType.trim() != ''">
				AND a.ANNUAL_BONUS_TYPE = #{searchVo.annualBonusType}
			</if>
			<if test="searchVo.taxMonth != null and searchVo.taxMonth.trim() != ''">
				AND a.TAX_MONTH = #{searchVo.taxMonth}
			</if>
			<if test="searchVo.isDeductSocial != null and searchVo.isDeductSocial.trim() != ''">
				AND a.IS_DEDUCT_SOCIAL = #{searchVo.isDeductSocial}
			</if>
			<if test="searchVo.isDeductFund != null and searchVo.isDeductFund.trim() != ''">
				AND a.IS_DEDUCT_FUND = #{searchVo.isDeductFund}
			</if>
			<if test="searchVo.province != null">
				AND a.PROVINCE = #{searchVo.province}
			</if>
			<if test="searchVo.city != null">
				AND a.CITY = #{searchVo.city}
			</if>
			<if test="searchVo.town != null">
				AND a.TOWN = #{searchVo.town}
			</if>
			<if test="searchVo.empPhone != null and searchVo.empPhone.trim() != ''">
				AND a.EMP_PHONE = #{searchVo.empPhone}
			</if>
			<if test="searchVo.ownFlag != null">
				AND a.OWN_FLAG = #{searchVo.ownFlag}
			</if>
			<if test="searchVo.isRepeat != null">
				AND a.IS_REPEAT = #{searchVo.isRepeat}
			</if>
			<if test="searchVo.bankSubName != null and searchVo.bankSubName.trim() != ''">
				AND a.BANK_SUB_NAME = #{searchVo.bankSubName}
			</if>
			<if test="searchVo.bankProvince != null">
				AND a.BANK_PROVINCE = #{searchVo.bankProvince}
			</if>
			<if test="searchVo.bankCity != null">
				AND a.BANK_CITY = #{searchVo.bankCity}
			</if>
			<if test="searchVo.isPersonTax != null and searchVo.isPersonTax.trim() != ''">
				AND a.IS_PERSON_TAX = #{searchVo.isPersonTax}
			</if>
			<if test="searchVo.relaySalary != null">
				AND a.RELAY_SALARY = #{searchVo.relaySalary}
			</if>
			<if test="searchVo.actualSalary != null">
				AND a.ACTUAL_SALARY = #{searchVo.actualSalary}
			</if>
			<if test="searchVo.salaryTax != null">
				AND a.SALARY_TAX = #{searchVo.salaryTax}
			</if>
			<if test="searchVo.relaySalaryUnit != null">
				AND a.RELAY_SALARY_UNIT = #{searchVo.relaySalaryUnit}
			</if>
			<if test="searchVo.salaryTaxUnit != null">
				AND a.SALARY_TAX_UNIT = #{searchVo.salaryTaxUnit}
			</if>
		</if>
	</sql>
hongguangwu's avatar
hongguangwu committed
879 880 881 882 883

	<!-- 退表回退状态 -->
	<update id="backSalaryBySalaryId" >
		update t_salary_account a set a.SEND_STATUS = '0' where a.SALARY_FORM_ID = #{salaryId}
	</update>
884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958

	<!-- B端薪酬第一个统计列表 -->
	<select id="getSettlementFormVoPage" resultMap="settlementFormVoMap">
		select s.SALARY_MONTH,count(1) PERSON_TIME,sum(ifnull(s.RELAY_SALARY,0)) SALARY_SUM,sum(ifnull(s.ACTUAL_SALARY,0)) CARD_PAY
		from t_salary_account s
		where s.SALARY_MONTH like '${settlementFormVo.years}%'
		<if test="settleDepartIdList != null">
			AND s.DEPT_ID in
			<foreach collection="settleDepartIdList" item="ids" open="(" separator="," close=")">
				#{ids}
			</foreach>
		</if>
		and s.DELETE_FLAG=0
		GROUP BY s.SALARY_MONTH desc
	</select>

	<!-- B端工资详情-上面的统计 -->
	<select id="getSettlementFormVoBySalaryFormId" resultMap="settlementFormVoMap">
		SELECT
			count(1) PERSON_TIME,
			sum(ifnull(s.RELAY_SALARY,0)) SALARY_SUM,
			sum(ifnull(s.ACTUAL_SALARY,0)) CARD_PAY,
			sum(ifnull(s.RELAY_SALARY,0)) + sum(ifnull(s.UNIT_SOCIAL, 0)) + sum(ifnull(s.UNIT_FUND, 0)) LABOR_COSTS
		FROM
			t_salary_account s
		where s.SALARY_FORM_ID = #{salaryFormId}
		GROUP BY s.SALARY_FORM_ID
	</select>

	<!--获取报账以及薪资 -->
	<select id="getSalaryAccountAndItemVoPage" resultMap="salaryAccountAndItemVoMap">
		select a.id,a.SALARY_MONTH SALARY_DATE,a.EMP_NAME,a.EMP_IDCARD,a.SALARY_GIVE_TIME
		,a.DISTRIBUTION_FLAG,a.DEDU_SOCIAL_MONTH,a.DEDU_PROVIDENT_MONTH
		,a.FORM_TYPE SALARY_TYPE,a.SETTLEMENT_MONTH
		,a.RELAY_SALARY RELAY_SALARY
		,a.ACTUAL_SALARY ACTUAL_SALARY_SUM
		,a.SALARY_TAX SALARY_TAX
		,a.UNIT_SOCIAL UNIT_SOCIAL
		,a.PERSON_SOCIAL PERSONAL_SOCIAL
		,a.UNIT_FUND UNIT_FUND
		,a.PERSON_FUND PERSONAL_FUND
		,a.SEND_TIME REVENUE_TIME
		from t_salary_account a
		where a.DELETE_FLAG = 0
		<if test="salaryAccountAndItemVo.salaryFormId != null and salaryAccountAndItemVo.salaryFormId.trim() != ''">
			AND a.SALARY_FORM_ID = #{salaryAccountAndItemVo.salaryFormId}
		</if>
		<if test="salaryAccountAndItemVo.empName != null and salaryAccountAndItemVo.empName.trim() != ''">
			AND a.EMP_NAME = #{salaryAccountAndItemVo.empName}
		</if>
		<if test="salaryAccountAndItemVo.empIdcard != null and salaryAccountAndItemVo.empIdcard.trim() != ''">
			AND a.EMP_IDCARD = #{salaryAccountAndItemVo.empIdcard}
		</if>
		<if test="salaryAccountAndItemVo.salaryGiveTime != null and salaryAccountAndItemVo.salaryGiveTime.trim() != ''">
			AND a.SALARY_GIVE_TIME = #{salaryAccountAndItemVo.salaryGiveTime}
		</if>
		<if test="salaryAccountAndItemVo.distributionFlag != null and salaryAccountAndItemVo.distributionFlag.trim() != ''">
			AND a.DISTRIBUTION_FLAG = #{salaryAccountAndItemVo.distributionFlag}
		</if>
		<if test="salaryAccountAndItemVo.deduSocialMonth != null and salaryAccountAndItemVo.deduSocialMonth.trim() != ''">
			AND a.DEDU_SOCIAL_MONTH = #{salaryAccountAndItemVo.deduSocialMonth}
		</if>
		<if test="salaryAccountAndItemVo.deduProvidentMonth != null and salaryAccountAndItemVo.deduProvidentMonth.trim() != ''">
			AND a.DEDU_PROVIDENT_MONTH = #{salaryAccountAndItemVo.deduProvidentMonth}
		</if>
		<if test="salaryAccountAndItemVo.salaryType != null and salaryAccountAndItemVo.salaryType.trim() != ''">
			AND a.FORM_TYPE = #{salaryAccountAndItemVo.salaryType}
		</if>
		<if test="salaryAccountAndItemVo.settlementMonth != null and salaryAccountAndItemVo.settlementMonth.trim() != ''">
			AND a.SETTLEMENT_MONTH = #{salaryAccountAndItemVo.settlementMonth}
		</if>
		<if test="salaryAccountAndItemVo.years != null and salaryAccountAndItemVo.years.trim() != ''">
			AND a.SALARY_MONTH like concat(#{salaryAccountAndItemVo.years},'%')
		</if>
	</select>
hongguangwu's avatar
hongguangwu committed
959
</mapper>