Commit e9833ad4 authored by fangxinjiang's avatar fangxinjiang

优化

parent 027caf17
...@@ -249,9 +249,9 @@ ...@@ -249,9 +249,9 @@
a.DEPART_NO, a.DEPART_NO,
a.DEPART_NAME, a.DEPART_NAME,
a.INSURANCE_SETTLE_TYPE, a.INSURANCE_SETTLE_TYPE,
c.ID AS 'customerId', a.CUSTOMER_ID AS 'customerId',
c.CUSTOMER_NAME as 'customerName', a.CUSTOMER_NAME as 'customerName',
c.CUSTOMER_CODE as 'customerCode', a.CUSTOMER_NO as 'customerCode',
a.BUSINESS_PRIMARY_TYPE, a.BUSINESS_PRIMARY_TYPE,
a.BUSINESS_SECOND_TYPE, a.BUSINESS_SECOND_TYPE,
a.BUSINESS_THIRD_TYPE, a.BUSINESS_THIRD_TYPE,
...@@ -259,7 +259,6 @@ ...@@ -259,7 +259,6 @@
a.INVOICE_TITLE_SALARY, a.INVOICE_TITLE_SALARY,
a.INVOICE_TITLE_INSURANCE a.INVOICE_TITLE_INSURANCE
FROM t_settle_domain a FROM t_settle_domain a
LEFT JOIN t_customer_info c ON a.CUSTOMER_ID = c.ID
where 1=1 where 1=1
<if test="codes != null and codes.size() > 0"> <if test="codes != null and codes.size() > 0">
and a.DEPART_NO in and a.DEPART_NO in
......
...@@ -134,10 +134,10 @@ public class IncomeExportVo implements Serializable { ...@@ -134,10 +134,10 @@ public class IncomeExportVo implements Serializable {
/** /**
* 数据生成月份 * 数据生成月份
*/ */
@Length(max = 6, message = "数据生成时间 不能超过6 个字符") @Length(max = 6, message = "数据生成月份 不能超过6 个字符")
@ExcelAttribute(name = "数据生成时间", maxLength = 6) @ExcelAttribute(name = "数据生成月份", maxLength = 6)
@Schema(description = "数据生成时间") @Schema(description = "数据生成月份")
@ExcelProperty("数据生成时间") @ExcelProperty("数据生成月份")
private String dataCreateMonth; private String dataCreateMonth;
/** /**
* 推送状态:0未推送1已推送 * 推送状态:0未推送1已推送
......
...@@ -532,6 +532,10 @@ ...@@ -532,6 +532,10 @@
<if test="tSocialFundInfo.id != null and tSocialFundInfo.id.trim() != ''"> <if test="tSocialFundInfo.id != null and tSocialFundInfo.id.trim() != ''">
AND a.ID = #{tSocialFundInfo.id} AND a.ID = #{tSocialFundInfo.id}
</if> </if>
<if test="tSocialFundInfo.settleDomainCode != null and tSocialFundInfo.settleDomainCode.trim() != ''">
AND a.SETTLE_DOMAIN_CODE = #{tSocialFundInfo.settleDomainCode}
</if>
<if test="tSocialFundInfo.empId != null and tSocialFundInfo.empId.trim() != ''"> <if test="tSocialFundInfo.empId != null and tSocialFundInfo.empId.trim() != ''">
AND a.EMP_ID = #{tSocialFundInfo.empId} AND a.EMP_ID = #{tSocialFundInfo.empId}
</if> </if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment