Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
iwl-live
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Anthony.Suerte
iwl-live
Commits
3131375a
Commit
3131375a
authored
Aug 17, 2023
by
Antonio.Suerte
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjusted Maximum Withdrawal Limit [DEBUG]
parent
020921e5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
9 deletions
+6
-9
model.php
logic/withdraw/model.php
+1
-9
common.php
system/lib/common.php
+5
-0
No files found.
logic/withdraw/model.php
View file @
3131375a
...
@@ -479,7 +479,7 @@ class WithdrawModelClass extends ModelClassEx {
...
@@ -479,7 +479,7 @@ class WithdrawModelClass extends ModelClassEx {
$rtn
=
false
;
$rtn
=
false
;
}
}
if
(
$this
->
amount
>
=
500000
){
if
(
$this
->
amount
>
500000
){
$this
->
popUpSessionMessage
(
ERROR
,
'E_ERROR_AMOUNT'
,
array
());
$this
->
popUpSessionMessage
(
ERROR
,
'E_ERROR_AMOUNT'
,
array
());
$rtn
=
false
;
$rtn
=
false
;
}
}
...
@@ -2211,14 +2211,6 @@ class WithdrawModelClass extends ModelClassEx {
...
@@ -2211,14 +2211,6 @@ class WithdrawModelClass extends ModelClassEx {
return
;
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
()
public
function
getOutStatus
()
{
{
$rtn
=
array
();
$rtn
=
array
();
...
...
system/lib/common.php
View file @
3131375a
...
@@ -209,6 +209,11 @@ class Common extends HtmlBuilder {
...
@@ -209,6 +209,11 @@ class Common extends HtmlBuilder {
,
$paramArr
));
,
$paramArr
));
}
}
public
function
getPendingWithdrawalTransactions
(){
return
$this
->
accessSelect
(
"LIST_FLAT3_PENDING_WITHDRAWALS"
,
[
$this
->
getUserData
(
PARAM_USER_ACCOUNT
)]);
}
/*-------------------------------------------------------------------------
/*-------------------------------------------------------------------------
* @function_name: 共通関数セッションメッセージHTMLを取得
* @function_name: 共通関数セッションメッセージHTMLを取得
* @parameter : なし
* @parameter : なし
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment