|
@@ -799,6 +799,7 @@
|
|
|
t2.production_plan_no,
|
|
|
t2.line_number,
|
|
|
t2.product_description as description,
|
|
|
+ t2.specification,
|
|
|
t3.lot_code,
|
|
|
t3.technology_version,
|
|
|
t3.production_quantity,
|
|
@@ -849,6 +850,9 @@
|
|
|
<if test="productDescription != null and productDescription != ''">
|
|
|
AND t2.product_description like concat('%',#{productDescription},'%')
|
|
|
</if>
|
|
|
+ <if test="specification != null and specification != ''">
|
|
|
+ AND t2.specification = #{specification}
|
|
|
+ </if>
|
|
|
<if test="furnaceNumber != null and furnaceNumber != ''">
|
|
|
AND t6.furnace_number = #{furnaceNumber}
|
|
|
</if>
|