3 Commits 1e3116dc61 ... 732ea5834a

Author SHA1 Message Date
  ZC 732ea5834a Merge remote-tracking branch 'origin/master' 2 weeks ago
  ZC d36e9e79d2 退款信息状态更新 2 weeks ago
  ZC 55b52876de 修改查询专家状态 2 weeks ago

+ 1 - 1
ruoyi-modules/hh-basic/src/main/resources/mapper/BsExpertMapper.xml

@@ -93,7 +93,7 @@
             <if test="jName != null  and jName != ''">and a.j_name like concat('%', #{jName}, '%')</if>
             <if test="jShState != null ">and a.j_sh_state = #{jShState}</if>
             <if test = "userId != null">and a.user_id = #{userId}</if>
-            and j_sex is not null and j_sh_state = 2
+            and j_sex is not null and j_sh_state = 3
         </where>
     </select>
 

+ 4 - 0
ruoyi-modules/hh-mast/src/main/java/com/ruoyi/mast/bank/controller/BankRefundController.java

@@ -157,6 +157,10 @@ public class BankRefundController extends BaseController {
         if (list.isEmpty()) return AjaxResult.error("");
         BankRefund bt = list.get(0);
 
+        if("5".equals(bankRefund.getRtnRfndst())){
+            return toAjax(bankRefundService.updateBankRefund(bankRefund))
+        }
+
         String rtnxml = postBank(bt);
 
         return toAjax(update(bt, rtnxml));