|
|
@ -12,7 +12,6 @@
|
|
|
|
<if test="action != null and action != ''">
|
|
|
|
<if test="action != null and action != ''">
|
|
|
|
AND bu.action like concat('%', #{action}, '%')
|
|
|
|
AND bu.action like concat('%', #{action}, '%')
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
|
|
<if test="inStock != null">
|
|
|
|
<if test="inStock != null">
|
|
|
|
AND bu.inStock = #{inStock}
|
|
|
|
AND bu.inStock = #{inStock}
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
@ -53,7 +52,7 @@
|
|
|
|
]]>
|
|
|
|
]]>
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
</where>
|
|
|
|
</where>
|
|
|
|
order by bu.updateTime desc
|
|
|
|
order by bu.sortNum desc
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
<insert id="insertIgnoreBussinessType" parameterType="com.glxp.api.entity.basic.BasicBussinessTypeEntity">
|
|
|
|
<insert id="insertIgnoreBussinessType" parameterType="com.glxp.api.entity.basic.BasicBussinessTypeEntity">
|
|
|
@ -70,7 +69,8 @@
|
|
|
|
vailGroupBuy, busType, inStock, actionType, thrCheckEnable, thrCheckWebNew,
|
|
|
|
vailGroupBuy, busType, inStock, actionType, thrCheckEnable, thrCheckWebNew,
|
|
|
|
thrCheckPdaUn, thrCheckPdaEd, thrCheckUdims, thrCheckPc, thrCheckSp,
|
|
|
|
thrCheckPdaUn, thrCheckPdaEd, thrCheckUdims, thrCheckPc, thrCheckSp,
|
|
|
|
thrCheckChange, thrCheckBalance, thrCheckCopy, fillCodeRel, checkVailDate,
|
|
|
|
thrCheckChange, thrCheckBalance, thrCheckCopy, fillCodeRel, checkVailDate,
|
|
|
|
checkExpire, checkCertExpire, preInBackAction, backPreinType, checkPreInOrders)
|
|
|
|
checkExpire, checkCertExpire, preInBackAction, backPreinType, checkPreInOrders,
|
|
|
|
|
|
|
|
sortNum)
|
|
|
|
values (#{mainAction}, #{action}, #{name}, #{enable}, #{remark}, #{thirdSysFk}, #{genUnit}, #{innerOrder},
|
|
|
|
values (#{mainAction}, #{action}, #{name}, #{enable}, #{remark}, #{thirdSysFk}, #{genUnit}, #{innerOrder},
|
|
|
|
#{secCheckEnable}, #{checkEnable}, #{checkUdims}, #{checkPdaEd}, #{checkPdaUn}, #{checkPc},
|
|
|
|
#{secCheckEnable}, #{checkEnable}, #{checkUdims}, #{checkPdaEd}, #{checkPdaUn}, #{checkPc},
|
|
|
|
#{checkWebNew}, #{checkSp}, #{checkChange}, #{secCheckUdims}, #{secCheckPdaEd}, #{secCheckPdaUn},
|
|
|
|
#{checkWebNew}, #{checkSp}, #{checkChange}, #{secCheckUdims}, #{secCheckPdaEd}, #{secCheckPdaUn},
|
|
|
@ -82,7 +82,8 @@
|
|
|
|
#{vailGroupBuy}, #{busType}, #{inStock}, #{actionType}, #{thrCheckEnable}, #{thrCheckWebNew},
|
|
|
|
#{vailGroupBuy}, #{busType}, #{inStock}, #{actionType}, #{thrCheckEnable}, #{thrCheckWebNew},
|
|
|
|
#{thrCheckPdaUn}, #{thrCheckPdaEd}, #{thrCheckUdims}, #{thrCheckPc}, #{thrCheckSp},
|
|
|
|
#{thrCheckPdaUn}, #{thrCheckPdaEd}, #{thrCheckUdims}, #{thrCheckPc}, #{thrCheckSp},
|
|
|
|
#{thrCheckChange}, #{thrCheckBalance}, #{thrCheckCopy}, #{fillCodeRel}, #{checkVailDate},
|
|
|
|
#{thrCheckChange}, #{thrCheckBalance}, #{thrCheckCopy}, #{fillCodeRel}, #{checkVailDate},
|
|
|
|
#{checkExpire}, #{checkCertExpire}, #{preInBackAction}, #{backPreinType}, #{checkPreInOrders})
|
|
|
|
#{checkExpire}, #{checkCertExpire}, #{preInBackAction}, #{backPreinType}, #{checkPreInOrders},
|
|
|
|
|
|
|
|
#{sortNum})
|
|
|
|
</insert>
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectBusList" resultType="com.glxp.api.entity.basic.BasicBussinessTypeEntity">
|
|
|
|
<select id="selectBusList" resultType="com.glxp.api.entity.basic.BasicBussinessTypeEntity">
|
|
|
@ -122,7 +123,9 @@
|
|
|
|
<if test="corpType != null">
|
|
|
|
<if test="corpType != null">
|
|
|
|
AND bu.corpType = #{corpType}
|
|
|
|
AND bu.corpType = #{corpType}
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="sortNum != null">
|
|
|
|
|
|
|
|
AND bu.sortNum = #{sortNum}
|
|
|
|
|
|
|
|
</if>
|
|
|
|
<if test="actionList != null and actionList.size() != 0">
|
|
|
|
<if test="actionList != null and actionList.size() != 0">
|
|
|
|
AND bu.action in
|
|
|
|
AND bu.action in
|
|
|
|
<foreach collection="actionList" index="index" item="item" separator="," open="(" close=")">
|
|
|
|
<foreach collection="actionList" index="index" item="item" separator="," open="(" close=")">
|
|
|
|