|
|
@ -1521,4 +1521,79 @@
|
|
|
|
set Sap_Number = #{order.sapNumber}
|
|
|
|
set Sap_Number = #{order.sapNumber}
|
|
|
|
where ID = #{order.ID}
|
|
|
|
where ID = #{order.ID}
|
|
|
|
</update>
|
|
|
|
</update>
|
|
|
|
|
|
|
|
<select id="listckTS" parameterType="OdsProcureOutOrder" resultMap="OdsProcureOutOrderResult">
|
|
|
|
|
|
|
|
SELECT
|
|
|
|
|
|
|
|
Site_code,
|
|
|
|
|
|
|
|
ID,
|
|
|
|
|
|
|
|
Produce_Code,
|
|
|
|
|
|
|
|
Material_Code,
|
|
|
|
|
|
|
|
Material_Desc,
|
|
|
|
|
|
|
|
Plan_Date,
|
|
|
|
|
|
|
|
Plan_Number,
|
|
|
|
|
|
|
|
Unit,
|
|
|
|
|
|
|
|
COALESCE ( Out_Number, 0 ) AS Out_Number,
|
|
|
|
|
|
|
|
Loc_Code,
|
|
|
|
|
|
|
|
Loc_Desc,
|
|
|
|
|
|
|
|
Production_Line_Desc,
|
|
|
|
|
|
|
|
Production_Line_Code,
|
|
|
|
|
|
|
|
Order_Status,
|
|
|
|
|
|
|
|
User_Defined1,
|
|
|
|
|
|
|
|
User_Defined2,
|
|
|
|
|
|
|
|
User_Defined3,
|
|
|
|
|
|
|
|
User_Defined4,
|
|
|
|
|
|
|
|
User_Defined5,
|
|
|
|
|
|
|
|
User_Defined6,
|
|
|
|
|
|
|
|
User_Defined7,
|
|
|
|
|
|
|
|
User_Defined8,
|
|
|
|
|
|
|
|
User_Defined9,
|
|
|
|
|
|
|
|
User_Defined10,
|
|
|
|
|
|
|
|
User_Defined11,
|
|
|
|
|
|
|
|
Supplier_Code,
|
|
|
|
|
|
|
|
Supplier_Name,
|
|
|
|
|
|
|
|
Create_By,
|
|
|
|
|
|
|
|
Create_Date,
|
|
|
|
|
|
|
|
Last_Update_By,
|
|
|
|
|
|
|
|
Last_Update_Date,
|
|
|
|
|
|
|
|
Active,
|
|
|
|
|
|
|
|
Enterprise_Id,
|
|
|
|
|
|
|
|
Enterprise_Code
|
|
|
|
|
|
|
|
FROM
|
|
|
|
|
|
|
|
wms_ods_procure_out_order_special
|
|
|
|
|
|
|
|
<where>
|
|
|
|
|
|
|
|
<if test="siteCode != null and siteCode != ''"> and Site_code = #{siteCode}</if>
|
|
|
|
|
|
|
|
<if test="produceCode != null and produceCode != ''"> and Produce_Code = #{produceCode}</if>
|
|
|
|
|
|
|
|
<if test="materialCode != null and materialCode != ''"> and Material_Code = #{materialCode}</if>
|
|
|
|
|
|
|
|
<if test="materialDesc != null and materialDesc != ''"> and Material_Desc = #{materialDesc}</if>
|
|
|
|
|
|
|
|
<if test="planDate != null "> and Plan_Date = #{planDate}</if>
|
|
|
|
|
|
|
|
<if test="planNumber != null "> and Plan_Number = #{planNumber}</if>
|
|
|
|
|
|
|
|
<if test="Unit != null and Unit != ''"> and Unit = #{Unit}</if>
|
|
|
|
|
|
|
|
<if test="outNumber != null "> and Out_Number = #{outNumber}</if>
|
|
|
|
|
|
|
|
<if test="locCode != null and locCode != ''"> and Loc_Code = #{locCode}</if>
|
|
|
|
|
|
|
|
<if test="locDesc != null and locDesc != ''"> and Loc_Desc = #{locDesc}</if>
|
|
|
|
|
|
|
|
<if test="productionLineDesc != null and productionLineDesc != ''"> and Production_Line_Desc = #{productionLineDesc}</if>
|
|
|
|
|
|
|
|
<if test="productionLineCode != null and productionLineCode != ''"> and Production_Line_Code = #{productionLineCode}</if>
|
|
|
|
|
|
|
|
<if test="orderStatus != null and orderStatus != ''"> and Order_Status = #{orderStatus}</if>
|
|
|
|
|
|
|
|
<if test="userDefined1 != null and userDefined1 != ''"> and User_Defined1 = #{userDefined1}</if>
|
|
|
|
|
|
|
|
<if test="userDefined2 != null and userDefined2 != ''"> and User_Defined2 = #{userDefined2}</if>
|
|
|
|
|
|
|
|
<if test="userDefined3 != null and userDefined3 != ''"> and User_Defined3 = #{userDefined3}</if>
|
|
|
|
|
|
|
|
<if test="userDefined4 != null and userDefined4 != ''"> and User_Defined4 = #{userDefined4}</if>
|
|
|
|
|
|
|
|
<if test="userDefined5 != null and userDefined5 != ''"> and User_Defined5 = #{userDefined5}</if>
|
|
|
|
|
|
|
|
<if test="userDefined6 != null and userDefined6 != ''"> and User_Defined6 = #{userDefined6}</if>
|
|
|
|
|
|
|
|
<if test="userDefined7 != null and userDefined7 != ''"> and User_Defined7 = #{userDefined7}</if>
|
|
|
|
|
|
|
|
<if test="userDefined8 != null and userDefined8 != ''"> and User_Defined8 = #{userDefined8}</if>
|
|
|
|
|
|
|
|
<if test="userDefined9 != null and userDefined9 != ''"> and User_Defined9 = #{userDefined9}</if>
|
|
|
|
|
|
|
|
<if test="userDefined10 != null and userDefined10 != ''"> and User_Defined10 = #{userDefined10}</if>
|
|
|
|
|
|
|
|
<if test="userDefined11 != null and userDefined11 != ''"> and User_Defined11 = #{userDefined11}</if>
|
|
|
|
|
|
|
|
<if test="supplierCode != null and supplierCode != ''"> and Supplier_Code = #{supplierCode}</if>
|
|
|
|
|
|
|
|
<if test="supplierName != null and supplierName != ''"> and Supplier_Name like concat('%', #{supplierName}, '%')</if>
|
|
|
|
|
|
|
|
<if test="createBy != null and createBy != ''"> and Create_By = #{createBy}</if>
|
|
|
|
|
|
|
|
<if test="createDate != null "> and Create_Date = #{createDate}</if>
|
|
|
|
|
|
|
|
<if test="lastUpdateBy != null and lastUpdateBy != ''"> and Last_Update_By = #{lastUpdateBy}</if>
|
|
|
|
|
|
|
|
<if test="lastUpdateDate != null "> and Last_Update_Date = #{lastUpdateDate}</if>
|
|
|
|
|
|
|
|
<if test="Active != null and Active != ''"> and Active = #{Active}</if>
|
|
|
|
|
|
|
|
<if test="enterpriseId != null and enterpriseId != ''"> and Enterprise_Id = #{enterpriseId}</if>
|
|
|
|
|
|
|
|
<if test="enterpriseCode != null and enterpriseCode != ''"> and Enterprise_Code = #{enterpriseCode}</if>
|
|
|
|
|
|
|
|
</where>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
</mapper>
|
|
|
|
</mapper>
|
|
|
|