Commit 21c93758 authored by 王果's avatar 王果

21026 【web端】监管业务>登记管理>单位变更登记,设备种类和办理日期筛选无效

parent 2f178e55
...@@ -59,6 +59,9 @@ public class JgChangeRegistrationUnitDto extends BaseDto { ...@@ -59,6 +59,9 @@ public class JgChangeRegistrationUnitDto extends BaseDto {
@JsonSerialize(using = BizCustomDateSerializer.class) @JsonSerialize(using = BizCustomDateSerializer.class)
private Date auditPassDate; private Date auditPassDate;
@ApiModelProperty(value = "列表搜索接收终审通过时间时使用")
private String auditPass;
@ApiModelProperty(value = "备注") @ApiModelProperty(value = "备注")
private String remark; private String remark;
......
...@@ -34,12 +34,18 @@ ...@@ -34,12 +34,18 @@
<if test="param.receiveCompanyCode != null and param.receiveCompanyCode != ''"> <if test="param.receiveCompanyCode != null and param.receiveCompanyCode != ''">
AND isn.receive_company_code = #{param.receiveCompanyCode} AND isn.receive_company_code = #{param.receiveCompanyCode}
</if> </if>
<if test="param.auditPass != null and param.auditPass != ''">
AND isn.audit_pass_date like concat('%',DATE_FORMAT(#{param.auditPass},'%Y-%m-%d'),'%')
</if>
<if test="param.applicationDate != null and param.applicationDate != ''"> <if test="param.applicationDate != null and param.applicationDate != ''">
AND isn.apply_date like concat('%',DATE_FORMAT(#{param.applicationDate},'%Y-%m-%d'),'%') AND isn.apply_date like concat('%',DATE_FORMAT(#{param.applicationDate},'%Y-%m-%d'),'%')
</if> </if>
<if test="param.useRegistCode != null and param.useRegistCode != ''"> <if test="param.useRegistCode != null and param.useRegistCode != ''">
AND isn.use_regist_code like concat('%',#{param.useRegistCode},'%') AND isn.use_regist_code like concat('%',#{param.useRegistCode},'%')
</if> </if>
<if test="param.equListCode != null and param.equListCode != ''">
AND isn.equ_list_code like concat('%',#{param.equListCode},'%')
</if>
</if> </if>
<if test="type == 'supervision'"> <if test="type == 'supervision'">
AND (isn.receive_org_code = #{orgCode} or isn.transfer_to_user_ids LIKE concat ( '%', #{currentUserId}, '%' )) AND (isn.receive_org_code = #{orgCode} or isn.transfer_to_user_ids LIKE concat ( '%', #{currentUserId}, '%' ))
......
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