SELECT sup_manufacturer.* ,user_company.companyName as supName
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 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
@ -211,14 +235,18 @@
sup_manufacturer.auditStatus = 2)
</if>
<iftest="auditStatus == 21">
and <![CDATA[ sup_manufacturer.auditStatus <> 0 ]]>
and <![CDATA[ sup_manufacturer.auditStatus <> 0
]]>
</if>
<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') ]]>
<![CDATA[
and DATE_FORMAT(sup_manufacturer.updateTime, '%Y-%m-%d %H:%i:%S') >=