From 9e8ca40c8f3ffbfea1e6e4dfb30baaf050724e81 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Wed, 9 Nov 2022 21:07:13 +0800 Subject: [PATCH] 1 --- webapp/models/Transaction.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/models/Transaction.php b/webapp/models/Transaction.php index 74909e56..10ab2234 100644 --- a/webapp/models/Transaction.php +++ b/webapp/models/Transaction.php @@ -26,7 +26,8 @@ class Transaction extends BaseModel { myself()->_getSelfMysql(), 't_transaction', array( - 'account_id' => myself()->_getAccountId() + 'account_id' => myself()->_getAccountId(), + 'client_confirmed' => 1 ) ); return $rows; @@ -40,7 +41,6 @@ class Transaction extends BaseModel { array( 'account_id' => myself()->_getAccountId(), 'trans_id' => $transId, - 'client_confirmed' => 1 ) ); return $row;