|
|
|
@ -53,7 +53,7 @@
|
|
|
|
|
]]>
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
order by bu.updateTime desc
|
|
|
|
|
order by bu.sortNum
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<insert id="insertIgnoreBussinessType" parameterType="com.glxp.api.entity.basic.BasicBussinessTypeEntity">
|
|
|
|
@ -70,7 +70,7 @@
|
|
|
|
|
vailGroupBuy, busType, inStock, actionType, thrCheckEnable, thrCheckWebNew,
|
|
|
|
|
thrCheckPdaUn, thrCheckPdaEd, thrCheckUdims, thrCheckPc, thrCheckSp,
|
|
|
|
|
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},
|
|
|
|
|
#{secCheckEnable}, #{checkEnable}, #{checkUdims}, #{checkPdaEd}, #{checkPdaUn}, #{checkPc},
|
|
|
|
|
#{checkWebNew}, #{checkSp}, #{checkChange}, #{secCheckUdims}, #{secCheckPdaEd}, #{secCheckPdaUn},
|
|
|
|
@ -82,7 +82,7 @@
|
|
|
|
|
#{vailGroupBuy}, #{busType}, #{inStock}, #{actionType}, #{thrCheckEnable}, #{thrCheckWebNew},
|
|
|
|
|
#{thrCheckPdaUn}, #{thrCheckPdaEd}, #{thrCheckUdims}, #{thrCheckPc}, #{thrCheckSp},
|
|
|
|
|
#{thrCheckChange}, #{thrCheckBalance}, #{thrCheckCopy}, #{fillCodeRel}, #{checkVailDate},
|
|
|
|
|
#{checkExpire}, #{checkCertExpire}, #{preInBackAction}, #{backPreinType}, #{checkPreInOrders})
|
|
|
|
|
#{checkExpire}, #{checkCertExpire}, #{preInBackAction}, #{backPreinType}, #{checkPreInOrders}, #{sortNum})
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
<select id="selectBusList" resultType="com.glxp.api.entity.basic.BasicBussinessTypeEntity">
|
|
|
|
@ -119,7 +119,15 @@
|
|
|
|
|
<if test="busType != null">
|
|
|
|
|
AND bu.busType = #{busType}
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
<if test="corpType != null">
|
|
|
|
|
AND bu.corpType = #{corpType}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="sortNum != null">
|
|
|
|
|
AND bu.sortNum = #{sortNum}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="actionType != null">
|
|
|
|
|
AND bu.actionType = #{actionType}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="actionList != null and actionList.size() != 0">
|
|
|
|
|
AND bu.action in
|
|
|
|
|
<foreach collection="actionList" index="index" item="item" separator="," open="(" close=")">
|
|
|
|
|