2024-05-09 17:17:03 +08:00
<?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.ruoyi.redBook.mapper.OARedBookMapper" >
<select id= "productModelList" parameterType= "Product" resultType= "Product" >
select uid_0,name_0,isnull(example_0,'') example_0
from rb_productType
where web_show_0=1
<if test= "uid_0 != null and uid_0 != ''" >
and puid_0 = #{uid_0}
</if>
<if test= "uid_0 == null or uid_0 == ''" >
and puid_0 = 0
</if>
order by order_0
</select>
<select id= "productRemarkList" parameterType= "Product" resultType= "Product" >
select type_uid_0,remark_0 from [rb_productRemark] where type_uid_0 = #{uid_0}
</select>
<select id= "productExtList" parameterType= "Product" resultType= "Product" >
select model_ext_0 as name_0 from rb_productType A
inner join [rb_material_redbook_ext] B on A.name_0=B.model_0
where A.uid_0 = #{uid_0} and B.show_0=1
</select>
<select id= "productYsxhList" parameterType= "Product" resultType= "Product" >
select #{uid_0} uid_0,name_0 from (
select name_0,1 order_0 from rb_productType where uid_0 = #{uid_0}
union all
select model_ext_0 as name_0,B.order_0
from rb_productType A
inner join [rb_material_redbook_ext] B on A.name_0=B.model_0
where A.uid_0 = #{uid_0} and B.show_0=1 and isnull(B.type_uid_0,0)=0
union all
select model_ext_0 as name_0,B.order_0
from rb_productType A
inner join [rb_material_redbook_ext] B on A.uid_0=B.type_uid_0
where A.uid_0 = #{uid_0} and B.show_0=1
) A order by order_0
</select>
<select id= "judgesection" parameterType= "Product" resultType= "Product" >
select A.uid_0,A.name_0,cast(cast(B.截面 as float) as nvarchar(20)) 截面
from rb_productType A
left join p_section B on A.uid_0=B.type_uid_0
where A.uid_0 = #{uid_0} and 截面 is not null order by A.name_0,B.截面
</select>
<select id= "productJmList" parameterType= "Product" resultType= "Product" >
select A.uid_0,A.name_0,cast(cast(B.截面 as float) as nvarchar(20)) section
from rb_productType A
left join p_section B on A.uid_0=B.type_uid_0
where A.uid_0 = #{uid_0} and B.model_0 = #{name_0} and 截面 is not null order by A.name_0,B.截面
</select>
<select id= "searchData" parameterType= "Product" resultType= "Product" >
select A.uid_0,A.namevoltage name_0,isnull(A.电压等级,N' - ') voltage ,A.单位 stu,A.型号 model,isnull(A.规格,'') spec ,
convert(decimal,convert(float,A.红本价格)) price,convert(varchar(10),B.date_0,23) pricedate
from [rb_product_price] A
left join rb_productVersion B on A.version_uid_0=B.uid_0
where B.sta_0=1 and A.type_uid_0 = #{uid_0}
and A.截面 = #{section} and A.型号 = #{name_0} order by A.order_0
</select>
2024-05-10 15:13:35 +08:00
<select id= "handleSearchData" resultType= "Product" parameterType= "String" >
select A.uid_0,A.namevoltage name_0,isnull(A.电压等级,N' - ') voltage ,A.单位 stu,A.型号 model,isnull(A.规格,'') spec ,
convert(decimal,convert(float,A.红本价格)) price,convert(varchar(10),B.date_0,23) pricedate
from [rb_product_price] A
left join rb_productVersion B on A.version_uid_0=B.uid_0
where B.sta_0=1
<if test= "name_0 != null and name_0 != ''" >
and A.型号 like '%${name_0}%'
</if>
<if test= "model != null and model != ''" >
and A.规格 = #{model}
</if>
</select>
2024-05-12 11:24:28 +08:00
<insert id= "insertOAQuot" parameterType= "OAQuot" >
insert into OAQuot
<trim prefix= "(" suffix= ")" suffixOverrides= "," >
<if test= "quot_id != null" > quot_id,</if>
<if test= "quotCode != null and quotCode != ''" > quotCode,</if>
<if test= "quotCustomer != null and quotCustomer != ''" > quotCustomer,</if>
<if test= "quotProject != null and quotProject != ''" > quotProject,</if>
<if test= "quotLxr != null and quotLxr != ''" > quotLxr,</if>
<if test= "quotLxrdh != null and quotLxrdh != ''" > quotLxrdh,</if>
<if test= "createBy != null and createBy != ''" > create_by,</if>
create_time
</trim>
<trim prefix= "values (" suffix= ")" suffixOverrides= "," >
<if test= "quot_id != null" > #{quot_id},</if>
<if test= "quotCode != null and quotCode != ''" > #{quotCode},</if>
<if test= "quotCustomer != null and quotCustomer != ''" > #{quotCustomer},</if>
<if test= "quotProject != null and quotProject != ''" > #{quotProject},</if>
<if test= "quotLxr != null and quotLxr != ''" > #{quotLxr},</if>
<if test= "quotLxrdh != null and quotLxrdh != ''" > #{quotLxrdh},</if>
<if test= "createBy != null and createBy != ''" > #{createBy},</if>
getdate()
</trim>
</insert>
<insert id= "batchOAQuotProduct" >
insert into OAQuotProduct(quot_product_id, name_0, spec, voltage,stu,setPrice,count,allPrice,quot_id) values
<foreach item= "item" index= "index" collection= "list" separator= "," >
( #{item.quot_product_id}, #{item.name_0}, #{item.spec}, #{item.voltage}, #{item.stu},cast(#{item.setPrice,jdbcType=DECIMAL} as decimal(18,2)), cast(#{item.count,jdbcType=DECIMAL} as decimal(18,3)), cast(#{item.allPrice,jdbcType=DECIMAL} as decimal(18,2)), #{item.quot_id})
</foreach>
</insert>
2024-05-09 17:17:03 +08:00
</mapper>