| | |
| | | <resultMap id="BaseResultMap" type="com.yuanchu.mom.pojo.InsProduct"> |
| | | <id property="id" column="id" jdbcType="INTEGER"/> |
| | | <result property="inspectionItem" column="inspection_item" jdbcType="VARCHAR"/> |
| | | <result property="inspectionItemClassify" column="inspection_item_classify" jdbcType="VARCHAR"/> |
| | | <result property="inspectionItemClass" column="inspection_item_class" jdbcType="VARCHAR"/> |
| | | <result property="inspectionItemSubclass" column="inspection_item_subclass" jdbcType="VARCHAR"/> |
| | | <result property="factory" column="factory" jdbcType="VARCHAR"/> |
| | | <result property="laboratory" column="laboratory" jdbcType="VARCHAR"/> |
| | |
| | | |
| | | and template_id is not null |
| | | </select> |
| | | <select id="selectFiberInsProduct" resultType="com.yuanchu.mom.pojo.InsProduct"> |
| | | select * from ins_product |
| | | where state = 1 |
| | | and (ins_fibers_id is not null or ins_fiber_id is not null) |
| | | and ins_result is null |
| | | and son_laboratory = #{laboratory} |
| | | and ins_sample_id in |
| | | <foreach collection="ids" index="index" item="item" open="(" separator="," close=")"> |
| | | #{item} |
| | | </foreach> |
| | | </select> |
| | | <select id="selectNoProducts" resultType="com.yuanchu.mom.pojo.InsProduct"> |
| | | select * |
| | | from (select ip.*, sample_code |
| | |
| | | select COUNT(1) |
| | | from ins_product ip |
| | | left join ins_sample isa on ip.ins_sample_id = isa.id |
| | | left join ins_order io on isa.ins_order_id = io.id |
| | | where io.id = #{orderId} |
| | | where isa.id = #{sampleId} |
| | | and (ip.ins_result is null or ip.ins_result = 2) |
| | | and ip.state = 1 |
| | | </select> |