vali 6 年之前
父節點
當前提交
d5f6cecbb8
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/Logic/UnSettmatchLogic.php

+ 1 - 1
app/Logic/UnSettmatchLogic.php

@@ -256,7 +256,7 @@ class UnSettmatchLogic
         $ret = $moneyDetail->save();
 
         $nowmoney = $Accobj->detail->cash + $money;
-        DB::update('account_detail')->where('account_identity', $OrderObj->account_identity)->update(['money_cash' => $nowmoney, 'cash' => $nowmoney]);
+        DB::table('account_detailed')->where('account_identity', $OrderObj->account_identity)->update(['money_cash' => $nowmoney, 'cash' => $nowmoney]);
 
         return $ret;
     }