|
|
|
@ -66,68 +66,125 @@
|
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
<select id="selectWmsRawOrderInList" parameterType="WmsRawOrderIn" resultMap="WmsRawOrderInResult">
|
|
|
|
|
<include refid="selectWmsRawOrderInVo"/>
|
|
|
|
|
SELECT
|
|
|
|
|
wms_raw_order_in.raw_order_in_id,
|
|
|
|
|
wms_raw_order_in.factory_code,
|
|
|
|
|
wms_raw_order_in.wh_code,
|
|
|
|
|
wms_raw_order_in.wa_code,
|
|
|
|
|
wms_raw_order_in.wl_code,
|
|
|
|
|
wms_raw_order_in.order_in_type,
|
|
|
|
|
wms_raw_order_in.order_no,
|
|
|
|
|
wms_raw_order_in.dn_no,
|
|
|
|
|
wms_raw_order_in.po_no,
|
|
|
|
|
wms_raw_order_in.po_line,
|
|
|
|
|
wms_raw_order_in.po_type,
|
|
|
|
|
wms_raw_order_in.material_code,
|
|
|
|
|
wms_raw_order_in.material_desc,
|
|
|
|
|
wms_raw_order_in.unit,
|
|
|
|
|
wms_raw_order_in.buyer_group,
|
|
|
|
|
wms_raw_order_in.supply_code,
|
|
|
|
|
wms_raw_order_in.sap_factory_code,
|
|
|
|
|
wms_raw_order_in.send_spot,
|
|
|
|
|
wms_raw_order_in.request_amount,
|
|
|
|
|
wms_raw_order_in.receipt_amount,
|
|
|
|
|
wms_raw_order_in.shelves_amount,
|
|
|
|
|
wms_raw_order_in.location,
|
|
|
|
|
wms_raw_order_in.request_time,
|
|
|
|
|
wms_raw_order_in.quality_status,
|
|
|
|
|
wms_raw_order_in.order_status,
|
|
|
|
|
wms_raw_order_in.receipt_operator,
|
|
|
|
|
wms_raw_order_in.receipt_time,
|
|
|
|
|
wms_raw_order_in.shelves_operator,
|
|
|
|
|
wms_raw_order_in.return_amount,
|
|
|
|
|
wms_raw_order_in.return_name,
|
|
|
|
|
wms_raw_order_in.return_time,
|
|
|
|
|
wms_raw_order_in.return_status,
|
|
|
|
|
wms_raw_order_in.shelves_time,
|
|
|
|
|
wms_raw_order_in.return_message,
|
|
|
|
|
wms_raw_order_in.accounting_status,
|
|
|
|
|
wms_raw_order_in.accounting_time,
|
|
|
|
|
wms_raw_order_in.accounting_message,
|
|
|
|
|
wms_raw_order_in.user_defined1,
|
|
|
|
|
wms_raw_order_in.user_defined2,
|
|
|
|
|
wms_raw_order_in.user_defined3,
|
|
|
|
|
wms_raw_order_in.user_defined4,
|
|
|
|
|
wms_raw_order_in.user_defined5,
|
|
|
|
|
wms_raw_order_in.user_defined6,
|
|
|
|
|
wms_raw_order_in.user_defined8,
|
|
|
|
|
wms_raw_order_in.user_defined9,
|
|
|
|
|
wms_raw_order_in.user_defined10,
|
|
|
|
|
wms_raw_order_in.create_by,
|
|
|
|
|
wms_raw_order_in.gmt_create,
|
|
|
|
|
wms_raw_order_in.last_modified_by,
|
|
|
|
|
wms_raw_order_in.gmt_modified,
|
|
|
|
|
ods_procure_order.User_Defined7 user_defined7,
|
|
|
|
|
wms_raw_order_in.active_flag
|
|
|
|
|
FROM
|
|
|
|
|
wms_raw_order_in
|
|
|
|
|
LEFT JOIN ods_procure_order ON wms_raw_order_in.order_no = ods_procure_order.User_Defined5
|
|
|
|
|
AND wms_raw_order_in.po_no= ods_procure_order.Procure_Code
|
|
|
|
|
AND wms_raw_order_in.po_line= ods_procure_order.User_Defined3
|
|
|
|
|
<where>
|
|
|
|
|
<if test="factoryCode != null and factoryCode != ''">and factory_code = #{factoryCode}</if>
|
|
|
|
|
<if test="whCode != null and whCode != ''">and wh_code = #{whCode}</if>
|
|
|
|
|
<if test="waCode != null and waCode != ''">and wa_code = #{waCode}</if>
|
|
|
|
|
<if test="wlCode != null and wlCode != ''">and wl_code = #{wlCode}</if>
|
|
|
|
|
<if test="orderInType != null and orderInType != ''">and order_in_type = #{orderInType}</if>
|
|
|
|
|
<if test="orderNo != null and orderNo != ''">and order_no = #{orderNo}</if>
|
|
|
|
|
<if test="dnNo != null and dnNo != ''">and dn_no = #{dnNo}</if>
|
|
|
|
|
<if test="poNo != null and poNo != ''">and po_no = #{poNo}</if>
|
|
|
|
|
<if test="poLine != null and poLine != ''">and po_line = #{poLine}</if>
|
|
|
|
|
<if test="poType != null and poType != ''">and po_type = #{poType}</if>
|
|
|
|
|
<if test="materialCode != null and materialCode != ''">and material_code like concat('%', #{materialCode},
|
|
|
|
|
<if test="factoryCode != null and factoryCode != ''">and wms_raw_order_in.factory_code = #{factoryCode}</if>
|
|
|
|
|
<if test="whCode != null and whCode != ''">and wms_raw_order_in.wh_code = #{whCode}</if>
|
|
|
|
|
<if test="waCode != null and waCode != ''">and wms_raw_order_in.wa_code = #{waCode}</if>
|
|
|
|
|
<if test="wlCode != null and wlCode != ''">and wms_raw_order_in.wl_code = #{wlCode}</if>
|
|
|
|
|
<if test="orderInType != null and orderInType != ''">and wms_raw_order_in.order_in_type = #{orderInType}</if>
|
|
|
|
|
<if test="orderNo != null and orderNo != ''">and wms_raw_order_in.order_no = #{orderNo}</if>
|
|
|
|
|
<if test="dnNo != null and dnNo != ''">and wms_raw_order_in.dn_no = #{dnNo}</if>
|
|
|
|
|
<if test="poNo != null and poNo != ''">and wms_raw_order_in.po_no = #{poNo}</if>
|
|
|
|
|
<if test="poLine != null and poLine != ''">and wms_raw_order_in.po_line = #{poLine}</if>
|
|
|
|
|
<if test="poType != null and poType != ''">and wms_raw_order_in.po_type = #{poType}</if>
|
|
|
|
|
<if test="materialCode != null and materialCode != ''">and wms_raw_order_in.material_code like concat('%', #{materialCode},
|
|
|
|
|
'%') </if>
|
|
|
|
|
<if test="materialDesc != null and materialDesc != ''">and material_desc like concat('%', #{materialDesc},
|
|
|
|
|
<if test="materialDesc != null and materialDesc != ''">and wms_raw_order_in.material_desc like concat('%', #{materialDesc},
|
|
|
|
|
'%') </if>
|
|
|
|
|
<if test="unit != null and unit != ''">and unit = #{unit}</if>
|
|
|
|
|
<if test="buyerGroup != null and buyerGroup != ''">and buyer_group = #{buyerGroup}</if>
|
|
|
|
|
<if test="supplyCode != null and supplyCode != ''">and supply_code like concat('%', #{supplyCode}, '%')
|
|
|
|
|
<if test="unit != null and unit != ''">and wms_raw_order_in.unit = #{unit}</if>
|
|
|
|
|
<if test="buyerGroup != null and buyerGroup != ''">and wms_raw_order_in.buyer_group = #{buyerGroup}</if>
|
|
|
|
|
<if test="supplyCode != null and supplyCode != ''">and wms_raw_order_in.supply_code like concat('%', #{supplyCode}, '%')
|
|
|
|
|
</if>
|
|
|
|
|
<if test="sapFactoryCode != null and sapFactoryCode != ''">and sap_factory_code = #{sapFactoryCode}</if>
|
|
|
|
|
<if test="sendSpot != null and sendSpot != ''">and send_spot = #{sendSpot}</if>
|
|
|
|
|
<if test="requestAmount != null ">and request_amount = #{requestAmount}</if>
|
|
|
|
|
<if test="receiptAmount != null ">and receipt_amount = #{receiptAmount}</if>
|
|
|
|
|
<if test="shelvesAmount != null ">and shelves_amount = #{shelvesAmount}</if>
|
|
|
|
|
<if test="location != null and location != ''">and location = #{location}</if>
|
|
|
|
|
<if test="requestTime != null ">and request_time = #{requestTime}</if>
|
|
|
|
|
<if test="qualityStatus != null and qualityStatus != ''">and quality_status = #{qualityStatus}</if>
|
|
|
|
|
<if test="orderStatus != null and orderStatus != ''">and order_status = #{orderStatus}</if>
|
|
|
|
|
<if test="receiptOperator != null and receiptOperator != ''">and receipt_operator = #{receiptOperator}</if>
|
|
|
|
|
<if test="receiptTime != null ">and receipt_time = #{receiptTime}</if>
|
|
|
|
|
<if test="shelvesOperator != null and shelvesOperator != ''">and shelves_operator = #{shelvesOperator}</if>
|
|
|
|
|
<if test="returnAmount != null ">and return_amount = #{returnAmount}</if>
|
|
|
|
|
<if test="returnName != null and returnName != ''">and return_name like concat('%', #{returnName}, '%')
|
|
|
|
|
<if test="sapFactoryCode != null and sapFactoryCode != ''">and wms_raw_order_in.sap_factory_code = #{sapFactoryCode}</if>
|
|
|
|
|
<if test="sendSpot != null and sendSpot != ''">and wms_raw_order_in.send_spot = #{sendSpot}</if>
|
|
|
|
|
<if test="requestAmount != null ">and wms_raw_order_in.request_amount = #{requestAmount}</if>
|
|
|
|
|
<if test="receiptAmount != null ">and wms_raw_order_in.receipt_amount = #{receiptAmount}</if>
|
|
|
|
|
<if test="shelvesAmount != null ">and wms_raw_order_in.shelves_amount = #{shelvesAmount}</if>
|
|
|
|
|
<if test="location != null and location != ''">and wms_raw_order_in.location = #{location}</if>
|
|
|
|
|
<if test="requestTime != null ">and wms_raw_order_in.request_time = #{requestTime}</if>
|
|
|
|
|
<if test="qualityStatus != null and qualityStatus != ''">and wms_raw_order_in.quality_status = #{qualityStatus}</if>
|
|
|
|
|
<if test="orderStatus != null and orderStatus != ''">and wms_raw_order_in.order_status = #{orderStatus}</if>
|
|
|
|
|
<if test="receiptOperator != null and receiptOperator != ''">and wms_raw_order_in.receipt_operator = #{receiptOperator}</if>
|
|
|
|
|
<if test="receiptTime != null ">and wms_raw_order_in.receipt_time = #{receiptTime}</if>
|
|
|
|
|
<if test="shelvesOperator != null and shelvesOperator != ''">and wms_raw_order_in.shelves_operator = #{shelvesOperator}</if>
|
|
|
|
|
<if test="returnAmount != null ">and wms_raw_order_in.return_amount = #{returnAmount}</if>
|
|
|
|
|
<if test="returnName != null and returnName != ''">and wms_raw_order_in.return_name like concat('%', #{returnName}, '%')
|
|
|
|
|
</if>
|
|
|
|
|
<if test="returnTime != null ">and return_time = #{returnTime}</if>
|
|
|
|
|
<if test="returnStatus != null and returnStatus != ''">and return_status = #{returnStatus}</if>
|
|
|
|
|
<if test="shelvesTime != null ">and shelves_time = #{shelvesTime}</if>
|
|
|
|
|
<if test="returnMessage != null and returnMessage != ''">and return_message = #{returnMessage}</if>
|
|
|
|
|
<if test="accountingStatus != null and accountingStatus != ''">and accounting_status =
|
|
|
|
|
<if test="returnTime != null ">and wms_raw_order_in.return_time = #{returnTime}</if>
|
|
|
|
|
<if test="returnStatus != null and returnStatus != ''">and wms_raw_order_in.return_status = #{returnStatus}</if>
|
|
|
|
|
<if test="shelvesTime != null ">and wms_raw_order_in.shelves_time = #{shelvesTime}</if>
|
|
|
|
|
<if test="returnMessage != null and returnMessage != ''">and wms_raw_order_in.return_message = #{returnMessage}</if>
|
|
|
|
|
<if test="accountingStatus != null and accountingStatus != ''">and wms_raw_order_in.accounting_status =
|
|
|
|
|
#{accountingStatus}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="accountingTime != null ">and accounting_time = #{accountingTime}</if>
|
|
|
|
|
<if test="accountingMessage != null and accountingMessage != ''">and accounting_message =
|
|
|
|
|
<if test="accountingTime != null ">and wms_raw_order_in.accounting_time = #{accountingTime}</if>
|
|
|
|
|
<if test="accountingMessage != null and accountingMessage != ''">and wms_raw_order_in.accounting_message =
|
|
|
|
|
#{accountingMessage}
|
|
|
|
|
</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="gmtCreate != null ">and gmt_create = #{gmtCreate}</if>
|
|
|
|
|
<if test="lastModifiedBy != null and lastModifiedBy != ''">and last_modified_by = #{lastModifiedBy}</if>
|
|
|
|
|
<if test="gmtModified != null ">and gmt_modified = #{gmtModified}</if>
|
|
|
|
|
<if test="activeFlag != null and activeFlag != ''">and active_flag = #{activeFlag}</if>
|
|
|
|
|
<if test="userDefined1 != null and userDefined1 != ''">and wms_raw_order_in.user_defined1 = #{userDefined1}</if>
|
|
|
|
|
<if test="userDefined2 != null and userDefined2 != ''">and wms_raw_order_in.user_defined2 = #{userDefined2}</if>
|
|
|
|
|
<if test="userDefined3 != null and userDefined3 != ''">and wms_raw_order_in.user_defined3 = #{userDefined3}</if>
|
|
|
|
|
<if test="userDefined4 != null and userDefined4 != ''">and wms_raw_order_in.user_defined4 = #{userDefined4}</if>
|
|
|
|
|
<if test="userDefined5 != null and userDefined5 != ''">and wms_raw_order_in.user_defined5 = #{userDefined5}</if>
|
|
|
|
|
<if test="userDefined6 != null and userDefined6 != ''">and wms_raw_order_in.user_defined6 = #{userDefined6}</if>
|
|
|
|
|
<if test="userDefined7 != null and userDefined7 != ''">and wms_raw_order_in.user_defined7 = #{userDefined7}</if>
|
|
|
|
|
<if test="userDefined8 != null and userDefined8 != ''">and wms_raw_order_in.user_defined8 = #{userDefined8}</if>
|
|
|
|
|
<if test="userDefined9 != null and userDefined9 != ''">and wms_raw_order_in.user_defined9 = #{userDefined9}</if>
|
|
|
|
|
<if test="userDefined10 != null and userDefined10 != ''">and wms_raw_order_in.user_defined10 = #{userDefined10}</if>
|
|
|
|
|
<if test="gmtCreate != null ">and wms_raw_order_in.gmt_create = #{gmtCreate}</if>
|
|
|
|
|
<if test="lastModifiedBy != null and lastModifiedBy != ''">and wms_raw_order_in.last_modified_by = #{lastModifiedBy}</if>
|
|
|
|
|
<if test="gmtModified != null ">and wms_raw_order_in.gmt_modified = #{gmtModified}</if>
|
|
|
|
|
<if test="activeFlag != null and activeFlag != ''">and wms_raw_order_in.active_flag = #{activeFlag}</if>
|
|
|
|
|
</where>
|
|
|
|
|
ORDER BY gmt_create DESC
|
|
|
|
|
ORDER BY wms_raw_order_in.gmt_create DESC
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<select id="selectWmsRawOrderInByRawOrderInId" parameterType="String" resultMap="WmsRawOrderInResult">
|
|
|
|
@ -423,7 +480,7 @@
|
|
|
|
|
FROM
|
|
|
|
|
qc_check_task
|
|
|
|
|
WHERE
|
|
|
|
|
order_no = #{poNo}
|
|
|
|
|
order_no = #{userDefined6}
|
|
|
|
|
AND material_code like concat('%', #{materialCode}, '%')
|
|
|
|
|
</select>
|
|
|
|
|
</mapper>
|
|
|
|
|