|
|
|
@ -31,12 +31,33 @@
|
|
|
|
|
FROM user_cert_set c LEFT JOIN
|
|
|
|
|
(SELECT * from user_cert WHERE businessId=#{registerId}) a ON c.name = a.name
|
|
|
|
|
</select>
|
|
|
|
|
<select id="filterCompanyCert" parameterType="com.glxp.api.req.purchase.certRequest"
|
|
|
|
|
<select id="filterCompanyCert" parameterType="com.glxp.api.req.purchase.FilterSupCertRequest"
|
|
|
|
|
resultType="com.glxp.api.entity.sup.UserCertEntity">
|
|
|
|
|
select * from user_cert
|
|
|
|
|
select * from sup_cert
|
|
|
|
|
<where>
|
|
|
|
|
<if test="businessId != '' and businessId!=null">
|
|
|
|
|
and businessId = #{businessId}
|
|
|
|
|
<if test="customerId != '' and customerId!=null">
|
|
|
|
|
and customerId = #{customerId}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="manufacturerIdFk != '' and manufacturerIdFk!=null">
|
|
|
|
|
and manufacturerIdFk = #{manufacturerIdFk}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="productIdFk != '' and productIdFk!=null">
|
|
|
|
|
and productIdFk = #{productIdFk}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="type != '' and type!=null">
|
|
|
|
|
and `type` = #{type}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="auditStatus != null and auditStatus !=20 and auditStatus !=24 and auditStatus !=25" >
|
|
|
|
|
and auditStatus = #{auditStatus}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="auditStatus ==20">
|
|
|
|
|
and (auditStatus = 1 or auditStatus=4)
|
|
|
|
|
</if>
|
|
|
|
|
<if test="auditStatus ==24">
|
|
|
|
|
and (auditStatus = 2 or auditStatus=3 or auditStatus=5 or auditStatus=6)
|
|
|
|
|
</if>
|
|
|
|
|
<if test="auditStatus ==25">
|
|
|
|
|
and (auditStatus !=0)
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
</where>
|
|
|
|
|