企业资质审核代码更新备份

cert
1178634255 2 years ago
parent abee12e987
commit b5e7486e63

@ -83,7 +83,7 @@ public class SupManufacturerController {
@GetMapping("/sup/manufacturer/getCompanyList")
public BaseResponse filterRel(FilterUdiRelRequest filterUdiRelRequest) {
System.out.println(filterUdiRelRequest.toString());
List<BasicUdiRelResponse> udiDlDeviceResponse = basicUdiRelService.filterList(filterUdiRelRequest);
List<BasicUdiRelResponse> udiDlDeviceResponse = basicUdiRelService.filterCompanyList(filterUdiRelRequest);
PageInfo<BasicUdiRelResponse> basicUdiRelResponsePageInfo = new PageInfo<>(udiDlDeviceResponse);
PageSimpleResponse<BasicUdiRelResponse> basicUdiRelResponsePageSimpleResponse = new PageSimpleResponse<>();
basicUdiRelResponsePageSimpleResponse.setTotal(basicUdiRelResponsePageInfo.getTotal());

@ -18,6 +18,9 @@ public interface BasicUdiRelMapper extends BaseMapper<BasicUdiRelEntity> {
List<BasicUdiRelResponse> filterList(FilterUdiRelRequest filterUdiRelRequest);
List<BasicUdiRelResponse> filterBasicList(FilterUdiRelRequest filterUdiRelRequest);
List<BasicUdiRelResponse> filterCompanyList(FilterUdiRelRequest filterUdiRelRequest);
List<UserCompanyResponse> findByNameCode(@Param("nameCode") String nameCode);
UserCompanyEntity findByProduct(FilterUdiRelRequest filterUdiRelRequest);

@ -36,6 +36,13 @@ public class BasicUdiRelService extends ServiceImpl<BasicUdiRelMapper, BasicUdiR
return basicUdiRelMapper.filterBasicList(filterUdiRelRequest);
}
public List<BasicUdiRelResponse> filterCompanyList(FilterUdiRelRequest filterUdiRelRequest) {
if (null != filterUdiRelRequest.getPage() && null != filterUdiRelRequest.getLimit()) {
PageHelper.offsetPage((filterUdiRelRequest.getPage() - 1) * filterUdiRelRequest.getLimit(), filterUdiRelRequest.getLimit());
}
return basicUdiRelMapper.filterCompanyList(filterUdiRelRequest);
}
//查找源头企业1.先找出生产企业2.找出代理商与购买方
public List<UserCompanyResponse> findSourceByNameCode(String nameCode) {
List<UserCompanyResponse> userCompanyEntities = basicUdiRelMapper.findByNameCode(nameCode);

@ -162,58 +162,59 @@
</where>
ORDER BY bur.updateTime DESC
</select>
<!-- <select id="filterBasicList" parameterType="com.glxp.api.req.basic.FilterUdiRelRequest"-->
<!-- resultType="com.glxp.api.res.basic.BasicUdiRelResponse">-->
<!-- SELECT sup_manufacturer.* ,user_company.companyName as supName-->
<!-- <if test="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-->
<!-- <where>-->
<!-- <if test="id != null and id != '' and type==null">-->
<!-- and id = #{id}-->
<!-- </if>-->
<!-- <if test="manufacturerId != null and manufacturerId != ''">-->
<!-- and manufacturerId = #{manufacturerId}-->
<!-- </if>-->
<!-- <if test="companyName != null and companyName != ''">-->
<!-- and sup_manufacturer.companyName like concat('%',#{companyName},'%')-->
<!-- </if>-->
<!-- <if test="creditCode != null and creditCode != ''">-->
<!-- and creditCode like concat('%',#{creditCode},'%')-->
<!-- </if>-->
<!-- <if test="placeArea != null and placeArea != ''">-->
<!-- and placeArea like concat('%',#{placeArea},'%')-->
<!-- </if>-->
<!-- <if test="customerId != null and customerId != ''">-->
<!-- and sup_manufacturer.customerId = #{customerId}-->
<!-- </if>-->
<!-- <if test="auditStatus != null and auditStatus !=20 and auditStatus !=21 and auditStatus !=22">-->
<!-- and sup_manufacturer.auditStatus = #{auditStatus}-->
<!-- </if>-->
<select id="filterCompanyList" parameterType="com.glxp.api.req.basic.FilterUdiRelRequest"
resultType="com.glxp.api.res.basic.BasicUdiRelResponse">
SELECT sup_manufacturer.* ,user_company.companyName as supName
<if test="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
<where>
<if test="id != null and id != '' and type==null">
and id = #{id}
</if>
<if test="manufacturerId != null and manufacturerId != ''">
and manufacturerId = #{manufacturerId}
</if>
<if test="companyName != null and companyName != ''">
and sup_manufacturer.companyName like concat('%',#{companyName},'%')
</if>
<if test="creditCode != null and creditCode != ''">
and creditCode like concat('%',#{creditCode},'%')
</if>
<if test="placeArea != null and placeArea != ''">
and placeArea like concat('%',#{placeArea},'%')
</if>
<if test="customerId != null and customerId != ''">
and sup_manufacturer.customerId = #{customerId}
</if>
<!-- <if test="auditStatus ==20">-->
<!-- and (sup_manufacturer.auditStatus = 0 or sup_manufacturer.auditStatus=5 or-->
<!-- sup_manufacturer.auditStatus=2)-->
<!-- </if>-->
<!-- <if test="auditStatus ==21">-->
<!-- and <![CDATA[ sup_manufacturer.auditStatus <> 0 ]]>-->
<!-- </if>-->
<if test="auditStatus != null and auditStatus !=20 and auditStatus !=21 and auditStatus !=22">
and sup_manufacturer.auditStatus = #{auditStatus}
</if>
<!-- <if test="auditStatus ==22">-->
<!-- and (sup_manufacturer.auditStatus = 1 or sup_manufacturer.auditStatus=4 )-->
<!-- </if>-->
<!-- <if test="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') ]]>-->
<!-- </if>-->
<!-- <if test="type != null">-->
<!-- and id != #{id}-->
<!-- </if>-->
<!-- </where>-->
<!-- </select>-->
<if test="auditStatus ==20">
and (sup_manufacturer.auditStatus = 0 or sup_manufacturer.auditStatus=5 or
sup_manufacturer.auditStatus=2)
</if>
<if test="auditStatus ==21">
and <![CDATA[ sup_manufacturer.auditStatus <> 0 ]]>
</if>
<if test="auditStatus ==22">
and (sup_manufacturer.auditStatus = 1 or sup_manufacturer.auditStatus=4 )
</if>
<if test="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') ]]>
</if>
<if test="type != null">
and id != #{id}
</if>
</where>
</select>
<select id="findByNameCode" parameterType="java.lang.String"

Loading…
Cancel
Save