瀏覽代碼

[CODE]: 费用倒序、客户倒序

maxianghua 4 年之前
父節點
當前提交
8b435be38c

+ 1 - 0
ruoyi-warehouse/src/main/resources/mapper/basicData/TCorpsMapper.xml

@@ -76,6 +76,7 @@
             <if test="fUbankname != null  and fUbankname != ''">and f_ubankname like concat('%', #{fUbankname}, '%')
             </if>
             <if test="fStatus != null  and fStatus != ''">and f_status = #{fStatus}</if>
+            ORDER BY  CONVERT(f_name USING gbk)
         </where>
     </select>
 

+ 1 - 0
ruoyi-warehouse/src/main/resources/mapper/basicData/TFeesMapper.xml

@@ -34,6 +34,7 @@
             <if test="fCurrency != null  and fCurrency != ''">and f_currency like concat('%', #{fCurrency}, '%')</if>
             <if test="fStatus != null  and fStatus != ''">and f_status = #{fStatus}</if>
         </where>
+        ORDER BY CONVERT(f_name USING gbk)
     </select>
 
     <select id="selectTFeesById" parameterType="Long" resultMap="TFeesResult">