|
|
|
@ -59,6 +59,14 @@
|
|
|
|
|
<result property="activeFlag" column="active_flag"/>
|
|
|
|
|
<result property="incomeBatchNo" column="incomeBatchNo"/>
|
|
|
|
|
<result property="kem" column="kem"/>
|
|
|
|
|
<result property="procureCode" column="Procure_Code"/>
|
|
|
|
|
<result property="operationNumber" column="Operation_Number"/>
|
|
|
|
|
<result property="createDate" column="Create_Date"/>
|
|
|
|
|
<result property="checktime" column="checktime"/>
|
|
|
|
|
<result property="createtime" column="createtime"/>
|
|
|
|
|
<result property="checkManCode" column="checkManCode"/>
|
|
|
|
|
<result property="checkManName" column="checkManName"/>
|
|
|
|
|
<result property="accountingtime" column="accountingtime"/>
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<sql id="selectWmsRawOrderInVo">
|
|
|
|
@ -548,4 +556,36 @@
|
|
|
|
|
order_no = #{userDefined6}
|
|
|
|
|
AND material_code like concat('%', #{materialCode}, '%')
|
|
|
|
|
</select>
|
|
|
|
|
<select id="listInspectionReport" resultMap="WmsRawOrderInResult">
|
|
|
|
|
SELECT DISTINCT
|
|
|
|
|
ods_procure_order.User_Defined5,
|
|
|
|
|
ods_procure_order.Procure_Code,
|
|
|
|
|
ods_procure_order.Material_Code material_code,
|
|
|
|
|
ods_procure_order.Material_Desc material_desc,
|
|
|
|
|
ods_procure_order.Operation_Number,
|
|
|
|
|
ods_procure_order.Create_By create_by,
|
|
|
|
|
ods_procure_order.Create_Date ,
|
|
|
|
|
qc_check_task.create_time createtime,
|
|
|
|
|
qc_check_task.check_time checktime,
|
|
|
|
|
qc_check_task.check_man_code checkManCode,
|
|
|
|
|
qc_check_task.check_man_name checkManName,
|
|
|
|
|
wms_raw_order_in.accounting_time accountingtime,
|
|
|
|
|
wms_raw_order_in.gmt_create,
|
|
|
|
|
wms_raw_order_in.receipt_operator
|
|
|
|
|
FROM
|
|
|
|
|
ods_procure_order
|
|
|
|
|
LEFT JOIN qc_check_task ON CONCAT ( ods_procure_order.Procure_Code, ods_procure_order.User_Defined7 ) = qc_check_task.order_no
|
|
|
|
|
AND check_type = 'checkTypeLL'
|
|
|
|
|
LEFT JOIN wms_raw_order_in ON wms_raw_order_in.order_no = ods_procure_order.User_Defined5
|
|
|
|
|
AND wms_raw_order_in.po_no= ods_procure_order.Procure_Code
|
|
|
|
|
WHERE
|
|
|
|
|
ods_procure_order.Operation_Number IS NOT NULL
|
|
|
|
|
<if test="userDefined5 != null and userDefined5 != ''">and ods_procure_order.User_Defined5 = #{userDefined5}</if>
|
|
|
|
|
<if test="procureCode != null and procureCode != ''">and ods_procure_order.Procure_Code = #{procureCode}</if>
|
|
|
|
|
<if test="materialCode != null and materialCode != ''">and ods_procure_order.Material_Code like concat('%', #{materialCode},
|
|
|
|
|
'%') </if>
|
|
|
|
|
<if test="materialDesc != null and materialDesc != ''">and ods_procure_order.Material_Desc = #{materialDesc}</if>
|
|
|
|
|
ORDER BY
|
|
|
|
|
ods_procure_order.Create_Date DESC
|
|
|
|
|
</select>
|
|
|
|
|
</mapper>
|
|
|
|
|