|
|
@ -400,24 +400,24 @@ |
|
|
resultType="com.xujie.sys.modules.quote.entity.PriceCheckProperties"> |
|
|
resultType="com.xujie.sys.modules.quote.entity.PriceCheckProperties"> |
|
|
select |
|
|
select |
|
|
site, |
|
|
site, |
|
|
ItemType as functionType, |
|
|
|
|
|
ItemNo, |
|
|
|
|
|
ItemDesc, |
|
|
|
|
|
DefaultValue, |
|
|
|
|
|
ValueType, |
|
|
|
|
|
ValueType_DB, |
|
|
|
|
|
ValueChooseFlag, |
|
|
|
|
|
MaxValue, |
|
|
|
|
|
MinValue |
|
|
|
|
|
from plm_properties_item where itemType = #{type} and site = #{site} |
|
|
|
|
|
|
|
|
item_type as functionType, |
|
|
|
|
|
item_no, |
|
|
|
|
|
item_desc, |
|
|
|
|
|
default_value, |
|
|
|
|
|
value_type, |
|
|
|
|
|
value_type_db, |
|
|
|
|
|
value_choose_flag, |
|
|
|
|
|
max_value, |
|
|
|
|
|
min_value |
|
|
|
|
|
from plm_properties_item where item_type = #{type} and site = #{site} |
|
|
<if test="itemNo != null and itemNo != ''"> |
|
|
<if test="itemNo != null and itemNo != ''"> |
|
|
AND ItemNo = #{itemNo} |
|
|
|
|
|
|
|
|
AND item_no = #{itemNo} |
|
|
</if> |
|
|
</if> |
|
|
<if test="itemDesc != null and itemDesc != ''"> |
|
|
<if test="itemDesc != null and itemDesc != ''"> |
|
|
AND ItemDesc like #{itemDesc} |
|
|
|
|
|
|
|
|
AND item_desc like #{itemDesc} |
|
|
</if> |
|
|
</if> |
|
|
<if test="list != null and list.size() != 0"> |
|
|
<if test="list != null and list.size() != 0"> |
|
|
and ItemNo not in ( |
|
|
|
|
|
|
|
|
and item_no not in ( |
|
|
<foreach collection="list" item="item" separator=","> |
|
|
<foreach collection="list" item="item" separator=","> |
|
|
#{item} |
|
|
#{item} |
|
|
</foreach> |
|
|
</foreach> |
|
|
|