SELECT sup_manufacturer.* ,user_company.companyName as supName
<iftest="productStatus!=null">
,(SELECT count(*) FROM sup_product WHERE sup_manufacturer.customerId=sup_product.customerId AND sup_product.auditStatus!=0 AND sup_product.auditStatus!=1 AND sup_product.auditStatus!=4 AND sup_manufacturer.manufacturerId=sup_product.manufacturerIdFk ) as failCout,
(SELECT count(*) FROM sup_product WHERE sup_manufacturer.customerId=sup_product.customerId AND (sup_product.auditStatus=1 OR sup_product.auditStatus=4) AND sup_manufacturer.manufacturerId=sup_product.manufacturerIdFk ) as passCout
SELECT sup_manufacturer.*,
user_company.companyName as supName
<iftest="productStatus != null">
,
(SELECT count(*)
FROM sup_product
WHERE sup_manufacturer.customerId = sup_product.customerId
AND sup_product.auditStatus != 0
AND sup_product.auditStatus != 1
AND sup_product.auditStatus != 4
AND sup_manufacturer.manufacturerId = sup_product.manufacturerIdFk) as failCout,
(SELECT count(*)
FROM sup_product
WHERE sup_manufacturer.customerId = sup_product.customerId
AND (sup_product.auditStatus = 1 OR sup_product.auditStatus = 4)
AND sup_manufacturer.manufacturerId = sup_product.manufacturerIdFk) as passCout
</if>
FROM sup_manufacturer
inner join user_company on sup_manufacturer.customerId = user_company.customerId
inner join user_company on sup_manufacturer.customerId = user_company.customerId
<where>
<iftest="id != null and id != '' and type==null">
<iftest="id != null and id != '' and type==null">
and id = #{id}
</if>
<iftest="manufacturerId != null and manufacturerId != ''">
and manufacturerId = #{manufacturerId}
</if>
<iftest="companyName != null and companyName != ''">
and sup_manufacturer.companyName like concat('%',#{companyName},'%')
and sup_manufacturer.companyName like concat('%',#{companyName},'%')
</if>
<iftest="creditCode != null and creditCode != ''">
and creditCode like concat('%',#{creditCode},'%')
and creditCode like concat('%',#{creditCode},'%')
</if>
<iftest="placeArea != null and placeArea != ''">
and placeArea like concat('%',#{placeArea},'%')
and placeArea like concat('%',#{placeArea},'%')
</if>
<iftest="customerId != null and customerId != ''">
and sup_manufacturer.customerId = #{customerId}
</if>
<iftest="auditStatus != null and auditStatus !=20 and auditStatus !=21 and auditStatus !=22">
<iftest="auditStatus != null and auditStatus !=20 and auditStatus !=21 and auditStatus !=22">
and sup_manufacturer.auditStatus = #{auditStatus}
</if>
<iftest="auditStatus ==20">
and (sup_manufacturer.auditStatus = 0 or sup_manufacturer.auditStatus=5 or
sup_manufacturer.auditStatus=2)
<iftest="auditStatus ==20">
and (sup_manufacturer.auditStatus = 0 or sup_manufacturer.auditStatus=5 or
sup_manufacturer.auditStatus=2)
</if>
<iftest="auditStatus ==21">
and <![CDATA[ sup_manufacturer.auditStatus <> 0 ]]>
<iftest="auditStatus == 21">
and <![CDATA[ sup_manufacturer.auditStatus <> 0
]]>
</if>
<iftest="auditStatus ==22">
and (sup_manufacturer.auditStatus = 1 or sup_manufacturer.auditStatus=4)
<iftest="auditStatus ==22">
and (sup_manufacturer.auditStatus = 1 or sup_manufacturer.auditStatus=4)
</if>
<iftest="lastUpdateTime!=null and lastUpdateTime!=''">
<![CDATA[ and DATE_FORMAT(sup_manufacturer.updateTime, '%Y-%m-%d %H:%i:%S')>= DATE_FORMAT(#{lastUpdateTime}, '%Y-%m-%d %H:%i:%S') ]]>
<iftest="lastUpdateTime != null and lastUpdateTime != ''">
<![CDATA[
and DATE_FORMAT(sup_manufacturer.updateTime, '%Y-%m-%d %H:%i:%S') >=