<?xml version="1.0" encoding="UTF-8"?>
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
<mapper namespace="com.nanometer.smartlab.dao.SysReagentDao">
|
<resultMap id="SysReagent" type="com.nanometer.smartlab.entity.SysReagent">
|
<id property="id" column="id"/>
|
<result property="name" column="name"></result>
|
<result property="cas" column="cas"></result>
|
<result property="reagentType" column="reagent_type"></result>
|
<result property="reagentCharacter" column="reagent_character"></result>
|
<result property="supplierId" column="supplier_id"></result>
|
<result property="reagentFormat" column="reagent_format"></result>
|
<result property="mainMetering" column="main_metering"></result>
|
<result property="reagentUnit" column="reagent_unit"></result>
|
<result property="price" column="price"></result>
|
<result property="perBox" column="per_box"></result>
|
<result property="memo" column="memo"></result>
|
<result property="validFlag" column="valid_flag" typeHandler="com.nanometer.smartlab.entity.handler.ValidFlagHandler"></result>
|
<result property="createTime" column="create_time"></result>
|
<result property="updateTime" column="update_time"></result>
|
<result property="supplierName" column="supplierName"></result>
|
<result property="deadline" column="deadline"></result>
|
<result property="reserve" column="reserve"></result>
|
<result property="productSn" column="product_sn"></result>
|
<result property="dangerousFlag" column="dangerous_flag" typeHandler="com.nanometer.smartlab.entity.handler.DangerousFlagHandler"></result>
|
<result property="controlProducts" column="control_products"></result>
|
<result property="controlProductsName" column="control_products_name"></result>
|
<result property="productHome" column="product_home"></result>
|
<result property="productHomeName" column="product_home_name"></result>
|
<result property="type" column="type"></result>
|
<result property="unitName" column="unitName"></result>
|
<result property="formatName" column="formatName"></result>
|
<result property="safetynum" column="safetynum"></result>
|
<result property="density" column="density"></result>
|
</resultMap>
|
|
<sql id="queryWhereSql">
|
<if test="name != null and name != ''">
|
and sr.name like #{name}
|
</if>
|
<if test="cas != null and cas != ''">
|
and sr.cas like #{cas}
|
</if>
|
<if test="supplierId != null and supplierId != ''">
|
and sr.supplier_id = #{supplierId}
|
</if>
|
<if test="editId != null and editId != ''">
|
and sr.id != #{editId}
|
</if>
|
<if test="deadline != null and deadline != ''">
|
and sr.name = #{deadline}
|
</if>
|
<if test="productSn != null and productSn != ''">
|
and sr.product_sn like #{productSn}
|
</if>
|
<if test="type != null ">
|
and sr.type = #{type}
|
</if>
|
</sql>
|
<select id="query" resultMap="SysReagent">
|
select a.name,a.id,cas,main_metering,reagent_unit,reagent_format,product_home,b.meta_value unitName,c.meta_value formatName,d.meta_value product_home_name,a.price from sys_reagent a
|
left join base_meta b on b.id=a.reagent_unit
|
left join base_meta c on c.id=a.reagent_format
|
left join base_meta d on d.id=a.product_home
|
where a.valid_flag = 1
|
</select>
|
<select id="getSysReagent" parameterType="java.lang.String" resultMap="SysReagent" >
|
select * from sys_reagent
|
where id = #{id} and valid_flag = 1
|
</select>
|
|
<select id="getSysReagentDetail" parameterType="java.lang.String" resultType="java.util.Map">
|
select sr.name ,sr.main_metering,sr.memo memo,sr.product_sn productCode,bm.meta_value reagentFormat ,sm.meta_value controlProducts,am.meta_value unit
|
from sys_reagent sr
|
left join base_meta bm on bm.id = sr.reagent_format
|
LEFT JOIN base_meta sm on sr.control_products = sm.id
|
LEFT JOIN base_meta am on sr.reagent_unit = am.id
|
where sr.id = #{id} and sr.valid_flag = 1
|
</select>
|
|
<select id="getSysReagentList" parameterType="java.util.Map" resultMap="SysReagent">
|
select sr.*, ss.meta_value as product_home_name, ifnull(w.reserve,0) as reserve, bm.meta_value as control_products_name,supplier.name as supplierName,f.id favor,f.create_time favortime
|
from sys_reagent as sr
|
left join base_meta as ss on sr.product_home = ss.id
|
left join base_meta bm on bm.id = sr.control_products
|
left join (select reagent_id, sum(reserve) reserve from ope_warehouse_reserve where valid_flag = 1 group by reagent_id) w on w.reagent_id = sr.id
|
|
left join sys_supplier supplier on supplier.id = sr.supplier_id
|
LEFT JOIN favor f on f.reagent_id = sr.id AND f.user_id = #{user}
|
where sr.valid_flag = 1
|
<include refid="queryWhereSql"/>
|
<if test="favor != null and favor != '' ">
|
and f.id is not null
|
</if>
|
order by favortime desc,price,LENGTH(sr.name),sr.name ASC
|
<if test="first != null and pageSize != null">
|
limit #{first}, #{pageSize}
|
</if>
|
</select>
|
|
<select id="reagentList" parameterType="java.util.Map" resultMap="SysReagent">
|
SELECT
|
*
|
FROM
|
(
|
SELECT
|
sr.*,
|
ss.meta_value AS product_home_name,
|
ss.order_index,
|
bm.meta_value AS control_products_name,
|
supplier. NAME AS supplierName,
|
f.id favor,
|
f.create_time favortime,
|
supplier.valid_flag as supplierFlag
|
FROM
|
sys_reagent AS sr
|
LEFT JOIN base_meta AS ss ON sr.product_home = ss.id
|
LEFT JOIN base_meta bm ON bm.id = sr.control_products
|
LEFT JOIN sys_supplier supplier ON supplier.id = sr.supplier_id
|
LEFT JOIN favor f ON f.reagent_id = sr.id
|
AND f.user_id= #{user}
|
WHERE f.id IS NOT NULL
|
and sr.valid_flag = 1
|
and (supplier.valid_flag = 1 or sr.type = 0)
|
and sr.type != 3
|
<if test="cas != null and cas != ''">
|
and sr.cas like concat("%", #{cas} ,"%")
|
</if>
|
<if test="supplierId != null and supplierId != ''">
|
and sr.supplier_id = #{supplierId}
|
</if>
|
<if test="name != null and name != ''">
|
and sr.name like concat("%", #{name} ,"%")
|
</if>
|
<if test="productSn != null and productSn != ''">
|
and sr.product_sn like concat("%", #{productSn} ,"%")
|
</if>
|
UNION ALL
|
(SELECT
|
sr.*,
|
ss.meta_value AS product_home_name,
|
ss.order_index,
|
bm.meta_value AS control_products_name,
|
supplier.NAME AS supplierName,
|
f.id favor,
|
f.create_time favortime,
|
supplier.valid_flag as supplierFlag
|
FROM
|
sys_reagent AS sr
|
LEFT JOIN base_meta AS ss ON sr.product_home = ss.id
|
LEFT JOIN base_meta bm ON bm.id = sr.control_products
|
LEFT JOIN sys_supplier supplier ON supplier.id = sr.supplier_id
|
LEFT JOIN favor f ON f.reagent_id = sr.id
|
AND f.user_id = #{user}
|
AND f.id IS NULL
|
where sr.valid_flag = 1
|
and (supplier.valid_flag = 1 or sr.type = 0)
|
and sr.type != 3
|
<if test="cas != null and cas != ''">
|
and sr.cas like concat("%", #{cas} ,"%")
|
</if>
|
<if test="supplierId != null and supplierId != ''">
|
and sr.supplier_id = #{supplierId}
|
</if>
|
<if test="name != null and name != ''">
|
and sr.name like concat("%", #{name} ,"%")
|
</if>
|
<if test="productSn != null and productSn != ''">
|
and sr.product_sn like concat("%", #{productSn} ,"%")
|
</if>
|
<if test="MaxSize != null">
|
limit #{MaxSize}
|
</if>
|
)
|
) as reagent
|
ORDER BY reagent.favortime DESC,length(reagent.name),reagent.order_index,price asc
|
<if test="first != null and pageSize != null">
|
limit #{first}, #{pageSize}
|
</if>
|
</select>
|
|
|
<select id="reagentSimpleInfoList" resultMap="SysReagent">
|
select sr.id,sr.name,sr.cas,sr.product_sn,sr.create_time,sr.update_time,bm.meta_value as reagent_type,bm2.meta_value as reagent_character from sys_reagent sr
|
left join base_meta as bm on bm.id=sr.reagent_type
|
left join base_meta as bm2 on bm2.id=sr.reagent_character
|
<where>
|
and sr.valid_flag = 1 and sr.type=1
|
<if test="cas != null and cas != ''">
|
and sr.cas like concat("%", #{cas} ,"%")
|
</if>
|
<if test="name != null and name != ''">
|
and sr.name like concat("%", #{name} ,"%")
|
</if>
|
</where>
|
order by sr.create_time desc
|
limit #{first},#{pageSize}
|
</select>
|
<select id="reagentSimpleInfoCount" resultType="int">
|
select count(1) from sys_reagent sr
|
<where>
|
and sr.valid_flag = 1 and sr.type=1
|
<if test="cas != null and cas != ''">
|
and sr.cas like concat("%", #{cas} ,"%")
|
</if>
|
<if test="name != null and name != ''">
|
and sr.name like concat("%", #{name} ,"%")
|
</if>
|
</where>
|
</select>
|
|
<select id="favorList" parameterType="java.util.Map" resultMap="SysReagent">
|
select sr.*, ss.meta_value as product_home_name,
|
bm.meta_value as control_products_name,
|
supplier.name as supplierName,
|
f.id favor,
|
f.create_time favortime,
|
supplier.valid_flag as supplierFlag
|
from sys_reagent as sr
|
left join base_meta as ss on sr.product_home = ss.id
|
left join base_meta bm on bm.id = sr.control_products
|
left join sys_supplier supplier on supplier.id = sr.supplier_id
|
LEFT JOIN favor f on f.reagent_id = sr.id AND f.user_id = #{user}
|
where sr.valid_flag = 1
|
and (supplier.valid_flag = 1 or sr.type = 0)
|
<choose>
|
<when test="favorFlag != ''">
|
and f.id is not null
|
</when>
|
<otherwise>
|
and f.id is null
|
</otherwise>
|
</choose>
|
<if test="cas != null and cas != ''">
|
and sr.cas like concat("%",#{cas},"%")
|
</if>
|
<if test="supplierId != null and supplierId != ''">
|
and sr.supplier_id = #{supplierId}
|
</if>
|
<if test="name != null and name != ''">
|
and sr.name like concat("%", #{name} ,"%")
|
</if>
|
<if test="productSn != null and productSn != ''">
|
and sr.product_sn like concat("%",#{productSn},"%")
|
</if>
|
<choose>
|
<when test="favorFlag != ''">
|
ORDER BY favortime desc
|
</when>
|
<otherwise>
|
ORDER BY sr.create_time desc
|
</otherwise>
|
</choose>
|
<if test="first != null and pageSize != null">
|
limit #{first}, #{pageSize}
|
</if>
|
</select>
|
|
<select id="favorCount" parameterType="java.util.Map" resultType="int">
|
select count(1)
|
from sys_reagent as sr
|
left join base_meta as ss on sr.product_home = ss.id
|
left join base_meta bm on bm.id = sr.control_products
|
left join sys_supplier supplier on supplier.id = sr.supplier_id
|
LEFT JOIN favor f on f.reagent_id = sr.id AND f.user_id = #{user}
|
where sr.valid_flag = 1
|
and (supplier.valid_flag = 1 or sr.type = 0)
|
<choose>
|
<when test="favorFlag != ''">
|
and f.id is not null
|
</when>
|
<otherwise>
|
and f.id is null
|
</otherwise>
|
</choose>
|
<if test="cas != null and cas != ''">
|
and sr.cas like concat("%",#{cas},"%")
|
</if>
|
<if test="supplierId != null and supplierId != ''">
|
and sr.supplier_id = #{supplierId}
|
</if>
|
<if test="name != null and name != ''">
|
and sr.name like concat("%", #{name} ,"%")
|
</if>
|
<if test="productSn != null and productSn != ''">
|
and sr.product_sn like concat("%",#{productSn},"%")
|
</if>
|
</select>
|
|
<select id="getSysReagentListNew" parameterType="java.util.Map" resultMap="SysReagent">
|
select sr.*, ss.meta_value as product_home_name, ifnull(w.reserve,0) as reserve, bm.meta_value as control_products_name,supplier.name as supplierName
|
from sys_reagent as sr
|
left join base_meta as ss on sr.product_home = ss.id
|
left join base_meta bm on bm.id = sr.control_products
|
left join (select reagent_id, sum(reserve) reserve from ope_warehouse_reserve where valid_flag = 1 group by reagent_id) w on w.reagent_id = sr.id
|
left join sys_supplier supplier on supplier.id = sr.supplier_id
|
where sr.valid_flag = 1
|
and (supplier.valid_flag = 1 or sr.type = 0)
|
<if test="cas != null and cas != ''">
|
and sr.cas = #{cas}
|
</if>
|
<if test="supplierId != null and supplierId != ''">
|
and sr.supplier_id = #{supplierId}
|
</if>
|
<if test="name != null and name != ''">
|
and sr.name like concat("%", #{name} ,"%")
|
</if>
|
<if test="type != null">
|
and sr.type = #{type}
|
</if>
|
<if test="productSn != null and productSn != ''">
|
and sr.product_sn like concat("%", #{productSn} ,"%")
|
</if>
|
ORDER BY length(sr.name),sr.create_time desc
|
<if test="first != null and pageSize != null">
|
limit #{first}, #{pageSize}
|
</if>
|
</select>
|
|
<select id="getSysReagentTotalCount" parameterType="java.util.Map" resultType="int">
|
select count(1)
|
from sys_reagent as sr
|
left join base_meta as ss on sr.product_home = ss.id
|
left join base_meta bm on bm.id = sr.control_products
|
left join (select reagent_id, sum(reserve) reserve from ope_warehouse_reserve where valid_flag = 1 group by reagent_id) w on w.reagent_id = sr.id
|
left join sys_supplier supplier on supplier.id = sr.supplier_id
|
LEFT JOIN favor f on f.reagent_id = sr.id AND f.user_id = #{user}
|
where sr.valid_flag = 1
|
<include refid="queryWhereSql"/>
|
<if test="favor != null and favor != '' ">
|
and f.id is not null
|
</if>
|
</select>
|
|
<select id="reagentCount" parameterType="java.util.Map" resultType="int">
|
select count(1)
|
from sys_reagent as sr
|
left join base_meta as ss on sr.product_home = ss.id
|
left join base_meta bm on bm.id = sr.control_products
|
left join sys_supplier supplier on supplier.id = sr.supplier_id
|
LEFT JOIN favor f on f.reagent_id = sr.id AND f.user_id = #{user}
|
where sr.valid_flag = 1
|
and (supplier.valid_flag = 1 or sr.type = 0)
|
<if test="cas != null and cas != ''">
|
and sr.cas like concat("%", #{cas} ,"%")
|
</if>
|
<if test="supplierId != null and supplierId != ''">
|
and sr.supplier_id = #{supplierId}
|
</if>
|
<if test="name != null and name != ''">
|
and sr.name like concat("%", #{name} ,"%")
|
</if>
|
<if test="productSn != null and productSn != ''">
|
and sr.product_sn like concat("%", #{productSn} ,"%")
|
</if>
|
</select>
|
|
<select id="getSysReagentTotalCountNew" parameterType="java.util.Map" resultType="int">
|
select count(1)
|
from sys_reagent as sr
|
LEFT JOIN sys_supplier ss on ss.id = sr.supplier_id
|
where sr.valid_flag = 1
|
and (ss.valid_flag = 1 or sr.type = 0)
|
<if test="cas != null and cas != ''">
|
and sr.cas = #{cas}
|
</if>
|
<if test="supplierId != null and supplierId != ''">
|
and sr.supplier_id = #{supplierId}
|
</if>
|
<if test="name != null and name != ''">
|
and sr.name like concat("%", #{name} ,"%")
|
</if>
|
<if test="type != null">
|
and sr.type = #{type}
|
</if>
|
<if test="productSn != null and productSn != ''">
|
and sr.product_sn like concat("%", #{productSn} ,"%")
|
</if>
|
</select>
|
|
<select id="getReagentUnitByReagentId" parameterType="java.lang.String" resultType="java.lang.String">
|
SELECT bm.meta_value
|
from sys_reagent sr
|
LEFT JOIN base_meta bm on bm.id = sr.reagent_unit
|
where sr.valid_flag =1
|
and bm.valid_flag = 1
|
and sr.id = #{reagentId}
|
</select>
|
|
|
<select id="getSysReagentByCas2" parameterType="com.nanometer.smartlab.entity.SysReagent" resultMap="SysReagent">
|
select * From sys_reagent where type=0 and valid_flag = 1
|
<if test="cas!=null and cas!=''">
|
and cas = #{cas}
|
</if>
|
<if test="cas==null or cas==''">
|
and cas is null
|
</if>
|
</select>
|
|
<select id="getSysReagentByCas" parameterType="com.nanometer.smartlab.entity.SysReagent" resultMap="SysReagent">
|
select * From sys_reagent where type=1 and valid_flag = 1
|
<if test="productSn!=null and productSn!=''">
|
and product_sn = #{productSn}
|
</if>
|
<if test="supplierId!=null and supplierId!=''">
|
and supplier_id = #{supplierId}
|
</if>
|
</select>
|
<select id="getReagent" resultMap="SysReagent">
|
select * From sys_reagent
|
where type=3
|
and valid_flag = 1
|
<if test="name!=null and name!=''">
|
and name =#{name}
|
</if>
|
<if test="cas!=null and cas!=''">
|
and cas =#{cas}
|
</if>
|
<if test="packing!=null and packing!=''">
|
and reagent_unit =#{packing}
|
</if>
|
<if test="factory!=null and factory!=''">
|
and product_home =#{factory}
|
</if>
|
<if test="specifications!=null and specifications!=''">
|
and reagent_format =#{specifications}
|
</if>
|
|
</select>
|
<select id="selectReagentSafetyNum" resultMap="SysReagent">
|
select
|
sr.id,
|
sr.product_sn,
|
sr.cas,
|
sr.safetynum,
|
sr.name,
|
sr.main_metering,
|
bm1.meta_value reagent_unit,
|
bm2.meta_value reagent_type,
|
bm3.meta_value reagent_format,
|
bm4.meta_value product_home,
|
ss.meta_value as product_home_name,
|
bm.meta_value as control_products_name,
|
supplier.name as supplierName
|
from sys_reagent as sr
|
left join base_meta as ss on sr.product_home = ss.id
|
left join base_meta bm on bm.id = sr.control_products
|
left join sys_supplier supplier on supplier.id = sr.supplier_id
|
left join base_meta bm1 on bm1.id = sr.reagent_unit
|
left join base_meta bm2 on bm2.id = sr.reagent_type
|
left join base_meta bm3 on bm3.id = sr.reagent_format
|
left join base_meta bm4 on bm4.id = sr.product_home
|
where sr.valid_flag = 1
|
and sr.type = 1
|
and safetynum > 0
|
</select>
|
|
|
<insert id="insertSysReagent" parameterType="com.nanometer.smartlab.entity.SysReagent">
|
insert into sys_reagent(id, name, cas, reagent_type, reagent_character, supplier_id, reagent_format, main_metering, reagent_unit, price, per_box, memo, valid_flag, create_time, update_time,deadline, product_sn, dangerous_flag,control_products,product_home,type,density)
|
values (#{id}, #{name}, #{cas}, #{reagentType}, #{reagentCharacter}, #{supplierId}, #{reagentFormat}, #{mainMetering}, #{reagentUnit}, #{price}, #{perBox}, #{memo}, 1, now(), now(),#{deadline}, #{productSn}, #{dangerousFlag},#{controlProducts},#{productHome},#{type},#{density})
|
</insert>
|
|
<update id="updateSysReagent" parameterType="com.nanometer.smartlab.entity.SysReagent">
|
update sys_reagent set name=#{name}, cas=#{cas}, reagent_type=#{reagentType}, reagent_character=#{reagentCharacter}, supplier_id=#{supplierId}, reagent_format=#{reagentFormat},
|
main_metering=#{mainMetering}, reagent_unit=#{reagentUnit}, price=#{price}, per_box=#{perBox}, memo=#{memo}, update_time=now(), deadline = #{deadline}, product_sn = #{productSn}, dangerous_flag = #{dangerousFlag}, control_products = #{controlProducts}
|
,product_home=#{productHome},type=#{type},density = #{density}
|
where id=#{id}
|
</update>
|
|
<update id="updateSysReagentForExport" parameterType="com.nanometer.smartlab.entity.SysReagent">
|
update sys_reagent set name=#{name}, reagent_type=#{reagentType}, reagent_character=#{reagentCharacter}, supplier_id=#{supplierId}, reagent_format=#{reagentFormat},type=#{type},
|
main_metering=#{mainMetering}, reagent_unit=#{reagentUnit}, price=#{price}, per_box=#{perBox}, memo=#{memo}, update_time=now(), deadline = #{deadline}, product_sn = #{productSn}, dangerous_flag = #{dangerousFlag}, control_products = #{controlProducts}
|
where
|
<if test="cas!=null and cas!=''">
|
cas = #{cas}
|
</if>
|
<if test="cas==null or cas==''">
|
cas is null
|
</if>
|
<if test="mainMetering!=null and mainMetering!=''">
|
and main_metering = #{mainMetering}
|
</if>
|
<if test="mainMetering==null or mainMetering==0">
|
and main_metering is null
|
</if>
|
<if test="reagentUnit!=null and reagentUnit!=''">
|
and reagent_unit=#{reagentUnit}
|
</if>
|
<if test="reagentUnit==null or reagentUnit==''">
|
and reagent_unit is null
|
</if>
|
<if test="reagentFormat!=null and reagentFormat!=''">
|
and reagent_format=#{reagentFormat}
|
</if>
|
<if test="reagentFormat==null or reagentFormat==''">
|
and reagent_format is null
|
</if>
|
<if test="productHome!=null and productHome!=''">
|
and product_home = #{productHome}
|
</if>
|
<if test="productHome==null or productHome==''">
|
and product_home is null
|
</if>
|
</update>
|
|
<update id="deleteSysReagent" parameterType="java.util.List">
|
update sys_reagent set valid_flag=0, update_time=now()
|
where id in
|
<foreach collection="list" item="item" index="index" open="(" separator="," close=")">
|
#{item}
|
</foreach>
|
</update>
|
<update id="updateSafetyNum">
|
update sys_reagent
|
set safetynum = #{safetynum}
|
where id = #{id}
|
</update>
|
<update id="updateSysReagentPriceById">
|
update sys_reagent
|
set price = #{price}
|
where id = #{reagentId}
|
|
</update>
|
|
<select id="countReagentByDetail" resultMap="SysReagent">
|
select
|
*
|
from sys_reagent as sr
|
left join base_meta bm2 on sr.reagent_character = bm2.id
|
left join base_meta bm4 on sr.reagent_unit = bm4.id
|
left join base_meta bm5 on sr.product_home = bm5.id
|
left join base_meta bm6 on sr.reagent_format = bm6.id
|
left join base_meta bm7 on sr.reagent_type = bm7.id
|
left join sys_supplier supply on sr.supplier_id = supply.id
|
|
<where>
|
sr.valid_flag = 1
|
<if test="params.packing != null and params.packing != ''">
|
and UPPER(concat(sr.main_metering,bm4.meta_value) ) = UPPER(#{params.packing})
|
</if>
|
<if test="params.product_home != null and params.product_home != ''">
|
and bm5.meta_value = #{params.product_home}
|
</if>
|
<if test="params.reagent_character != null and params.reagent_character != ''">
|
and bm2.meta_value = #{params.reagent_character}
|
</if>
|
<if test="params.reagent_format != null and params.reagent_format != ''">
|
and bm6.meta_value = #{params.reagent_format}
|
</if>
|
<if test="params.reagent_type != null and params.reagent_type != ''">
|
and bm7.meta_value = #{params.reagent_type}
|
</if>
|
<if test="params.cas != null and params.cas != ''">
|
and sr.cas = #{params.cas}
|
</if>
|
<if test="params.product_sn != null and params.product_sn != ''">
|
and sr.product_sn = #{params.product_sn}
|
</if>
|
<if test="params.name != null and params.name != ''">
|
and sr.name = #{params.name};
|
</if>
|
</where>
|
|
|
|
|
</select>
|
<select id="getRowData" resultMap="SysReagent">
|
select
|
a.*,
|
main_metering,
|
reagent_unit,
|
reagent_format,
|
product_home,
|
b.meta_value unitName,
|
c.meta_value formatName,
|
d.meta_value product_home_name,
|
e.meta_value control_products_name,
|
s.name AS supplierName,
|
s.valid_flag as supplierFlag
|
from sys_reagent a
|
left join base_meta b on b.id=a.reagent_unit
|
left join base_meta c on c.id=a.reagent_format
|
left join base_meta d on d.id=a.product_home
|
left join base_meta e on e.id=a.control_products
|
left join sys_supplier s ON s.id = a.supplier_id
|
where a.id = #{id}
|
|
</select>
|
<select id="getSysReagentListNewRowData" resultMap="SysReagent">
|
select sr.*, ss.meta_value as product_home_name, ifnull(w.reserve,0) as reserve, bm.meta_value as control_products_name,supplier.name as supplierName
|
from sys_reagent as sr
|
|
left join base_meta as ss on sr.product_home = ss.id
|
left join base_meta bm on bm.id = sr.control_products
|
left join (select reagent_id, sum(reserve) reserve from ope_warehouse_reserve where valid_flag = 1 group by reagent_id) w on w.reagent_id = sr.id
|
|
left join sys_supplier supplier on supplier.id = sr.supplier_id
|
where sr.id = #{id}
|
</select>
|
<select id="selectAll" resultType="java.util.Map">
|
select
|
sr.name,
|
sr.product_sn as productSn,
|
sr.cas,
|
sr.price,
|
sr.per_box as perBox,
|
sr.safetynum,
|
|
CASE WHEN type = 0 THEN '耗材' WHEN type = 1 THEN '试剂' ELSE '' END AS kind,
|
ss.meta_value as productHomeName,
|
bm.meta_value as control_products_name,
|
supplier.name as supplierName,
|
bm1.meta_value as reagentType,
|
bm2.meta_value as reagentCharacter,
|
bm3.meta_value as reagentFormat,
|
CONCAT(sr.main_metering,bm4.meta_value) as reagentUnit
|
from sys_reagent as sr
|
left join base_meta as ss on sr.product_home = ss.id
|
left join base_meta bm on bm.id = sr.control_products
|
left join base_meta bm1 on bm1.id = sr.reagent_type
|
left join base_meta bm2 on bm2.id = sr.reagent_character
|
left join base_meta bm3 on bm3.id = sr.reagent_format
|
left join base_meta bm4 on bm4.id = sr.reagent_unit
|
left join sys_supplier supplier on supplier.id = sr.supplier_id
|
where sr.valid_flag = 1
|
<if test="cas != null and cas != ''">
|
and sr.cas = #{cas}
|
</if>
|
<if test="supplierId != null and supplierId != ''">
|
and sr.supplier_id = #{supplierId}
|
</if>
|
<if test="name != null and name != ''">
|
and sr.name like concat("%", #{name} ,"%")
|
</if>
|
<if test="type != null">
|
and sr.type = #{type}
|
</if>
|
<if test="productSn != null and productSn != ''">
|
and sr.product_sn like concat("%", #{productSn} ,"%")
|
</if>
|
ORDER BY length(sr.name),sr.create_time desc
|
</select>
|
</mapper>
|