Commit 3131375a authored by Antonio.Suerte's avatar Antonio.Suerte

Adjusted Maximum Withdrawal Limit [DEBUG]

parent 020921e5
......@@ -479,7 +479,7 @@ class WithdrawModelClass extends ModelClassEx {
$rtn = false;
}
if($this -> amount >= 500000){
if($this -> amount > 500000){
$this -> popUpSessionMessage(ERROR, 'E_ERROR_AMOUNT', array());
$rtn = false;
}
......@@ -2211,14 +2211,6 @@ class WithdrawModelClass extends ModelClassEx {
return;
}
public function getPendingWithdrawalTransactions(){
$userAccount = (is_null($this -> user)
? $this -> getUserData(PARAM_USER_ACCOUNT)
: $this -> getColumnData($this -> user, PARAM_USER_ACCOUNT));
return $this -> accessSelect("LIST_FLAT3_PENDING_WITHDRAWALS", [$userAccount]);
}
public function getOutStatus()
{
$rtn = array();
......
......@@ -209,6 +209,11 @@ class Common extends HtmlBuilder {
, $paramArr));
}
public function getPendingWithdrawalTransactions(){
return $this -> accessSelect("LIST_FLAT3_PENDING_WITHDRAWALS",
[$this -> getUserData(PARAM_USER_ACCOUNT)]);
}
/*-------------------------------------------------------------------------
* @function_name: 共通関数セッションメッセージHTMLを取得
* @parameter : なし
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment