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
e69ae1d9
Commit
e69ae1d9
authored
Oct 20, 2023
by
iWallet Dev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Processing History Revert Update
parent
841a2396
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
12 deletions
+2
-12
logic.php
system/logic/transaction/logic.php
+2
-2
model.php
system/logic/transaction/model.php
+0
-10
No files found.
system/logic/transaction/logic.php
View file @
e69ae1d9
...
@@ -63,10 +63,10 @@ class LogicTransaction extends TransactionModelClass {
...
@@ -63,10 +63,10 @@ class LogicTransaction extends TransactionModelClass {
if
(
$this
->
lang
==
"en"
)
{
if
(
$this
->
lang
==
"en"
)
{
$rtn
=
',,Withdrawal Account Information,,,,,Deposit Account Information,,,,,,'
.
"
\n
"
;
$rtn
=
',,Withdrawal Account Information,,,,,Deposit Account Information,,,,,,'
.
"
\n
"
;
$rtn
.=
'Processing Date,Transaction Item,
Transaction Number,
Name,Account Number,Currency,Amount,Fee,Name,Account Number,Currency,Amount,Fee,Type,Exchange Rate'
.
"
\n
"
;
$rtn
.=
'Processing Date,Transaction Item,Name,Account Number,Currency,Amount,Fee,Name,Account Number,Currency,Amount,Fee,Type,Exchange Rate'
.
"
\n
"
;
}
else
{
}
else
{
$rtn
=
',,出金口座情報,,,,,入金口座情報,,,,,,'
.
"
\n
"
;
$rtn
=
',,出金口座情報,,,,,入金口座情報,,,,,,'
.
"
\n
"
;
$rtn
.=
'処理時間,取引科目,
取引番号,
名前,口座番号,通貨,金額,手数料,名前,口座番号,通貨,金額,手数料,種別,為替レート'
.
"
\n
"
;
$rtn
.=
'処理時間,取引科目,名前,口座番号,通貨,金額,手数料,名前,口座番号,通貨,金額,手数料,種別,為替レート'
.
"
\n
"
;
}
}
$rtn
.=
$this
->
getExportDetails
();
$rtn
.=
$this
->
getExportDetails
();
...
...
system/logic/transaction/model.php
View file @
e69ae1d9
...
@@ -715,7 +715,6 @@ class TransactionModelClass extends ModelClassEx {
...
@@ -715,7 +715,6 @@ class TransactionModelClass extends ModelClassEx {
if
(
$row
[
COLUMN_TRANSACTION_TYPE
]
==
VAL_INT_1
)
{
// 入金
if
(
$row
[
COLUMN_TRANSACTION_TYPE
]
==
VAL_INT_1
)
{
// 入金
$tType
=
VAL_STR_DEPOSIT
;
$tType
=
VAL_STR_DEPOSIT
;
$tNumber
=
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_NUMBER
);
$depositCur
=
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_CURRENCY
);
$depositCur
=
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_CURRENCY
);
$withdrawCur
=
NO_STRING
;
$withdrawCur
=
NO_STRING
;
$deposit
=
$this
->
getAmountString
(
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_AMOUNT
),
$depositCur
);
$deposit
=
$this
->
getAmountString
(
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_AMOUNT
),
$depositCur
);
...
@@ -725,7 +724,6 @@ class TransactionModelClass extends ModelClassEx {
...
@@ -725,7 +724,6 @@ class TransactionModelClass extends ModelClassEx {
&&
$this
->
getColumnData
(
$row
,
COLUMN_TYPE
)
==
VAR_WITHDRAW_TYPE_NORMAL
)
{
// 通常出金
&&
$this
->
getColumnData
(
$row
,
COLUMN_TYPE
)
==
VAR_WITHDRAW_TYPE_NORMAL
)
{
// 通常出金
$tType
=
VAL_STR_WITHDARAW
;
$tType
=
VAL_STR_WITHDARAW
;
$tNumber
=
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_NUMBER
);
$depositCur
=
NO_STRING
;
$depositCur
=
NO_STRING
;
$withdrawCur
=
$this
->
getColumnData
(
$row
,
COLUMN_DEBIT_CURRENCY
);
$withdrawCur
=
$this
->
getColumnData
(
$row
,
COLUMN_DEBIT_CURRENCY
);
$debitCur
=
$this
->
getColumnData
(
$row
,
COLUMN_WITHDRAW_CURRENCY
);
$debitCur
=
$this
->
getColumnData
(
$row
,
COLUMN_WITHDRAW_CURRENCY
);
...
@@ -738,7 +736,6 @@ class TransactionModelClass extends ModelClassEx {
...
@@ -738,7 +736,6 @@ class TransactionModelClass extends ModelClassEx {
&&
$this
->
getColumnData
(
$row
,
COLUMN_TYPE
)
==
VAR_WITHDRAW_TYPE_CARD
)
{
// 通常出金
&&
$this
->
getColumnData
(
$row
,
COLUMN_TYPE
)
==
VAR_WITHDRAW_TYPE_CARD
)
{
// 通常出金
$tType
=
VAL_STR_WITHDRAW_CARD
;
$tType
=
VAL_STR_WITHDRAW_CARD
;
$tNumber
=
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_NUMBER
);
$depositCur
=
NO_STRING
;
$depositCur
=
NO_STRING
;
$withdrawCur
=
$this
->
getColumnData
(
$row
,
COLUMN_DEBIT_CURRENCY
);
$withdrawCur
=
$this
->
getColumnData
(
$row
,
COLUMN_DEBIT_CURRENCY
);
$debitCur
=
$this
->
getColumnData
(
$row
,
COLUMN_WITHDRAW_CURRENCY
);
$debitCur
=
$this
->
getColumnData
(
$row
,
COLUMN_WITHDRAW_CURRENCY
);
...
@@ -750,7 +747,6 @@ class TransactionModelClass extends ModelClassEx {
...
@@ -750,7 +747,6 @@ class TransactionModelClass extends ModelClassEx {
}
else
if
(
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_4
)
{
// 通貨両替
}
else
if
(
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_4
)
{
// 通貨両替
$tType
=
VAL_STR_EXCHANGE
;
$tType
=
VAL_STR_EXCHANGE
;
$tNumber
=
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_NUMBER
);
$depositCur
=
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_CURRENCY
);
$depositCur
=
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_CURRENCY
);
$withdrawCur
=
$this
->
getColumnData
(
$row
,
COLUMN_WITHDRAW_CURRENCY
);
$withdrawCur
=
$this
->
getColumnData
(
$row
,
COLUMN_WITHDRAW_CURRENCY
);
$deposit
=
$this
->
getAmountString
(
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_AMOUNT
),
$depositCur
);
$deposit
=
$this
->
getAmountString
(
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_AMOUNT
),
$depositCur
);
...
@@ -760,7 +756,6 @@ class TransactionModelClass extends ModelClassEx {
...
@@ -760,7 +756,6 @@ class TransactionModelClass extends ModelClassEx {
&&
$this
->
getColumnData
(
$row
,
COLUMN_TYPE
)
==
VAR_WITHDRAW_TYPE_FEE
)
{
// 手数料出金
&&
$this
->
getColumnData
(
$row
,
COLUMN_TYPE
)
==
VAR_WITHDRAW_TYPE_FEE
)
{
// 手数料出金
$tType
=
VAL_STR_FEE
;
$tType
=
VAL_STR_FEE
;
$tNumber
=
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_NUMBER
);
$depositCur
=
NO_STRING
;
$depositCur
=
NO_STRING
;
$withdrawCur
=
$this
->
getColumnData
(
$row
,
COLUMN_WITHDRAW_CURRENCY
);
$withdrawCur
=
$this
->
getColumnData
(
$row
,
COLUMN_WITHDRAW_CURRENCY
);
$deposit
=
NO_STRING
;
$deposit
=
NO_STRING
;
...
@@ -769,7 +764,6 @@ class TransactionModelClass extends ModelClassEx {
...
@@ -769,7 +764,6 @@ class TransactionModelClass extends ModelClassEx {
}
else
if
(
$row
[
COLUMN_TRANSACTION_TYPE
]
==
VAL_INT_3
)
{
// 口座振替(出金)
}
else
if
(
$row
[
COLUMN_TRANSACTION_TYPE
]
==
VAL_INT_3
)
{
// 口座振替(出金)
$tType
=
VAL_STR_TRANSFER
;
$tType
=
VAL_STR_TRANSFER
;
$tNumber
=
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_NUMBER
);
$depositCur
=
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_CURRENCY
);
$depositCur
=
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_CURRENCY
);
$withdrawCur
=
$this
->
getColumnData
(
$row
,
COLUMN_WITHDRAW_CURRENCY
);
$withdrawCur
=
$this
->
getColumnData
(
$row
,
COLUMN_WITHDRAW_CURRENCY
);
$deposit
=
$this
->
getAmountString
(
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_AMOUNT
),
$depositCur
);
$deposit
=
$this
->
getAmountString
(
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_AMOUNT
),
$depositCur
);
...
@@ -778,7 +772,6 @@ class TransactionModelClass extends ModelClassEx {
...
@@ -778,7 +772,6 @@ class TransactionModelClass extends ModelClassEx {
}
else
if
(
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_5
)
{
// 引落(出金)
}
else
if
(
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_5
)
{
// 引落(出金)
$tType
=
VAL_STR_REQUEST
;
$tType
=
VAL_STR_REQUEST
;
$tNumber
=
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_NUMBER
);
$depositCur
=
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_CURRENCY
);
$depositCur
=
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_CURRENCY
);
$withdrawCur
=
$this
->
getColumnData
(
$row
,
COLUMN_WITHDRAW_CURRENCY
);
$withdrawCur
=
$this
->
getColumnData
(
$row
,
COLUMN_WITHDRAW_CURRENCY
);
$deposit
=
$this
->
getAmountString
(
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_AMOUNT
),
$depositCur
);
$deposit
=
$this
->
getAmountString
(
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_AMOUNT
),
$depositCur
);
...
@@ -788,7 +781,6 @@ class TransactionModelClass extends ModelClassEx {
...
@@ -788,7 +781,6 @@ class TransactionModelClass extends ModelClassEx {
||
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_8
)
{
// 出金差戻し
||
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_8
)
{
// 出金差戻し
$tType
=
VAL_STR_WITHDRAW_REFUND
;
$tType
=
VAL_STR_WITHDRAW_REFUND
;
$tNumber
=
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_NUMBER
);
$depositCur
=
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_CURRENCY
);
$depositCur
=
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_CURRENCY
);
$withdrawCur
=
NO_STRING
;
$withdrawCur
=
NO_STRING
;
$deposit
=
$this
->
getAmountString
(
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_AMOUNT
),
$depositCur
);
$deposit
=
$this
->
getAmountString
(
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_AMOUNT
),
$depositCur
);
...
@@ -797,7 +789,6 @@ class TransactionModelClass extends ModelClassEx {
...
@@ -797,7 +789,6 @@ class TransactionModelClass extends ModelClassEx {
}
else
if
(
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_11
)
{
// 出金差戻し
}
else
if
(
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_11
)
{
// 出金差戻し
$tType
=
VAL_STR_FEE
;
$tType
=
VAL_STR_FEE
;
$tNumber
=
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_NUMBER
);
$depositCur
=
NO_STRING
;
$depositCur
=
NO_STRING
;
$withdrawCur
=
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_CURRENCY
);
$withdrawCur
=
$this
->
getColumnData
(
$row
,
COLUMN_DEPOSIT_CURRENCY
);
$deposit
=
NO_STRING
;
$deposit
=
NO_STRING
;
...
@@ -820,7 +811,6 @@ class TransactionModelClass extends ModelClassEx {
...
@@ -820,7 +811,6 @@ class TransactionModelClass extends ModelClassEx {
$rtn
.=
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TIME
)
.
','
$rtn
.=
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TIME
)
.
','
.
$tType
.
','
.
$tType
.
','
.
$tNumber
.
','
.
$this
->
getColumnData
(
$row
,
COLUMN_WITHDRAW_ACCOUNT_NAME
)
.
','
.
$this
->
getColumnData
(
$row
,
COLUMN_WITHDRAW_ACCOUNT_NAME
)
.
','
.
$this
->
getColumnData
(
$row
,
COLUMN_WITHDRAW_ACCOUNT_NUMBER
)
.
','
.
$this
->
getColumnData
(
$row
,
COLUMN_WITHDRAW_ACCOUNT_NUMBER
)
.
','
.
$withdrawCur
.
','
.
$withdrawCur
.
','
...
...
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