|
|
|
@ -405,4 +405,36 @@
|
|
|
|
|
gmt_create DESC;
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
|
<select id="selectSapOdsMateStorageNewsList" parameterType="com.op.wms.domain.SapOdsMateStorageNews" resultType="com.op.wms.domain.SapOdsMateStorageNews">
|
|
|
|
|
SELECT
|
|
|
|
|
storage_id storageId,
|
|
|
|
|
WERKS werks,
|
|
|
|
|
LGORT lgort,
|
|
|
|
|
CHARG charg,
|
|
|
|
|
MAKTX maktx,
|
|
|
|
|
MATKL matkl,
|
|
|
|
|
MATNR matnr,
|
|
|
|
|
MEINS meins,
|
|
|
|
|
CLABS clabs,
|
|
|
|
|
CINSM cinsm,
|
|
|
|
|
CEINM ceinm,
|
|
|
|
|
CSPEM cspem
|
|
|
|
|
FROM
|
|
|
|
|
sap_ods_mate_storage_news
|
|
|
|
|
<where>
|
|
|
|
|
<if test="storageId != null and storageId != ''">and storage_id = #{storageId}</if>
|
|
|
|
|
<if test="werks != null and werks != ''">and WERKS = #{werks}</if>
|
|
|
|
|
<if test="lgort != null and lgort != ''">and LGORT = #{lgort}</if>
|
|
|
|
|
<if test="charg != null and charg != ''">and CHARG = #{charg}</if>
|
|
|
|
|
<if test="maktx != null and maktx != ''">and MAKTX like concat ( '%', #{maktx}, '%' )</if>
|
|
|
|
|
<if test="matkl != null and matkl != ''">and MATKL = #{matkl}</if>
|
|
|
|
|
<if test="matnr != null and matnr != ''">and MATNR like concat ( '%', #{matnr}, '%' )</if>
|
|
|
|
|
<if test="meins != null and meins != ''">and MEINS = #{meins}</if>
|
|
|
|
|
<if test="clabs != null ">and CLABS = #{clabs}</if>
|
|
|
|
|
<if test="cinsm != null ">and CINSM = #{cinsm}</if>
|
|
|
|
|
<if test="ceinm != null ">and CEINM = #{ceinm}</if>
|
|
|
|
|
<if test="cspem != null ">and CSPEM = #{cspem}</if>
|
|
|
|
|
</where>
|
|
|
|
|
ORDER BY MATNR
|
|
|
|
|
</select>
|
|
|
|
|
</mapper>
|
|
|
|
|