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;
     }