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
05e100ec
Commit
05e100ec
authored
May 04, 2021
by
Anthony.Suerte
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AUI User Details Optimization [Mango Update Included]
parent
d70dc06e
Changes
12
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
1488 additions
and
310 deletions
+1488
-310
account_transactions.php
system/account_transactions.php
+6
-0
account_transactions.php
system/en/account_transactions.php
+7
-0
tmp_account_transactions.php
system/en/template/tmp_account_transactions.php
+91
-0
account_transactions.js
system/js/account_transactions.js
+81
-0
common_base.php
system/lib/common_base.php
+13
-9
config.php
system/lib/config.php
+10
-1
marsys_conf.ini
system/lib/marsys_conf.ini
+268
-299
sql.xml
system/lib/sql.xml
+416
-1
controller.php
system/logic/account_transactions/controller.php
+27
-0
logic.php
system/logic/account_transactions/logic.php
+36
-0
model.php
system/logic/account_transactions/model.php
+442
-0
tmp_account_transactions.php
system/template/tmp_account_transactions.php
+91
-0
No files found.
system/account_transactions.php
0 → 100644
View file @
05e100ec
<?php
include_once
(
'config.php'
);
include_once
(
'logic/account_transactions/controller.php'
);
$logic
=
new
ControlAccountTransactions
();
$logic
->
action
();
\ No newline at end of file
system/en/account_transactions.php
0 → 100644
View file @
05e100ec
<?php
include_once
(
'config.php'
);
include_once
(
SYSTEM_LOGICS
.
"account_transactions/controller.php"
);
$logic
=
new
ControlAccountTransactions
();
$logic
->
action
();
?>
system/en/template/tmp_account_transactions.php
0 → 100644
View file @
05e100ec
<?php
$page_title
=
"User Transaction History"
;
include_once
(
'template/base_head.php'
);
?>
<!-- サイドバー -->
<aside
id=
"colLeft"
>
<h1><a
href=
"account_list"
><img
src=
"../img/logo.png"
alt=
"iWallet"
></a></h1>
<form
id=
"searchForm"
action=
""
method=
"post"
>
<input
type=
"hidden"
id=
"detail_account"
name=
"detail_account"
value=
"
<?php
$this
->
echoDetailAccount
();
?>
"
>
<div
class=
"aside-heading"
>
<div
class=
"btns"
>
<input
type=
"button"
id=
"btnSearchToday"
value=
"Today"
class=
"btn bg-default px50 hi22"
>
<input
type=
"button"
id=
"btnSearch"
value=
"Search"
class=
"btn bg-default px50 hi22"
>
</div>
</div>
<table
class=
"conditions fontS w100p"
>
<colgroup>
<col
class=
"w50p"
>
<col
class=
"w50p"
>
</colgroup>
<tr>
<th>
Transaction Number
</th>
<td><input
type=
"text"
id=
"transaction_number"
name=
"transaction_number"
value=
"
<?php
$this
->
echoTransactionNumber
();
?>
"
class=
"w100p"
></td>
</tr>
<tr>
<th>
Email Address
</th>
<td><input
type=
"text"
id=
"s_email"
name=
"s_email"
value=
"
<?php
$this
->
echoSEmail
();
?>
"
class=
"w100p"
></td>
</tr>
<tr>
<th>
Account Number
</th>
<td><input
type=
"text"
id=
"s_account"
name=
"s_account"
value=
"
<?php
$this
->
echoSUserAccount
();
?>
"
class=
"w100p"
></td>
</tr>
<tr>
<th>
Currency Type
</th>
<td>
<select
id=
"s_currency"
name=
"s_currency"
class=
"w100p"
>
<?php
$this
->
echoCurrencyList
();
?>
</select>
</td>
</tr>
<tr>
<th>
Transaction Type
</th>
<td>
<select
name=
"transaction_type"
id=
"transaction_type"
class=
"w100p"
>
<option
value=
""
>
--- All ---
</option>
<?php
$this
->
dispTransactionTypeList
();
?>
</select>
</td>
</tr>
<tr>
<td
colspan=
"2"
>
<span
class=
"th"
>
Processing Date
</span>
<p>
<input
type=
"text"
id=
"s_from"
name=
"s_from"
value=
"
<?php
$this
->
echoFrom
();
?>
"
class=
"px110"
placeholder=
"日付"
>
-
<input
type=
"text"
id=
"s_to"
name=
"s_to"
value=
"
<?php
$this
->
echoTo
();
?>
"
class=
"px110"
placeholder=
"日付"
>
</p>
</td>
</tr>
</table>
<p
class=
"calign"
>
<input
type=
"button"
id=
"btnExport"
value=
"Export"
class=
"btn bg-grad hi25 px100"
>
<input
type=
"button"
id=
"btnBack"
value=
"Back"
class=
"btn bg-grad hi25 px100"
>
</p>
<input
type=
"hidden"
value=
""
id=
"s_type"
name=
"type"
/>
</form>
</aside>
<div
id=
"colMain"
>
<div
class=
"mainIn"
>
<?php
include_once
(
'template/base_nav.php'
);
?>
<article>
<div
class=
"article-heading"
>
<h2>
<?php
echo
$page_title
;
?>
[
<?php
$this
->
echoDetailAccount
();
?>
]
</h2>
<?php
$this
->
dispPager
();
?>
</div>
<?php
$this
->
echoList
()
?>
<div
class=
"article-bottom"
>
<?php
$this
->
dispPager
();
?>
</div>
</article>
</div>
</div>
</div>
<?php
include_once
(
'template/base_foot.php'
);
?>
</div>
<script
src=
"../js/account_transactions.js"
></script>
<script
src=
"../js/bootstrap.min.js"
></script>
</body>
</html>
\ No newline at end of file
system/js/account_transactions.js
0 → 100644
View file @
05e100ec
$
(
function
(){
$
(
'
#btnSearch
'
).
click
(
function
()
{
$
(
'
#s_type
'
).
val
(
'
search
'
);
submitForm
(
'
searchForm
'
);
});
$
(
"
#btnExport
"
).
click
(
function
()
{
$
(
'
#s_type
'
).
val
(
'
export
'
);
submitForm
(
'
searchForm
'
);
});
$
(
"
#btnBack
"
).
click
(
function
(){
var
currentUrl
=
window
.
location
.
href
;
var
modifiedBase
=
currentUrl
.
substring
(
0
,
currentUrl
.
lastIndexOf
(
"
/
"
)
+
1
)
window
.
location
.
href
=
modifiedBase
+
"
account_edit?detail_account=
"
+
$
(
"
#detail_account
"
).
val
()
})
$
(
'
#s_from
'
).
datepicker
({
// カレンダーの設定
dateFormat
:
'
yy/mm/dd
'
});
$
(
'
#s_to
'
).
datepicker
({
// カレンダーの設定
dateFormat
:
'
yy/mm/dd
'
});
$
(
'
#btnSearchToday
'
).
click
(
function
()
{
$
(
'
#s_type
'
).
val
(
'
search
'
);
$
(
'
#s_from:text
'
).
datepicker
().
datepicker
(
'
setDate
'
,
'
today
'
);
$
(
'
#s_to:text
'
).
datepicker
().
datepicker
(
'
setDate
'
,
'
today
'
);
$
(
'
#s_email
'
).
val
(
''
);
$
(
'
#s_account
'
).
val
(
''
);
$
(
'
#transaction_number
'
).
val
(
''
);
$
(
'
#transaction_type
'
).
val
(
''
);
$
(
'
#s_currency
'
).
val
(
''
);
submitForm
(
'
searchForm
'
);
});
var
currentSToVal
=
new
Date
(
$
(
'
#s_to
'
).
val
())
var
currentSToMonth
=
currentSToVal
.
getMonth
()
+
1
var
currentSToYear
=
currentSToVal
.
getFullYear
()
var
currentSToDate
=
currentSToVal
.
getDate
()
if
(
month
<
9
)
{
currentSToMonth
=
"
0
"
+
currentSToMonth
}
if
(
date
<
9
)
{
currentSToDate
=
"
0
"
+
currentSToDate
}
if
(
$
(
'
#s_from
'
).
val
()
==
''
)
{
var
nowDate
=
new
Date
();
nowDate
.
setMonth
(
nowDate
.
getMonth
()
-
2
);
var
month
=
nowDate
.
getMonth
();
var
year
=
nowDate
.
getFullYear
();
var
date
=
nowDate
.
getDate
();
month
=
month
+
1
;
if
(
month
<
9
)
{
month
=
"
0
"
+
month
}
if
(
date
<
9
)
{
date
=
"
0
"
+
date
}
var
thisStr
=
year
+
'
/
'
+
month
+
'
/
'
+
'
01
'
;
$
(
'
#s_from:text
'
).
datepicker
().
datepicker
(
'
setDate
'
,
thisStr
);
}
var
setSto
=
currentSToYear
+
'
/
'
+
currentSToMonth
+
'
/
'
+
currentSToDate
;
if
(
$
(
'
#s_to
'
).
val
()
==
''
)
{
$
(
'
#s_to:text
'
).
datepicker
().
datepicker
(
'
setDate
'
,
'
today
'
);
}
else
{
$
(
'
#s_to:text
'
).
datepicker
().
datepicker
(
'
setDate
'
,
setSto
);
}
})
\ No newline at end of file
system/lib/common_base.php
View file @
05e100ec
...
@@ -5,6 +5,7 @@ class CommonBase {
...
@@ -5,6 +5,7 @@ class CommonBase {
* @ メンバ変数
* @ メンバ変数
-------------------------------------------------------------------------*/
-------------------------------------------------------------------------*/
public
$cfgFile
;
// 設定ファイルデータの配列
public
$cfgFile
;
// 設定ファイルデータの配列
public
$crdFile
;
public
$messages
;
// メッセージクラス
public
$messages
;
// メッセージクラス
/*-------------------------------------------------------------------------
/*-------------------------------------------------------------------------
...
@@ -15,13 +16,10 @@ class CommonBase {
...
@@ -15,13 +16,10 @@ class CommonBase {
* @return : なし
* @return : なし
-------------------------------------------------------------------------*/
-------------------------------------------------------------------------*/
function
__construct
()
{
function
__construct
()
{
// 変数宣言部
$workArr
;
// 設定ファイルのデータ配列
try
{
try
{
$workArr
=
parse_ini_file
(
CONFIGRATION_FILE_PATH
,
TRUE
);
// セクションをパースする
$credArr
=
parse_ini_file
(
CREDENTIALS_FILE_PATH
,
TRUE
);
// セクションをパースする
$workArr
=
parse_ini_file
(
CONFIGRATION_FILE_PATH
,
TRUE
);
if
(
$workArr
==
FALSE
)
{
// 読み込み失敗
if
(
$workArr
==
FALSE
)
{
// 読み込み失敗
throw
new
Exception
(
""
,
-
1
);
throw
new
Exception
(
""
,
-
1
);
...
@@ -29,6 +27,7 @@ class CommonBase {
...
@@ -29,6 +27,7 @@ class CommonBase {
// メンバ変数へ取得データを格納する
// メンバ変数へ取得データを格納する
$this
->
cfgFile
=
$workArr
;
$this
->
cfgFile
=
$workArr
;
$this
->
crdFile
=
$credArr
;
// 多言語対応
// 多言語対応
$uri
=
explode
(
'/'
,
$_SERVER
[
'REQUEST_URI'
]);
$uri
=
explode
(
'/'
,
$_SERVER
[
'REQUEST_URI'
]);
...
@@ -65,12 +64,17 @@ class CommonBase {
...
@@ -65,12 +64,17 @@ class CommonBase {
* @return : 設定ファイルに対応する値(存在しない場合は空白文字)
* @return : 設定ファイルに対応する値(存在しない場合は空白文字)
-------------------------------------------------------------------------*/
-------------------------------------------------------------------------*/
function
getConfigValue
(
$section
,
$key
)
{
function
getConfigValue
(
$section
,
$key
)
{
$file
=
$this
->
cfgFile
;
if
(
$section
==
SECTION_DB
||
$section
==
SECTION_DIR_PATH
){
$file
=
$this
->
crdFile
;
}
// 変数宣言部
// 変数宣言部
$rtn
=
NO_STRING
;
$rtn
=
NO_STRING
;
if
(
isset
(
$
this
->
cfgF
ile
[
$section
][
$key
]))
{
if
(
isset
(
$
f
ile
[
$section
][
$key
]))
{
$rtn
=
$
this
->
cfgF
ile
[
$section
][
$key
];
$rtn
=
$
f
ile
[
$section
][
$key
];
}
}
// 設定値の返却
// 設定値の返却
...
...
system/lib/config.php
View file @
05e100ec
...
@@ -31,7 +31,9 @@ define('LIBRARIES', SYSTEM_PATH . 'lib/'); // システムライブラ
...
@@ -31,7 +31,9 @@ define('LIBRARIES', SYSTEM_PATH . 'lib/'); // システムライブラ
define
(
'LIBRARIES_CORE'
,
LIBRARIES
.
'core/'
);
// コア設定群ディレクトリルート
define
(
'LIBRARIES_CORE'
,
LIBRARIES
.
'core/'
);
// コア設定群ディレクトリルート
define
(
'SYSTEM_LOGICS'
,
SYSTEM_PATH
.
'logic/'
);
// ロジックディレクトリ
define
(
'SYSTEM_LOGICS'
,
SYSTEM_PATH
.
'logic/'
);
// ロジックディレクトリ
define
(
'CONFIGRATION_FILE_NAME'
,
'marsys_conf.ini'
);
// 設定ファイルのファイル名
define
(
'CONFIGRATION_FILE_NAME'
,
'marsys_conf.ini'
);
// 設定ファイルのファイル名
define
(
'CREDENTIALS_FILE_NAME'
,
'marsys_data_conf.ini'
);
// 設定ファイルのファイル名
define
(
'CONFIGRATION_FILE_PATH'
,
LIBRARIES
.
CONFIGRATION_FILE_NAME
);
// 設定ファイルのファイルパス
define
(
'CONFIGRATION_FILE_PATH'
,
LIBRARIES
.
CONFIGRATION_FILE_NAME
);
// 設定ファイルのファイルパス
define
(
'CREDENTIALS_FILE_PATH'
,
LIBRARIES
.
CREDENTIALS_FILE_NAME
);
// 設定ファイルのファイルパス
define
(
'SYSTEM_DOCUMENT'
,
SYSTEM_TEMPLATE_PATH
.
'documents/'
);
// ドキュメント群のルート
define
(
'SYSTEM_DOCUMENT'
,
SYSTEM_TEMPLATE_PATH
.
'documents/'
);
// ドキュメント群のルート
...
@@ -119,7 +121,14 @@ define('ERROR', 'ERROR'); // エラー
...
@@ -119,7 +121,14 @@ define('ERROR', 'ERROR'); // エラー
define
(
'WARNING'
,
'WARNING'
);
// 警告
define
(
'WARNING'
,
'WARNING'
);
// 警告
define
(
'INFO'
,
'INFO'
);
// 情報
define
(
'INFO'
,
'INFO'
);
// 情報
// error_reporting(0);
error_reporting
(
0
);
if
(
defined
(
'API_ACCESS'
)){
$sessionCookieParams
=
session_get_cookie_params
();
if
(
!
$sessionCookieParams
[
'lifetime'
])
session_set_cookie_params
(
3600
,
'/; samesite=None'
,
$_SERVER
[
'HTTP_HOST'
],
true
,
false
);
}
// セッションスタート
// セッションスタート
session_name
(
'iwallet'
);
session_name
(
'iwallet'
);
...
...
system/lib/marsys_conf.ini
View file @
05e100ec
;DB関連
[SECTION_DB]
HOST_NAME
=
"database-rds.cbrcu1jdqvnh.ap-southeast-1.rds.amazonaws.com"
USER_NAME
=
"ui_iwl_db"
LOGIN_PASS
=
"zuPhWvsMaJDXH42"
TARGET_DB_NAME
=
"iwl_db"
;各パス関連
[SECTION_DIR_PATH]
MESSAGE_FILE_NAME
=
message.xml
MESSAGE_EN_FILE_NAME
=
message_en.xml
SQL_FILE_NAME
=
sql.xml
;システムファイルテンプレート
[SECTION_DIR_PATH_SYSTEM]
[SECTION_DIR_PATH_SYSTEM]
TEMPLATE_LOGIN_PATH
=
tmp_login.php
TEMPLATE_ACCOUNT_DUPLICATE_COM_PATH
=
tmp_account_duplicate_com.php
TEMPLATE_MENU_PATH
=
tmp_menu.php
TEMPLATE_ACCOUNT_DUPLICATE_PATH
=
tmp_account_duplicate.php
TEMPLATE_ACCOUNT_LIST_PATH
=
tmp_account_list.php
TEMPLATE_ACCOUNT_EDIT_PATH
=
tmp_account_edit.php
TEMPLATE_ACCOUNT_IMPORT_PATH
=
tmp_account_import_input.php
TEMPLATE_ACCOUNT_IMPORT_CONFIRM_PATH
=
tmp_account_import_confirm.php
TEMPLATE_ACCOUNT_IMPORT_COMPLETE_PATH
=
tmp_account_import_complete.php
TEMPLATE_ACCOUNT_EDIT_INPUT_PATH
=
tmp_account_edit_input.php
TEMPLATE_ACCOUNT_EDIT_CONFIRM_PATH
=
tmp_account_edit_confirm.php
TEMPLATE_ACCOUNT_EDIT_COMPLETE_PATH
=
tmp_account_edit_complete.php
TEMPLATE_ACCOUNT_EDIT_COMPLETE_PATH
=
tmp_account_edit_complete.php
TEMPLATE_ACCOUNT_EDIT_CONFIRM_PATH
=
tmp_account_edit_confirm.php
TEMPLATE_ACCOUNT_EDIT_INPUT_PATH
=
tmp_account_edit_input.php
TEMPLATE_ACCOUNT_EDIT_INPUT_PAYMENT_ACCESS_PATH
=
tmp_account_edit_input_payment_access.php
TEMPLATE_ACCOUNT_EDIT_PAGING_PATH
=
tmp_account_edit_paging.php
TEMPLATE_ACCOUNT_EDIT_PAGING_PATH
=
tmp_account_edit_paging.php
TEMPLATE_MST_FEE_PATH
=
tmp_mst_fee.php
TEMPLATE_ACCOUNT_EDIT_PATH
=
tmp_account_edit.php
TEMPLATE_MST_FEE_CREATE_PATH
=
tmp_mst_fee_create.php
TEMPLATE_ACCOUNT_IMPORT_COMPLETE_PATH
=
tmp_account_import_complete.php
TEMPLATE_DEPOSIT_LIST_PATH
=
tmp_deposit_list.php
TEMPLATE_ACCOUNT_IMPORT_CONFIRM_PATH
=
tmp_account_import_confirm.php
TEMPLATE_DEPOSIT_IMPORT_INPUT_PATH
=
tmp_deposit_import_input.php
TEMPLATE_ACCOUNT_IMPORT_PATH
=
tmp_account_import_input.php
TEMPLATE_DEPOSIT_IMPORT_CONFIRM_PATH
=
tmp_deposit_import_confirm.php
TEMPLATE_ACCOUNT_LIST_PATH
=
tmp_account_list.php
TEMPLATE_DEPOSIT_IMPORT_COMPLETE_PATH
=
tmp_deposit_import_complete.php
TEMPLATE_ACCOUNT_TRANSACTIONS
=
tmp_account_transactions.php
TEMPLATE_DEPOSIT_EDIT_PATH
=
tmp_deposit_edit.php
TEMPLATE_ADMIN_LOG_LIST_PATH
=
tmp_admin_log_list.php
TEMPLATE_DEPOSIT_DETAIL_PATH
=
tmp_deposit_detail.php
TEMPLATE_ADMIN_USER_DETAILS_PATH
=
tmp_admin_user_details.php
TEMPLATE_WITHDRAW_LIST_PATH
=
tmp_withdraw_list.php
TEMPLATE_ADMIN_USER_EDIT_INPUT_PATH
=
tmp_admin_user_edit_input.php
TEMPLATE_WITHDRAW_FLAT3_PREVIEW_PATH
=
tmp_withdraw_flat3_preview.php
TEMPLATE_ADMIN_USER_IMPORT_CONFIRM_PATH
=
tmp_admin_user_import_confirm.php
TEMPLATE_WITHDRAW_ACTION_PATH
=
tmp_withdraw_account.php
TEMPLATE_ADMIN_USER_IMPORT_FAIL_PATH
=
tmp_admin_user_import_fail.php
TEMPLATE_WITHDRAW_INPUT_PATH
=
tmp_withdraw_input.php
TEMPLATE_ADMIN_USER_IMPORT_INPUT_PATH
=
tmp_admin_user_import_input.php
TEMPLATE_WITHDRAW_CONFIRM_PATH
=
tmp_withdraw_confirm.php
TEMPLATE_ADMIN_USER_INPUT_PATH
=
tmp_admin_user_input.php
TEMPLATE_WITHDRAW_COMPLETE_PATH
=
tmp_withdraw_complete.php
TEMPLATE_ADMIN_USER_LIST_PATH
=
tmp_admin_user_list.php
TEMPLATE_WITHDRAW_EDIT_PATH
=
tmp_withdraw_edit.php
TEMPLATE_ADVERTISEMENTS_MANAGER_DETAIL_PATH
=
tmp_advertisements_manager_detail.php
TEMPLATE_WITHDRAW_DETAIL_PATH
=
tmp_withdraw_detail.php
TEMPLATE_ADVERTISEMENTS_MANAGER_PATH
=
tmp_advertisements_manager.php
TEMPLATE_TRANSFER_LIST_PATH
=
tmp_transfer_list.php
TEMPLATE_ADVERTISEMENTS_MANAGER_UPLOAD_PATH
=
tmp_advertisements_manager_upload.php
TEMPLATE_TRANSFER_ACTION_PATH
=
tmp_transfer_account.php
TEMPLATE_ADVERTISEMENTS_PATH
=
tmp_advertisements.php
TEMPLATE_TRANSFER_INPUT_PATH
=
tmp_transfer_input.php
TEMPLATE_TRANSFER_CONFIRM_PATH
=
tmp_transfer_confirm.php
TEMPLATE_TRANSFER_COMPLETE_PATH
=
tmp_transfer_complete.php
TEMPLATE_TRANSFER_EDIT_PATH
=
tmp_transfer_edit.php
TEMPLATE_TRANSFER_DETAIL_PATH
=
tmp_transfer_detail.php
TEMPLATE_TRANSFER_BATCH_LIST_PATH
=
tmp_transfer_batch_list.php
TEMPLATE_TRANSFER_IMPORT_CONFIRM_PATH
=
tmp_transfer_import_confirm.php
TEMPLATE_TRANSFER_IMPORT_COMPLETE_PATH
=
tmp_transfer_import_complete.php
TEMPLATE_TRANSFER_IMPORT_INPUT_PATH
=
tmp_transfer_import_input.php
TEMPLATE_AGENT_LIST_PATH
=
tmp_agent_list.php
TEMPLATE_AGENT_ACTION_PATH
=
tmp_agent_account.php
TEMPLATE_AGENT_ACTION_PATH
=
tmp_agent_account.php
TEMPLATE_AGENT_INPUT_PATH
=
tmp_agent_input.php
TEMPLATE_AGENT_CONFIRM_PATH
=
tmp_agent_confirm.php
TEMPLATE_AGENT_COMPLETE_PATH
=
tmp_agent_complete.php
TEMPLATE_AGENT_COMPLETE_PATH
=
tmp_agent_complete.php
TEMPLATE_AGENT_
EDIT_PATH
=
tmp_agent_edit
.php
TEMPLATE_AGENT_
CONFIRM_PATH
=
tmp_agent_confirm
.php
TEMPLATE_AGENT_DETAIL_PATH
=
tmp_agent_detail.php
TEMPLATE_AGENT_DETAIL_PATH
=
tmp_agent_detail.php
TEMPLATE_TRANSACTION_LIST_PATH
=
tmp_transaction_list.php
TEMPLATE_AGENT_EDIT_PATH
=
tmp_agent_edit.php
TEMPLATE_DELETED_TRANSACTION_LIST_PATH
=
tmp_deleted_transaction_list.php
TEMPLATE_AGENT_INPUT_PATH
=
tmp_agent_input.php
TEMPLATE_KYC_LIST_PATH
=
tmp_kyc_list.php
TEMPLATE_AGENT_LIST_PATH
=
tmp_agent_list.php
TEMPLATE_KYC_DETAIL_PATH
=
tmp_kyc_detail.php
TEMPLATE_KYC_INPUT_PATH
=
tmp_kyc_input.php
TEMPLATE_KYC_CONFIRM_PATH
=
tmp_kyc_confirm.php
TEMPLATE_KYC_COMPLETE_PATH
=
tmp_kyc_complete.php
TEMPLATE_KYC_EDIT_PATH
=
tmp_kyc_edit.php
TEMPLATE_REQUEST_LIST_PATH
=
tmp_request_list.php
TEMPLATE_REQUEST_DETAIL_PATH
=
tmp_request_detail.php
TEMPLATE_NEWS_LIST_PATH
=
tmp_news_list.php
TEMPLATE_NEWS_INPUT_PATH
=
tmp_news_input.php
TEMPLATE_NEWS_PREVIEW_PATH
=
tmp_news_preview.php
TEMPLATE_TOTAL_LIST_PATH
=
tmp_total_list.php
TEMPLATE_ADMIN_LOG_LIST_PATH
=
tmp_admin_log_list.php
TEMPLATE_AGENT_REWARD_DETAIL_PATH
=
tmp_agent_reward_detail.php
TEMPLATE_AGENT_REWARD_DETAIL_PATH
=
tmp_agent_reward_detail.php
TEMPLATE_API_SIGNATURE_ACCOUNT_PATH
=
tmp_api_signature_account.php
TEMPLATE_API_SIGNATURE_ACCOUNT_PATH
=
tmp_api_signature_account.php
TEMPLATE_API_SIGNATURE_INPUT_PATH
=
tmp_api_signature_input.php
TEMPLATE_API_SIGNATURE_CONFIRM_PATH
=
tmp_api_signature_confirm.php
TEMPLATE_API_SIGNATURE_CONFIRM_PATH
=
tmp_api_signature_confirm.php
TEMPLATE_API_SIGNATURE_LIST_PATH
=
tmp_api_signature_list.php
TEMPLATE_API_SIGNATURE_EDIT_PATH
=
tmp_api_signature_edit.php
TEMPLATE_API_SIGNATURE_EDIT_PATH
=
tmp_api_signature_edit.php
TEMPLATE_MST_EXCHANGE_FEE_PATH
=
tmp_mst_exchange_fee.php
TEMPLATE_API_SIGNATURE_INPUT_PATH
=
tmp_api_signature_input.php
TEMPLATE_MST_EXCHANGE_FEE_DETAIL_PATH
=
tmp_mst_exchange_fee_detail.php
TEMPLATE_API_SIGNATURE_LIST_PATH
=
tmp_api_signature_list.php
TEMPLATE_MST_EXCHANGE_FEE_INPUT_PATH
=
tmp_mst_exchange_fee_input.php
TEMPLATE_TOTAL_DETAIL_DATE_PATH
=
tmp_total_detail_date.php
TEMPLATE_CARD_APPLY_LIST_PATH
=
tmp_card_apply_list.php
TEMPLATE_CARD_APPLY_DETAIL_PATH
=
tmp_card_apply_detail.php
TEMPLATE_CARD_APPLY_CREATE_PATH
=
tmp_card_apply_create.php
TEMPLATE_CARD_APPLY_CREATE_INPUT_PATH
=
tmp_card_apply_create_input.php
TEMPLATE_CARD_APPLY_CREATE_CONFIRM_PATH
=
tmp_card_apply_create_confirm.php
TEMPLATE_CARD_APPLY_CREATE_COMPLETE_PATH
=
tmp_card_apply_create_complete.php
TEMPLATE_CARD_APPLY_CREATE_COMPLETE_PATH
=
tmp_card_apply_create_complete.php
TEMPLATE_SETTING_KYC_UPLOAD
=
tmp_setting_kyc_upload.php
TEMPLATE_CARD_APPLY_CREATE_CONFIRM_PATH
=
tmp_card_apply_create_confirm.php
TEMPLATE_SETTING_KYC_UPLOAD_STEP2
=
tmp_setting_kyc_upload_step2.php
TEMPLATE_CARD_APPLY_CREATE_INPUT_PATH
=
tmp_card_apply_create_input.php
TEMPLATE_KYC_ADMIN_DETAIL_PATH
=
tmp_kyc_admin_detail.php
TEMPLATE_CARD_APPLY_CREATE_PATH
=
tmp_card_apply_create.php
TEMPLATE_KYC_ADMIN_LIST_PATH
=
tmp_kyc_admin_list.php
TEMPLATE_CARD_APPLY_DETAIL_PATH
=
tmp_card_apply_detail.php
TEMPLATE_RISK_ACCOUNT_LIST_PATH
=
tmp_risk_account_list.php
TEMPLATE_CARD_APPLY_LIST_PATH
=
tmp_card_apply_list.php
TEMPLATE_ACCOUNT_DUPLICATE_PATH
=
tmp_account_duplicate.php
TEMPLATE_CATEGORY_DETAIL_PATH
=
tmp_category_detail.php
TEMPLATE_ACCOUNT_DUPLICATE_COM_PATH
=
tmp_account_duplicate_com.php
TEMPLATE_CATEGORY_EDIT_PATH
=
tmp_category_edit.php
TEMPLATE_CATEGORY_INPUT_PATH
=
tmp_category_input.php
TEMPLATE_ADMIN_USER_LIST_PATH
=
tmp_admin_user_list.php
TEMPLATE_CATEGORY_LIST_PATH
=
tmp_category_list.php
TEMPLATE_ADMIN_USER_DETAILS_PATH
=
tmp_admin_user_details.php
TEMPLATE_DELETED_TRANSACTION_LIST_PATH
=
tmp_deleted_transaction_list.php
TEMPLATE_ADMIN_USER_EDIT_INPUT_PATH
=
tmp_admin_user_edit_input.php
TEMPLATE_DEPOSIT_DETAIL_PATH
=
tmp_deposit_detail.php
TEMPLATE_ADMIN_USER_INPUT_PATH
=
tmp_admin_user_input.php
TEMPLATE_DEPOSIT_EDIT_PATH
=
tmp_deposit_edit.php
TEMPLATE_ADMIN_USER_IMPORT_INPUT_PATH
=
tmp_admin_user_import_input.php
TEMPLATE_DEPOSIT_IMPORT_COMPLETE_PATH
=
tmp_deposit_import_complete.php
TEMPLATE_ADMIN_USER_IMPORT_CONFIRM_PATH
=
tmp_admin_user_import_confirm.php
TEMPLATE_DEPOSIT_IMPORT_CONFIRM_PATH
=
tmp_deposit_import_confirm.php
TEMPLATE_ADMIN_USER_IMPORT_FAIL_PATH
=
tmp_admin_user_import_fail.php
TEMPLATE_DEPOSIT_IMPORT_INPUT_PATH
=
tmp_deposit_import_input.php
TEMPLATE_DEPT_LIST_PATH
=
tmp_dept_list.php
TEMPLATE_DEPOSIT_LIST_PATH
=
tmp_deposit_list.php
TEMPLATE_DEPT_INPUT_PATH
=
tmp_dept_input.php
TEMPLATE_DEPT_DETAIL_PATH
=
tmp_dept_detail.php
TEMPLATE_DEPT_DETAIL_PATH
=
tmp_dept_detail.php
TEMPLATE_DEPT_EDIT_PATH
=
tmp_dept_edit.php
TEMPLATE_DEPT_EDIT_PATH
=
tmp_dept_edit.php
TEMPLATE_FUNCTION_LIST_PATH
=
tmp_function_list.php
TEMPLATE_DEPT_INPUT_PATH
=
tmp_dept_input.php
TEMPLATE_FUNCTION_INPUT_PATH
=
tmp_function_input.php
TEMPLATE_DEPT_LIST_PATH
=
tmp_dept_list.php
TEMPLATE_EXCHANGE_RATE_PATH
=
tmp_exchange_rate.php
TEMPLATE_FUNCTION_DETAIL_PATH
=
tmp_function_detail.php
TEMPLATE_FUNCTION_DETAIL_PATH
=
tmp_function_detail.php
TEMPLATE_FUNCTION_EDIT_PATH
=
tmp_function_edit.php
TEMPLATE_FUNCTION_EDIT_PATH
=
tmp_function_edit.php
TEMPLATE_CATEGORY_LIST_PATH
=
tmp_category_list.php
TEMPLATE_FUNCTION_INPUT_PATH
=
tmp_function_input.php
TEMPLATE_CATEGORY_INPUT_PATH
=
tmp_category_input.php
TEMPLATE_FUNCTION_LIST_PATH
=
tmp_function_list.php
TEMPLATE_CATEGORY_DETAIL_PATH
=
tmp_category_detail.php
TEMPLATE_KYC_ADMIN_DETAIL_PATH
=
tmp_kyc_admin_detail.php
TEMPLATE_CATEGORY_EDIT_PATH
=
tmp_category_edit.php
TEMPLATE_KYC_ADMIN_LIST_PATH
=
tmp_kyc_admin_list.php
TEMPLATE_KYC_COMPLETE_PATH
=
tmp_kyc_complete.php
TEMPLATE_ACCOUNT_EDIT_INPUT_PAYMENT_ACCESS_PATH
=
tmp_account_edit_input_payment_access.php
TEMPLATE_KYC_CONFIRM_PATH
=
tmp_kyc_confirm.php
TEMPLATE_EXCHANGE_RATE_PATH
=
tmp_exchange_rate.php
TEMPLATE_KYC_DETAIL_PATH
=
tmp_kyc_detail.php
TEMPLATE_TRANSACTION_LOGS_PATH
=
tmp_transaction_logs_list.php
TEMPLATE_KYC_EDIT_PATH
=
tmp_kyc_edit.php
TEMPLATE_ADVERTISEMENTS_PATH
=
tmp_advertisements.php
TEMPLATE_KYC_INPUT_PATH
=
tmp_kyc_input.php
TEMPLATE_ADVERTISEMENTS_MANAGER_PATH
=
tmp_advertisements_manager.php
TEMPLATE_KYC_LIST_PATH
=
tmp_kyc_list.php
TEMPLATE_ADVERTISEMENTS_MANAGER_DETAIL_PATH
=
tmp_advertisements_manager_detail.php
TEMPLATE_ADVERTISEMENTS_MANAGER_UPLOAD_PATH
=
tmp_advertisements_manager_upload.php
;サイトファイルテンプレート
[SECTION_DIR_PATH_SITE]
TEMPLATE_INDEX_PATH
=
tmp_index.php
TEMPLATE_CREATE_ACCOUNT_INPUT_PATH
=
tmp_create_account_input.php
TEMPLATE_CREATE_ACCOUNT_COMFIRM_PATH
=
tmp_create_account_confirm.php
TEMPLATE_CREATE_ACCOUNT_COMPLETE_PATH
=
tmp_create_account_complete.php
TEMPLATE_LOGIN_PATH
=
tmp_login.php
TEMPLATE_LOGIN_PATH
=
tmp_login.php
TEMPLATE_LOGIN_DONT_VERI_PATH
=
tmp_login_dont_veri.php
TEMPLATE_LOGIN_RE_SEND_PATH
=
tmp_login_re_send.php
TEMPLATE_MENU_PATH
=
tmp_menu.php
TEMPLATE_MENU_PATH
=
tmp_menu.php
TEMPLATE_DEPOSIT_INPUT_PATH
=
tmp_deposit_input.php
TEMPLATE_MST_EXCHANGE_FEE_DETAIL_PATH
=
tmp_mst_exchange_fee_detail.php
TEMPLATE_DEPOSIT_COMPLETE_PATH
=
tmp_deposit_complete.php
TEMPLATE_MST_EXCHANGE_FEE_INPUT_PATH
=
tmp_mst_exchange_fee_input.php
TEMPLATE_DEPOSIT_COMPLETE_GPS_PATH
=
tmp_deposit_complete_gps.php
TEMPLATE_MST_EXCHANGE_FEE_PATH
=
tmp_mst_exchange_fee.php
TEMPLATE_DEPOSIT_PENDING_GPS_PATH
=
tmp_deposit_pending_gps.php
TEMPLATE_MST_FEE_CREATE_PATH
=
tmp_mst_fee_create.php
TEMPLATE_DEPOSIT_SEND_PATH
=
tmp_deposit_send.php
TEMPLATE_MST_FEE_PATH
=
tmp_mst_fee.php
TEMPLATE_DEPOSIT_PRINT_PATH
=
tmp_deposit_print.php
TEMPLATE_NEWS_INPUT_PATH
=
tmp_news_input.php
TEMPLATE_DEPOSIT_CONFIRM_PATH
=
tmp_deposit_confirm.php
TEMPLATE_NEWS_LIST_PATH
=
tmp_news_list.php
TEMPLATE_SEND_ACTION_PATH
=
tmp_send_account.php
TEMPLATE_NEWS_PREVIEW_PATH
=
tmp_news_preview.php
TEMPLATE_SEND_INPUT_PATH
=
tmp_send_input.php
TEMPLATE_SEND_CONFIRM_PATH
=
tmp_send_confirm.php
TEMPLATE_SEND_COMPLETE_PATH
=
tmp_send_complete.php
TEMPLATE_WITHDRAW_INPUT_PATH
=
tmp_withdraw_input.php
TEMPLATE_WITHDRAW_FLAT3_NOTICE_KYC
=
tmp_withdraw_flat3_notice_kyc.php
TEMPLATE_WITHDRAW_FLAT3_INPUT_PATH
=
tmp_withdraw_flat3_input.php
TEMPLATE_WITHDRAW_FLAT3_CONFIRM_PATH
=
tmp_withdraw_flat3_confirm.php
TEMPLATE_WITHDRAW_FLAT3_COMPLETE_PATH
=
tmp_withdraw_flat3_complete.php
TEMPLATE_WITHDRAW_FLAT3_LOCKED_PATH
=
tmp_withdraw_flat3_2FA_lock.php
TEMPLATE_WITHDRAW_LOCALINPUT_INPUT_PATH
=
tmp_withdraw_localbank_input.php
TEMPLATE_WITHDRAW_LOCALINPUT_CONFIRM
=
tmp_withdrawsd_localbank_confirm.php
TEMPLATE_WITHDRAW_CONFIRM_PATH
=
tmp_withdraw_confirm.php
TEMPLATE_WITHDRAW_COMPLETE_PATH
=
tmp_withdraw_complete.php
TEMPLATE_WITHDRAW_STEP1_PATH
=
tmp_withdrawal_step1.php
TEMPLATE_WITHDRAW_CARD_INPUT_PATH
=
tmp_withdraw_card_input.php
TEMPLATE_WITHDRAW_CARD_CONFIRM_PATH
=
tmp_withdraw_card_confirm.php
TEMPLATE_WITHDRAW_CARD_COMPLETE_PATH
=
tmp_withdraw_card_complete.php
TEMPLATE_WITHDRAW_LOCALRETURN_SUCCESS
=
tmp_withdrawsd_localbank_success.php
TEMPLATE_WITHDRAW_LOCALRETURN_FAILED
=
tmp_withdrawsd_localbank_faild.php
TEMPLATE_REQUEST_ACTION_PATH
=
tmp_request_account.php
TEMPLATE_REQUEST_INPUT_PATH
=
tmp_request_input.php
TEMPLATE_REQUEST_CONFIRM_PATH
=
tmp_request_confirm.php
TEMPLATE_REQUEST_COMPLETE_PATH
=
tmp_request_complete.php
TEMPLATE_REQUEST_LIST_PATH
=
tmp_request_list.php
TEMPLATE_REQUEST_APPLY_PATH
=
tmp_request_apply.php
TEMPLATE_REQUEST_DETAIL_PATH
=
tmp_request_detail.php
TEMPLATE_REQUEST_DETAIL_PATH
=
tmp_request_detail.php
TEMPLATE_REQUEST_APPLY_COMPLETE_PATH
=
tmp_request_apply_complete.php
TEMPLATE_REQUEST_LIST_PATH
=
tmp_request_list.php
TEMPLATE_REQUEST_REQUEST_APPLY_DETAIL_PATH
=
tmp_request_apply_detail.php
TEMPLATE_RISK_ACCOUNT_LIST_PATH
=
tmp_risk_account_list.php
TEMPLATE_SETTING_PROFILE_PATH
=
tmp_setting_profile.php
TEMPLATE_SETTING_INPUT_PROFILE_PATH
=
tmp_setting_input_profile.php
TEMPLATE_SETTING_COMFIRM_PROFILE_PATH
=
tmp_setting_confirm_profile.php
TEMPLATE_SETTING_COMPLETE_PROFILE_PATH
=
tmp_setting_complete_profile.php
TEMPLATE_SETTING_INPUT_PROFILE_IMG_PATH
=
tmp_setting_input_profile_img.php
TEMPLATE_SETTING_INPUT_KYC_PATH
=
tmp_setting_input_kyc.php
TEMPLATE_SETTING_PW_INPUT
=
tmp_setting_pw_input.php
TEMPLATE_SETTING_PW_CONFIRM
=
tmp_setting_pw_confirm.php
TEMPLATE_SETTING_PW_COMPLETE
=
tmp_setting_pw_complete.php
TEMPLATE_SETTING_MAIL_INPUT
=
tmp_setting_mail_input.php
TEMPLATE_SETTING_MAIL_COMPLETE
=
tmp_setting_mail_complete.php
TEMPLATE_SETTING_KYC_UPLOAD
=
tmp_setting_kyc_upload.php
TEMPLATE_SETTING_KYC_UPLOAD
=
tmp_setting_kyc_upload.php
TEMPLATE_SETTING_KYC_UPLOAD_STEP1
=
tmp_setting_kyc_upload_step1.php
TEMPLATE_SETTING_KYC_UPLOAD_STEP2
=
tmp_setting_kyc_upload_step2.php
TEMPLATE_SETTING_KYC_UPLOAD_STEP2
=
tmp_setting_kyc_upload_step2.php
TEMPLATE_SUMMARY_PATH
=
tmp_summary.php
TEMPLATE_TOTAL_DETAIL_DATE_PATH
=
tmp_total_detail_date.php
TEMPLATE_WITHDRAW_STEP1_PATH
=
tmp_withdrawal_step1.php
TEMPLATE_TOTAL_LIST_PATH
=
tmp_total_list.php
TEMPLATE_WITHDRAW_CARD_INPUT_PATH
=
tmp_withdraw_card_input.php
TEMPLATE_TRANSACTION_LIST_PATH
=
tmp_transaction_list.php
TEMPLATE_WITHDRAW_CARD_CONFIRM_PATH
=
tmp_withdraw_card_confirm.php
TEMPLATE_TRANSACTION_LOGS_PATH
=
tmp_transaction_logs_list.php
TEMPLATE_WITHDRAW_CARD_COMPLETE_PATH
=
tmp_withdraw_card_complete.php
TEMPLATE_TRANSFER_ACTION_PATH
=
tmp_transfer_account.php
TEMPLATE_TRANSFER_STEP1_PATH
=
tmp_transfer_step1.php
TEMPLATE_TRANSFER_BATCH_LIST_PATH
=
tmp_transfer_batch_list.php
TEMPLATE_TRANSFER_STEP2_PATH
=
tmp_transfer_step2.php
TEMPLATE_TRANSFER_COMPLETE_PATH
=
tmp_transfer_complete.php
TEMPLATE_TRANSFER_STEP2_CONFIRM_PATH
=
tmp_transfer_step2_confirm.php
TEMPLATE_TRANSFER_CONFIRM_PATH
=
tmp_transfer_confirm.php
TEMPLATE_TRANSFER_STEP2_COMPLETE_PATH
=
tmp_transfer_step2_complete.php
TEMPLATE_TRANSFER_DETAIL_PATH
=
tmp_transfer_detail.php
TEMPLATE_HISTORY_PATH
=
tmp_history.php
TEMPLATE_TRANSFER_EDIT_PATH
=
tmp_transfer_edit.php
TEMPLATE_EXCHANGE_INPUT_PATH
=
tmp_exchange_input.php
TEMPLATE_TRANSFER_IMPORT_COMPLETE_PATH
=
tmp_transfer_import_complete.php
TEMPLATE_EXCHANGE_CONFIRM_PATH
=
tmp_exchange_confirm.php
TEMPLATE_TRANSFER_IMPORT_CONFIRM_PATH
=
tmp_transfer_import_confirm.php
TEMPLATE_EXCHANGE_COMPLETE_PATH
=
tmp_exchange_complete.php
TEMPLATE_TRANSFER_IMPORT_INPUT_PATH
=
tmp_transfer_import_input.php
TEMPLATE_REGISTER_FAIL_PATH
=
tmp_register_fail.php
TEMPLATE_TRANSFER_INPUT_PATH
=
tmp_transfer_input.php
TEMPLATE_REGISTER_STEP_1_PATH
=
tmp_register_step1.php
TEMPLATE_TRANSFER_LIST_PATH
=
tmp_transfer_list.php
TEMPLATE_REGISTER_STEP_2_PATH
=
tmp_register_step2.php
TEMPLATE_WITHDRAW_ACTION_PATH
=
tmp_withdraw_account.php
TEMPLATE_REGISTER_STEP_3_PATH
=
tmp_register_step3.php
TEMPLATE_WITHDRAW_COMPLETE_PATH
=
tmp_withdraw_complete.php
TEMPLATE_REGISTER_STEP_4_PATH
=
tmp_register_step4.php
TEMPLATE_WITHDRAW_CONFIRM_PATH
=
tmp_withdraw_confirm.php
TEMPLATE_REGISTER_STEP_5_PATH
=
tmp_register_step5.php
TEMPLATE_WITHDRAW_DETAIL_PATH
=
tmp_withdraw_detail.php
TEMPLATE_REGISTER_STEP_5_FAIL_PATH
=
tmp_register_step5_fail.php
TEMPLATE_WITHDRAW_EDIT_PATH
=
tmp_withdraw_edit.php
TEMPLATE_REGISTER_STEP_2_CORPORATE_PATH
=
tmp_register_step2_corporate.php
TEMPLATE_WITHDRAW_FLAT3_PREVIEW_PATH
=
tmp_withdraw_flat3_preview.php
TEMPLATE_REGISTER_STEP_3_CORPORATE_PATH
=
tmp_register_step3_corporate.php
TEMPLATE_WITHDRAW_INPUT_PATH
=
tmp_withdraw_input.php
TEMPLATE_INQUIRY_COMPLETE_PATH
=
tmp_inquiry_complete.php
TEMPLATE_WITHDRAW_LIST_PATH
=
tmp_withdraw_list.php
TEMPLATE_INQUIRY_CONFIRM_PATH
=
tmp_inquiry_confirm.php
TEMPLATE_INQUIRY_INPUT_PATH
=
tmp_inquiry_input.php
[SECTION_DIR_PATH_SITE]
TEMPLATE_FORGOT_STEP1_PATH
=
tmp_forgot_step1.php
TEMPLATE_2FA_DISABLE_EXCHANGE
=
tmp_exchange_2fa_disable.php
TEMPLATE_FORGOT_STEP2_PATH
=
tmp_forgot_step2.php
TEMPLATE_2FA_DISABLE_MAIL
=
tmp_setting_mail_2fa.php
TEMPLATE_FORGOT_STEP3_PATH
=
tmp_forgot_step3.php
TEMPLATE_2FA_DISABLE_PASSWORD
=
tmp_setting_pw_2fa_disable.php
TEMPLATE_FORGOT_STEP3_FAIL_PATH
=
tmp_forgot_step3_fail.php
TEMPLATE_2FA_DISABLE_RECEIVED
=
tmp_request_2fa_disable.php
TEMPLATE_FORGOT_STEP4_PATH
=
tmp_forgot_step4.php
TEMPLATE_2FA_DISABLE_TRANSFER
=
tmp_transfer_2fa_disable.php
TEMPLATE_TMP_PROCESS_INVALID_PATH
=
tmp_process_invalid.php
TEMPLATE_CARD_APPLY_ALREADY_PATH
=
tmp_card_apply_already.php
TEMPLATE_NEWS_PATH
=
tmp_news.php
TEMPLATE_NEWS_BACKNUMBER_PATH
=
tmp_news_backnumber.php
TEMPLATE_CHANGE_PASSWORD_STEP3_PATH
=
tmp_change_password_step3.php
TEMPLATE_CHANGE_PASSWORD_STEP3_FAIL_PATH
=
tmp_change_password_step3_fail.php
TEMPLATE_CHANGE_PASSWORD_STEP4_PATH
=
tmp_change_password_step4.php
TEMPLATE_CARD_STATEMENT_PATH
=
tmp_card_statement.php
TEMPLATE_CARD_LOAD_INPUT_PATH
=
tmp_card_load_input.php
TEMPLATE_CARD_LOAD_CONFIRM_PATH
=
tmp_card_load_confirm.php
TEMPLATE_CARD_LOAD_COMPLETE_PATH
=
tmp_card_load_complete.php
TEMPLATE_CARD_BALANCE_PATH
=
tmp_card_balance.php
TEMPLATE_CARD_FAIL_PATH
=
tmp_card_fail.php
TEMPLATE_SETTLEMENT_COMPLETE_PATH
=
tmp_settlement_complete.php
TEMPLATE_SETTLEMENT_CONFIRM_PATH
=
tmp_settlement_confirm.php
TEMPLATE_SETTLEMENT_FAIL_PATH
=
tmp_settlement_fail.php
TEMPLATE_SETTLEMENT_INPUT_PATH
=
tmp_settlement_input.php
TEMPLATE_SETTLEMENT_LOGIN_PATH
=
tmp_settlement_login.php
TEMPLATE_SETTLEMENT_REQUEST_EXPIRED_PATH
=
tmp_settlement_request_expired.php
TEMPLATE_CARD_APPLY_STEP_1_PATH
=
tmp_card_apply_step_1.php
TEMPLATE_CARD_APPLY_STEP_1_PATH
=
tmp_card_apply_step_1.php
TEMPLATE_CARD_APPLY_STEP_2_PATH
=
tmp_card_apply_step_2.php
TEMPLATE_CARD_APPLY_STEP_2_PATH
=
tmp_card_apply_step_2.php
TEMPLATE_CARD_APPLY_STEP_3_PATH
=
tmp_card_apply_step_3.php
TEMPLATE_CARD_APPLY_STEP_3_PATH
=
tmp_card_apply_step_3.php
TEMPLATE_CARD_APPLY_STEP_4_PATH
=
tmp_card_apply_step_4.php
TEMPLATE_CARD_APPLY_STEP_4_PATH
=
tmp_card_apply_step_4.php
TEMPLATE_CARD_BALANCE_PATH
=
tmp_card_balance.php
TEMPLATE_CARD_FAIL_PATH
=
tmp_card_fail.php
TEMPLATE_CARD_LOAD_COMPLETE_PATH
=
tmp_card_load_complete.php
TEMPLATE_CARD_LOAD_CONFIRM_PATH
=
tmp_card_load_confirm.php
TEMPLATE_CARD_LOAD_INPUT_PATH
=
tmp_card_load_input.php
TEMPLATE_CARD_PIN_CONFIRM_PATH
=
tmp_card_pin_confirm.php
TEMPLATE_CARD_PIN_CONFIRM_PATH
=
tmp_card_pin_confirm.php
TEMPLATE_CARD_PIN_ERROR_PATH
=
tmp_card_pin_error.php
TEMPLATE_CARD_PIN_INPUT_PATH
=
tmp_card_pin_input.php
TEMPLATE_CARD_PIN_INPUT_PATH
=
tmp_card_pin_input.php
TEMPLATE_CARD_PIN_SEND_PATH
=
tmp_card_pin_send.php
TEMPLATE_CARD_PIN_SEND_FAIL_PATH
=
tmp_card_pin_send_fail.php
TEMPLATE_CARD_PIN_SEND_COMPLETE_PATH
=
tmp_card_pin_send_complete.php
TEMPLATE_CARD_PIN_SEND_COMPLETE_PATH
=
tmp_card_pin_send_complete.php
TEMPLATE_CARD_PIN_ERROR_PATH
=
tmp_card_pin_error.php
TEMPLATE_CARD_PIN_SEND_FAIL_PATH
=
tmp_card_pin_send_fail.php
TEMPLATE_CARD_APPLY_ALREADY_PATH
=
tmp_card_apply_already.php
TEMPLATE_CARD_PIN_SEND_PATH
=
tmp_card_pin_send.php
TEMPLATE_DEPOSIT_CASHFLOW_INPUT_PATH
=
tmp_deposit_cashflow_input.php
TEMPLATE_CARD_STATEMENT_PATH
=
tmp_card_statement.php
TEMPLATE_DEPOSIT_CASHFLOW_MAINTENANCE_PATH
=
tmp_deposit_cashflow_maintenance.php
TEMPLATE_CHANGE_PASSWORD_STEP3_FAIL_PATH
=
tmp_change_password_step3_fail.php
TEMPLATE_CHANGE_PASSWORD_STEP3_PATH
=
tmp_change_password_step3.php
TEMPLATE_CHANGE_PASSWORD_STEP4_PATH
=
tmp_change_password_step4.php
TEMPLATE_CREATE_ACCOUNT_COMFIRM_PATH
=
tmp_create_account_confirm.php
TEMPLATE_CREATE_ACCOUNT_COMPLETE_PATH
=
tmp_create_account_complete.php
TEMPLATE_CREATE_ACCOUNT_INPUT_PATH
=
tmp_create_account_input.php
TEMPLATE_DEPOSIT_BIT_COMPLETE_PATH
=
tmp_deposit_bit_complete.php
TEMPLATE_DEPOSIT_BIT_INPUT_PATH
=
tmp_deposit_bit_input.php
TEMPLATE_DEPOSIT_BIT_NOTICE_KYC_PATH
=
tmp_deposit_bit_notice_kyc.php
TEMPLATE_DEPOSIT_BIT_SUCCESS_PATH
=
tmp_deposit_bit_success.php
TEMPLATE_DEPOSIT_CASHFLOW_CONFIRM_PATH
=
tmp_deposit_cashflow_confirm.php
TEMPLATE_DEPOSIT_CASHFLOW_CONFIRM_PATH
=
tmp_deposit_cashflow_confirm.php
TEMPLATE_DEPOSIT_CASHFLOW_SUCCESS_PATH
=
tmp_deposit_cashflow_success.php
TEMPLATE_DEPOSIT_CASHFLOW_FAILURE_PATH
=
tmp_deposit_cashflow_failue.php
TEMPLATE_DEPOSIT_CASHFLOW_FAILURE_PATH
=
tmp_deposit_cashflow_failue.php
TEMPLATE_DEPOSIT_CASHFLOW_INPUT_PATH
=
tmp_deposit_cashflow_input.php
TEMPLATE_DEPOSIT_CASHFLOW_MAINTENANCE_PATH
=
tmp_deposit_cashflow_maintenance.php
TEMPLATE_DEPOSIT_CASHFLOW_SEND_PATH
=
tmp_deposit_cashflow_send.php
TEMPLATE_DEPOSIT_CASHFLOW_SEND_PATH
=
tmp_deposit_cashflow_send.php
TEMPLATE_DEPOSIT_NOTICE_KYC_PATH
=
tmp_deposit_notice_kyc.php
TEMPLATE_DEPOSIT_CASHFLOW_SUCCESS_PATH
=
tmp_deposit_cashflow_success.php
TEMPLATE_DEPOSIT_CLEARSETTLE_CONFIRM_PATH
=
tmp_deposit_clearsettle_confirm.php
TEMPLATE_DEPOSIT_CLEARSETTLE_FAIL_PATH
=
tmp_deposit_clearsettle_failure.php
TEMPLATE_DEPOSIT_CLEARSETTLE_INPUT_PATH
=
tmp_deposit_clearsettle_input.php
TEMPLATE_DEPOSIT_CLEARSETTLE_NOTICE_KYC_PATH
=
tmp_deposit_clearsettle_notice_kyc.php
TEMPLATE_DEPOSIT_CLEARSETTLE_SUCCESS_PATH
=
tmp_deposit_clearsettle_success.php
TEMPLATE_DEPOSIT_COMPLETE_GPS_PATH
=
tmp_deposit_complete_gps.php
TEMPLATE_DEPOSIT_COMPLETE_PATH
=
tmp_deposit_complete.php
TEMPLATE_DEPOSIT_CONFIRM_PATH
=
tmp_deposit_confirm.php
TEMPLATE_DEPOSIT_CPS_CONFIRM_PATH
=
tmp_deposit_cps_confirm.php
TEMPLATE_DEPOSIT_CPS_INPUT_PATH
=
tmp_deposit_cps_input.php
TEMPLATE_DEPOSIT_CPS_NOTICE_KYC_PATH
=
tmp_deposit_cps_notice_kyc.php
TEMPLATE_DEPOSIT_CPS_SEND_PATH
=
tmp_deposit_cps_send.php
TEMPLATE_DEPOSIT_CUP_CONFIRM_PATH
=
tmp_deposit_cup_confirm.php
TEMPLATE_DEPOSIT_CUP_INPUT_PATH
=
tmp_deposit_cup_input.php
TEMPLATE_DEPOSIT_CUP_INPUT_PATH
=
tmp_deposit_cup_input.php
TEMPLATE_DEPOSIT_CUP_MAINTENANCE_PATH
=
tmp_deposit_cup_maintenance.php
TEMPLATE_DEPOSIT_CUP_MAINTENANCE_PATH
=
tmp_deposit_cup_maintenance.php
TEMPLATE_DEPOSIT_CUP_CONFIRM_PATH
=
tmp_deposit_cup_confirm.php
TEMPLATE_DEPOSIT_CUP_PAYMENTSUCCESS_PATH
=
tmp_deposit_cup_success.php
TEMPLATE_DEPOSIT_CUP_PAYMENTFAILURE_PATH
=
tmp_deposit_cup_failure.php
TEMPLATE_DEPOSIT_CUP_NOTICE_KYC_PATH
=
tmp_deposit_cup_notice_kyc.php
TEMPLATE_DEPOSIT_CUP_NOTICE_KYC_PATH
=
tmp_deposit_cup_notice_kyc.php
TEMPLATE_DEPOSIT_JRF_COMPLETE_PATH
=
tmp_deposit_complete_jrf.php
TEMPLATE_DEPOSIT_CUP_PAYMENTFAILURE_PATH
=
tmp_deposit_cup_failure.php
TEMPLATE_DEPOSIT_CUP_PAYMENTSUCCESS_PATH
=
tmp_deposit_cup_success.php
TEMPLATE_DEPOSIT_FLAT3_INPUT_PATH
=
tmp_deposit_flat3_input.php
TEMPLATE_DEPOSIT_FLAT3_INPUT_PATH
=
tmp_deposit_flat3_input.php
TEMPLATE_DEPOSIT_FLAT3_SUCCESS_PATH
=
tmp_deposit_flat3_success.php
TEMPLATE_DEPOSIT_FLAT3_PRINT_PATH
=
tmp_deposit_flat3_print.php
TEMPLATE_DEPOSIT_FLAT3_NOT_UNLIMITED_PATH
=
tmp_deposit_flat3_notunlimited.php
TEMPLATE_DEPOSIT_FLAT3_NOT_UNLIMITED_PATH
=
tmp_deposit_flat3_notunlimited.php
TEMPLATE_DEPOSIT_FLAT3_PRINT_PATH
=
tmp_deposit_flat3_print.php
TEMPLATE_DEPOSIT_FLAT3_SEND_PATH
=
tmp_deposit_flat3_send.php
TEMPLATE_DEPOSIT_FLAT3_SEND_PATH
=
tmp_deposit_flat3_send.php
TEMPLATE_DEPOSIT_LBTC_INPUT_PATH
=
tmp_deposit_lbtc_input.php
TEMPLATE_DEPOSIT_FLAT3_SUCCESS_PATH
=
tmp_deposit_flat3_success.php
TEMPLATE_DEPOSIT_LBTC_SUCCESS_PATH
=
tmp_deposit_lbtc_success.php
TEMPLATE_DEPOSIT_H2P_CONFIRM_PATH
=
tmp_deposit_h2p_confirm.php
TEMPLATE_DEPOSIT_LBTC_FAIL_PATH
=
tmp_deposit_lbtc_failure.php
TEMPLATE_DEPOSIT_H2P_FAIL_PATH
=
tmp_deposit_h2p_fail.php
TEMPLATE_DEPOSIT_LBTC_CONFIRM_PATH
=
tmp_deposit_lbtc_confirm.php
TEMPLATE_DEPOSIT_H2P_INPUT_PATH
=
tmp_deposit_h2p_input.php
TEMPLATE_DEPOSIT_LBTC_NOTICE_KYC_PATH
=
tmp_deposit_lbtc_notice_kyc.php
TEMPLATE_DEPOSIT_H2P_NOTICE_KYC_PATH
=
tmp_deposit_h2p_notice_kyc.php
TEMPLATE_DEPOSIT_SEPA_INPUT_PATH
=
tmp_deposit_sepa_input.php
TEMPLATE_DEPOSIT_H2P_PENDING_PATH
=
tmp_deposit_h2p_pending.php
TEMPLATE_DEPOSIT_H2P_SEND_PATH
=
tmp_deposit_h2p_send.php
TEMPLATE_DEPOSIT_BIT_INPUT_PATH
=
tmp_deposit_bit_input.php
TEMPLATE_DEPOSIT_H2P_STATUS_PATH
=
tmp_deposit_h2p_status.php
TEMPLATE_DEPOSIT_BIT_COMPLETE_PATH
=
tmp_deposit_bit_complete.php
TEMPLATE_DEPOSIT_BIT_NOTICE_KYC_PATH
=
tmp_deposit_bit_notice_kyc.php
TEMPLATE_DEPOSIT_BIT_SUCCESS_PATH
=
tmp_deposit_bit_success.php
TEMPLATE_DEPOSIT_CLEARSETTLE_INPUT_PATH
=
tmp_deposit_clearsettle_input.php
TEMPLATE_DEPOSIT_CLEARSETTLE_CONFIRM_PATH
=
tmp_deposit_clearsettle_confirm.php
TEMPLATE_DEPOSIT_CLEARSETTLE_NOTICE_KYC_PATH
=
tmp_deposit_clearsettle_notice_kyc.php
TEMPLATE_DEPOSIT_CLEARSETTLE_SUCCESS_PATH
=
tmp_deposit_clearsettle_success.php
TEMPLATE_DEPOSIT_CLEARSETTLE_FAIL_PATH
=
tmp_deposit_clearsettle_failure.php
TEMPLATE_2FA_DISABLE_MAIL
=
tmp_setting_mail_2fa.php
TEMPLATE_2FA_DISABLE_PASSWORD
=
tmp_setting_pw_2fa_disable.php
TEMPLATE_2FA_DISABLE_EXCHANGE
=
tmp_exchange_2fa_disable.php
TEMPLATE_2FA_DISABLE_RECEIVED
=
tmp_request_2fa_disable.php
TEMPLATE_2FA_DISABLE_TRANSFER
=
tmp_transfer_2fa_disable.php
TEMPLATE_SETTING_SECURITY_SETTINGS
=
tmp_security_settings.php
TEMPLATE_WITHDRAW_LOCKED
=
tmp_withdraw_2FA_lock.php
TEMPLATE_WITHDRAW_LOCAL_LOCKED
=
tmp_withdrawsd_2FA_lock.php
TEMPLATE_DEPOSIT_LBTJ_INPUT_PATH
=
tmp_deposit_lbtj_input.php
TEMPLATE_DEPOSIT_LBTJ_NOTICE_KYC_PATH
=
tmp_deposit_lbtj_notice_kyc.php
TEMPLATE_DEPOSIT_LBTJ_UPLOAD_COMPLETE_PATH
=
tmp_deposit_lbtj_upload_complete.php
TEMPLATE_DEPOSIT_IBT_INPUT_PATH
=
tmp_deposit_ibt_input.php
TEMPLATE_DEPOSIT_IBT_CORP_PATH
=
tmp_deposit_ibt_corp.php
TEMPLATE_DEPOSIT_IBT_CORP_PATH
=
tmp_deposit_ibt_corp.php
TEMPLATE_DEPOSIT_IBT_INPUT_PATH
=
tmp_deposit_ibt_input.php
TEMPLATE_DEPOSIT_IBT_NOTICE_KYC_PATH
=
tmp_deposit_ibt_notice_kyc.php
TEMPLATE_DEPOSIT_IBT_NOTICE_KYC_PATH
=
tmp_deposit_ibt_notice_kyc.php
TEMPLATE_DEPOSIT_INPUT_PATH
=
tmp_deposit_input.php
TEMPLATE_WITHDRAW_NOTICE_KYC
=
tmp_withdraw_notice_kyc.php
TEMPLATE_DEPOSIT_H2P_INPUT_PATH
=
tmp_deposit_h2p_input.php
TEMPLATE_DEPOSIT_H2P_CONFIRM_PATH
=
tmp_deposit_h2p_confirm.php
TEMPLATE_DEPOSIT_H2P_SEND_PATH
=
tmp_deposit_h2p_send.php
TEMPLATE_DEPOSIT_H2P_STATUS_PATH
=
tmp_deposit_h2p_status.php
TEMPLATE_DEPOSIT_H2P_FAIL_PATH
=
tmp_deposit_h2p_fail.php
TEMPLATE_DEPOSIT_H2P_PENDING_PATH
=
tmp_deposit_h2p_pending.php
TEMPLATE_DEPOSIT_H2P_NOTICE_KYC_PATH
=
tmp_deposit_h2p_notice_kyc.php
TEMPLATE_WITHDRAW_H2P_INPUT_PATH
=
tmp_withdraw_h2p_input.php
TEMPLATE_WITHDRAW_H2P_CONFIRM_PATH
=
tmp_withdraw_h2p_confirm.php
TEMPLATE_WITHDRAW_H2P_COMPLETE_PATH
=
tmp_withdraw_h2p_complete.php
TEMPLATE_WITHDRAW_H2P_SUCCESS_PATH
=
tmp_withdraw_h2p_success.php
TEMPLATE_WITHDRAW_H2P_FAIL_PATH
=
tmp_withdraw_h2p_fail.php
TEMPLATE_WITHDRAW_H2P_LOCKED_PATH
=
tmp_withdraw_h2p_2FA_lock.php
TEMPLATE_DEPOSIT_CPS_INPUT_PATH
=
tmp_deposit_cps_input.php
TEMPLATE_DEPOSIT_CPS_NOTICE_KYC_PATH
=
tmp_deposit_cps_notice_kyc.php
TEMPLATE_DEPOSIT_CPS_CONFIRM_PATH
=
tmp_deposit_cps_confirm.php
TEMPLATE_DEPOSIT_CPS_SEND_PATH
=
tmp_deposit_cps_send.php
TEMPLATE_DEPOSIT_LBTF3_INPUT_PATH
=
tmp_deposit_lbtf3_input.php
TEMPLATE_DEPOSIT_LBTF3_SUCCESS_PATH
=
tmp_deposit_lbtf3_success.php
TEMPLATE_DEPOSIT_LBTF3_PRINT_PATH
=
tmp_deposit_lbtf3_print.php
TEMPLATE_DEPOSIT_LBTF3_NOT_UNLIMITED_PATH
=
tmp_deposit_lbtf3_notunlimited.php
TEMPLATE_DEPOSIT_LBTF3_SEND_PATH
=
tmp_deposit_flat3_send.php
TEMPLATE_DEPOSIT_LBTF3_KYC_PATH
=
tmp_deposit_lbtf3_kyc.php
TEMPLATE_DEPOSIT_JPV_INPUT_PATH
=
tmp_deposit_jpv_input.php
TEMPLATE_DEPOSIT_JPV_INPUT_PATH
=
tmp_deposit_jpv_input.php
TEMPLATE_DEPOSIT_JPV_SUCCESS_PATH
=
tmp_deposit_jpv_success.php
TEMPLATE_DEPOSIT_JPV_KYC_PATH
=
tmp_deposit_jpv_kyc.php
TEMPLATE_DEPOSIT_JPV_PRINT_PATH
=
tmp_deposit_jpv_print.php
TEMPLATE_DEPOSIT_JPV_NOT_UNLIMITED_PATH
=
tmp_deposit_jpv_notunlimited.php
TEMPLATE_DEPOSIT_JPV_NOT_UNLIMITED_PATH
=
tmp_deposit_jpv_notunlimited.php
TEMPLATE_DEPOSIT_JPV_PRINT_PATH
=
tmp_deposit_jpv_print.php
TEMPLATE_DEPOSIT_JPV_SEND_PATH
=
tmp_deposit_flat3_send.php
TEMPLATE_DEPOSIT_JPV_SEND_PATH
=
tmp_deposit_flat3_send.php
TEMPLATE_DEPOSIT_JPV_KYC_PATH
=
tmp_deposit_jpv_kyc.php
TEMPLATE_DEPOSIT_JPV_SUCCESS_PATH
=
tmp_deposit_jpv_success.php
TEMPLATE_TRANSFER_SETTINGS_PATH
=
tmp_transfer_settings.php
TEMPLATE_DEPOSIT_JRF_COMPLETE_PATH
=
tmp_deposit_complete_jrf.php
TEMPLATE_DEPOSIT_LBTC_CONFIRM_PATH
=
tmp_deposit_lbtc_confirm.php
TEMPLATE_DEPOSIT_ZANETA_INPUT_PATH
=
tmp_deposit_zanetapay_input.php
TEMPLATE_DEPOSIT_LBTC_FAIL_PATH
=
tmp_deposit_lbtc_failure.php
TEMPLATE_DEPOSIT_LBTC_INPUT_PATH
=
tmp_deposit_lbtc_input.php
TEMPLATE_DEPOSIT_LBTC_NOTICE_KYC_PATH
=
tmp_deposit_lbtc_notice_kyc.php
TEMPLATE_DEPOSIT_LBTC_SUCCESS_PATH
=
tmp_deposit_lbtc_success.php
TEMPLATE_DEPOSIT_LBTF3_INPUT_PATH
=
tmp_deposit_lbtf3_input.php
TEMPLATE_DEPOSIT_LBTF3_KYC_PATH
=
tmp_deposit_lbtf3_kyc.php
TEMPLATE_DEPOSIT_LBTF3_NOT_UNLIMITED_PATH
=
tmp_deposit_lbtf3_notunlimited.php
TEMPLATE_DEPOSIT_LBTF3_PRINT_PATH
=
tmp_deposit_lbtf3_print.php
TEMPLATE_DEPOSIT_LBTF3_SEND_PATH
=
tmp_deposit_flat3_send.php
TEMPLATE_DEPOSIT_LBTF3_SUCCESS_PATH
=
tmp_deposit_lbtf3_success.php
TEMPLATE_DEPOSIT_LBTJ_INPUT_PATH
=
tmp_deposit_lbtj_input.php
TEMPLATE_DEPOSIT_LBTJ_NOTICE_KYC_PATH
=
tmp_deposit_lbtj_notice_kyc.php
TEMPLATE_DEPOSIT_LBTJ_UPLOAD_COMPLETE_PATH
=
tmp_deposit_lbtj_upload_complete.php
TEMPLATE_DEPOSIT_NOTICE_KYC_PATH
=
tmp_deposit_notice_kyc.php
TEMPLATE_DEPOSIT_PENDING_GPS_PATH
=
tmp_deposit_pending_gps.php
TEMPLATE_DEPOSIT_PRINT_PATH
=
tmp_deposit_print.php
TEMPLATE_DEPOSIT_SEND_PATH
=
tmp_deposit_send.php
TEMPLATE_DEPOSIT_SEPA_INPUT_PATH
=
tmp_deposit_sepa_input.php
TEMPLATE_DEPOSIT_ZANETA_CONFIRM_PATH
=
tmp_deposit_zanetapay_confirm.php
TEMPLATE_DEPOSIT_ZANETA_CONFIRM_PATH
=
tmp_deposit_zanetapay_confirm.php
TEMPLATE_DEPOSIT_ZANETA_FAILURE_PATH
=
tmp_deposit_zanetapay_failure.php
TEMPLATE_DEPOSIT_ZANETA_INPUT_PATH
=
tmp_deposit_zanetapay_input.php
TEMPLATE_DEPOSIT_ZANETA_NOTICE_KYC_PATH
=
tmp_deposit_zanetapay_notice_kyc.php
TEMPLATE_DEPOSIT_ZANETA_NOTICE_KYC_PATH
=
tmp_deposit_zanetapay_notice_kyc.php
TEMPLATE_DEPOSIT_ZANETA_SEND_PATH
=
tmp_deposit_zanetapay_send.php
TEMPLATE_DEPOSIT_ZANETA_SEND_PATH
=
tmp_deposit_zanetapay_send.php
TEMPLATE_DEPOSIT_ZANETA_SUCCESS_PATH
=
tmp_deposit_zanetapay_success.php
TEMPLATE_DEPOSIT_ZANETA_SUCCESS_PATH
=
tmp_deposit_zanetapay_success.php
TEMPLATE_DEPOSIT_ZANETA_FAILURE_PATH
=
tmp_deposit_zanetapay_failure.php
TEMPLATE_EXCHANGE_COMPLETE_PATH
=
tmp_exchange_complete.php
\ No newline at end of file
TEMPLATE_EXCHANGE_CONFIRM_PATH
=
tmp_exchange_confirm.php
TEMPLATE_EXCHANGE_INPUT_PATH
=
tmp_exchange_input.php
TEMPLATE_FORGOT_STEP1_PATH
=
tmp_forgot_step1.php
TEMPLATE_FORGOT_STEP2_PATH
=
tmp_forgot_step2.php
TEMPLATE_FORGOT_STEP3_FAIL_PATH
=
tmp_forgot_step3_fail.php
TEMPLATE_FORGOT_STEP3_PATH
=
tmp_forgot_step3.php
TEMPLATE_FORGOT_STEP4_PATH
=
tmp_forgot_step4.php
TEMPLATE_HISTORY_PATH
=
tmp_history.php
TEMPLATE_INDEX_PATH
=
tmp_index.php
TEMPLATE_INQUIRY_COMPLETE_PATH
=
tmp_inquiry_complete.php
TEMPLATE_INQUIRY_CONFIRM_PATH
=
tmp_inquiry_confirm.php
TEMPLATE_INQUIRY_INPUT_PATH
=
tmp_inquiry_input.php
TEMPLATE_LOGIN_DONT_VERI_PATH
=
tmp_login_dont_veri.php
TEMPLATE_LOGIN_PATH
=
tmp_login.php
TEMPLATE_LOGIN_RE_SEND_PATH
=
tmp_login_re_send.php
TEMPLATE_MENU_PATH
=
tmp_menu.php
TEMPLATE_NEWS_BACKNUMBER_PATH
=
tmp_news_backnumber.php
TEMPLATE_NEWS_PATH
=
tmp_news.php
TEMPLATE_REGISTER_FAIL_PATH
=
tmp_register_fail.php
TEMPLATE_REGISTER_STEP_1_PATH
=
tmp_register_step1.php
TEMPLATE_REGISTER_STEP_2_CORPORATE_PATH
=
tmp_register_step2_corporate.php
TEMPLATE_REGISTER_STEP_2_PATH
=
tmp_register_step2.php
TEMPLATE_REGISTER_STEP_3_CORPORATE_PATH
=
tmp_register_step3_corporate.php
TEMPLATE_REGISTER_STEP_3_PATH
=
tmp_register_step3.php
TEMPLATE_REGISTER_STEP_4_PATH
=
tmp_register_step4.php
TEMPLATE_REGISTER_STEP_5_FAIL_PATH
=
tmp_register_step5_fail.php
TEMPLATE_REGISTER_STEP_5_PATH
=
tmp_register_step5.php
TEMPLATE_REQUEST_ACTION_PATH
=
tmp_request_account.php
TEMPLATE_REQUEST_APPLY_COMPLETE_PATH
=
tmp_request_apply_complete.php
TEMPLATE_REQUEST_APPLY_PATH
=
tmp_request_apply.php
TEMPLATE_REQUEST_COMPLETE_PATH
=
tmp_request_complete.php
TEMPLATE_REQUEST_CONFIRM_PATH
=
tmp_request_confirm.php
TEMPLATE_REQUEST_DETAIL_PATH
=
tmp_request_detail.php
TEMPLATE_REQUEST_INPUT_PATH
=
tmp_request_input.php
TEMPLATE_REQUEST_LIST_PATH
=
tmp_request_list.php
TEMPLATE_REQUEST_REQUEST_APPLY_DETAIL_PATH
=
tmp_request_apply_detail.php
TEMPLATE_SEND_ACTION_PATH
=
tmp_send_account.php
TEMPLATE_SEND_COMPLETE_PATH
=
tmp_send_complete.php
TEMPLATE_SEND_CONFIRM_PATH
=
tmp_send_confirm.php
TEMPLATE_SEND_INPUT_PATH
=
tmp_send_input.php
TEMPLATE_SETTING_COMFIRM_PROFILE_PATH
=
tmp_setting_confirm_profile.php
TEMPLATE_SETTING_COMPLETE_PROFILE_PATH
=
tmp_setting_complete_profile.php
TEMPLATE_SETTING_INPUT_KYC_PATH
=
tmp_setting_input_kyc.php
TEMPLATE_SETTING_INPUT_PROFILE_IMG_PATH
=
tmp_setting_input_profile_img.php
TEMPLATE_SETTING_INPUT_PROFILE_PATH
=
tmp_setting_input_profile.php
TEMPLATE_SETTING_KYC_UPLOAD
=
tmp_setting_kyc_upload.php
TEMPLATE_SETTING_KYC_UPLOAD_STEP1
=
tmp_setting_kyc_upload_step1.php
TEMPLATE_SETTING_KYC_UPLOAD_STEP2
=
tmp_setting_kyc_upload_step2.php
TEMPLATE_SETTING_MAIL_COMPLETE
=
tmp_setting_mail_complete.php
TEMPLATE_SETTING_MAIL_INPUT
=
tmp_setting_mail_input.php
TEMPLATE_SETTING_PROFILE_PATH
=
tmp_setting_profile.php
TEMPLATE_SETTING_PW_COMPLETE
=
tmp_setting_pw_complete.php
TEMPLATE_SETTING_PW_CONFIRM
=
tmp_setting_pw_confirm.php
TEMPLATE_SETTING_PW_INPUT
=
tmp_setting_pw_input.php
TEMPLATE_SETTING_SECURITY_SETTINGS
=
tmp_security_settings.php
TEMPLATE_SETTLEMENT_COMPLETE_PATH
=
tmp_settlement_complete.php
TEMPLATE_SETTLEMENT_CONFIRM_PATH
=
tmp_settlement_confirm.php
TEMPLATE_SETTLEMENT_FAIL_PATH
=
tmp_settlement_fail.php
TEMPLATE_SETTLEMENT_INPUT_PATH
=
tmp_settlement_input.php
TEMPLATE_SETTLEMENT_LOGIN_PATH
=
tmp_settlement_login.php
TEMPLATE_SETTLEMENT_REQUEST_EXPIRED_PATH
=
tmp_settlement_request_expired.php
TEMPLATE_SUMMARY_PATH
=
tmp_summary.php
TEMPLATE_TMP_PROCESS_INVALID_PATH
=
tmp_process_invalid.php
TEMPLATE_TRANSFER_SETTINGS_PATH
=
tmp_transfer_settings.php
TEMPLATE_TRANSFER_STEP1_PATH
=
tmp_transfer_step1.php
TEMPLATE_TRANSFER_STEP2_COMPLETE_PATH
=
tmp_transfer_step2_complete.php
TEMPLATE_TRANSFER_STEP2_CONFIRM_PATH
=
tmp_transfer_step2_confirm.php
TEMPLATE_TRANSFER_STEP2_PATH
=
tmp_transfer_step2.php
TEMPLATE_WITHDRAW_CARD_COMPLETE_PATH
=
tmp_withdraw_card_complete.php
TEMPLATE_WITHDRAW_CARD_CONFIRM_PATH
=
tmp_withdraw_card_confirm.php
TEMPLATE_WITHDRAW_CARD_INPUT_PATH
=
tmp_withdraw_card_input.php
TEMPLATE_WITHDRAW_COMPLETE_PATH
=
tmp_withdraw_complete.php
TEMPLATE_WITHDRAW_CONFIRM_PATH
=
tmp_withdraw_confirm.php
TEMPLATE_WITHDRAW_FLAT3_COMPLETE_PATH
=
tmp_withdraw_flat3_complete.php
TEMPLATE_WITHDRAW_FLAT3_CONFIRM_PATH
=
tmp_withdraw_flat3_confirm.php
TEMPLATE_WITHDRAW_FLAT3_INPUT_PATH
=
tmp_withdraw_flat3_input.php
TEMPLATE_WITHDRAW_FLAT3_LOCKED_PATH
=
tmp_withdraw_flat3_2FA_lock.php
TEMPLATE_WITHDRAW_FLAT3_NOTICE_KYC
=
tmp_withdraw_flat3_notice_kyc.php
TEMPLATE_WITHDRAW_H2P_COMPLETE_PATH
=
tmp_withdraw_h2p_complete.php
TEMPLATE_WITHDRAW_H2P_CONFIRM_PATH
=
tmp_withdraw_h2p_confirm.php
TEMPLATE_WITHDRAW_H2P_FAIL_PATH
=
tmp_withdraw_h2p_fail.php
TEMPLATE_WITHDRAW_H2P_INPUT_PATH
=
tmp_withdraw_h2p_input.php
TEMPLATE_WITHDRAW_H2P_LOCKED_PATH
=
tmp_withdraw_h2p_2FA_lock.php
TEMPLATE_WITHDRAW_H2P_SUCCESS_PATH
=
tmp_withdraw_h2p_success.php
TEMPLATE_WITHDRAW_INPUT_PATH
=
tmp_withdraw_input.php
TEMPLATE_WITHDRAW_LOCALINPUT_CONFIRM
=
tmp_withdrawsd_localbank_confirm.php
TEMPLATE_WITHDRAW_LOCALINPUT_INPUT_PATH
=
tmp_withdraw_localbank_input.php
TEMPLATE_WITHDRAW_LOCALRETURN_FAILED
=
tmp_withdrawsd_localbank_faild.php
TEMPLATE_WITHDRAW_LOCALRETURN_SUCCESS
=
tmp_withdrawsd_localbank_success.php
TEMPLATE_WITHDRAW_LOCAL_LOCKED
=
tmp_withdrawsd_2FA_lock.php
TEMPLATE_WITHDRAW_LOCKED
=
tmp_withdraw_2FA_lock.php
TEMPLATE_WITHDRAW_NOTICE_KYC
=
tmp_withdraw_notice_kyc.php
TEMPLATE_WITHDRAW_STEP1_PATH
=
tmp_withdrawal_step1.php
system/lib/sql.xml
View file @
05e100ec
...
@@ -4654,6 +4654,421 @@ WHERE
...
@@ -4654,6 +4654,421 @@ WHERE
__ELEMENT03__
__ELEMENT03__
</LIST_USER_TRANSACTION_ADMIN_COUNT>
</LIST_USER_TRANSACTION_ADMIN_COUNT>
<SELECT_USER_TRANSACTION_ADMIN_COUNT>
SELECT
(remitter + receiver + deposit + withdrawal + benef_exchange
+ debit_exchange + from_request + to_request + with1 + with2 + with3 ) AS 'overall_total'
FROM (
SELECT
(SELECT COUNT(*) FROM (SELECT /* 通常入金 */
create_time AS transaction_time
, deposit_date AS process_time
, DATE_FORMAT(create_time, '%Y/%m/%d') AS transaction_time_string
, DATE_FORMAT(deposit_date, '%Y/%m/%d') AS process_time_string
, transaction_number AS transaction_number
, '1' AS transaction_type
, '' AS withdraw_account_number
, user_account AS deposit_account_number
, '' AS withdraw_amount
, '' AS withdraw_fee
, amount AS deposit_amount
, fee AS deposit_fee
, '' AS rate
, currency AS deposit_currency
, '' AS withdraw_currency
, '' AS transfer_currency
, '' AS transfer_amount
, 0 AS TYPE
, 0 AS STATUS
, message AS message
, method AS method
, msecond AS msecond
, 0 AS process_status
FROM
t_deposit
WHERE
user_account = '__ELEMENT01__'
AND NOW() + INTERVAL 17 HOUR > deposit_date
AND currency = '__ELEMENT02__') deposit_sub
LEFT OUTER JOIN
v_users_all AS withdraw_user ON(withdraw_account_number = withdraw_user.user_account)
LEFT OUTER JOIN
v_users_all AS deposit_user ON(deposit_account_number = deposit_user.user_account)
WHERE 1 __ELEMENT03__
) deposit,
(SELECT COUNT(*) FROM (SELECT /* 通常出金 */
create_time AS transaction_time
, process_time AS process_time
, DATE_FORMAT(create_time, '%Y/%m/%d') AS transaction_time_string
, DATE_FORMAT(process_time, '%Y/%m/%d') AS process_time_string
, transaction_number AS transaction_number
, '2' AS transaction_type
, '' AS withdraw_account_number
, '' AS deposit_account_number
, debit_amount AS withdraw_amount
, fee AS withdraw_fee
, '' AS deposit_amount
, '' AS deposit_fee
, '' AS rate
, '' AS deposit_currency
, debit_currency AS withdraw_currency
, '' AS transfer_currency
, '' AS transfer_amount
, TYPE AS TYPE
, STATUS AS STATUS
, receipt_message AS message
, '' AS method
, msecond AS msecond
, 0 AS process_status
FROM
t_withdraw
WHERE
user_account = '__ELEMENT01__'
AND STATUS
<
= '3'
AND debit_currency = '__ELEMENT02__'
AND (TYPE = '0'
OR TYPE = '3'
OR TYPE = '1')) withdraw_sub
LEFT OUTER JOIN
v_users_all AS withdraw_user ON(withdraw_account_number = withdraw_user.user_account)
LEFT OUTER JOIN
v_users_all AS deposit_user ON(deposit_account_number = deposit_user.user_account)
WHERE 1 __ELEMENT03__
) withdrawal,
(SELECT COUNT(*) FROM (SELECT /* 両替(入金) */
create_time AS transaction_time
, create_time AS process_time
, DATE_FORMAT(create_time, '%Y/%m/%d') AS transaction_time_string
, DATE_FORMAT(create_time, '%Y/%m/%d') AS process_time_string
, transaction_number AS transaction_number
, '3' AS transaction_type
, '' AS withdraw_account_number
, user_account AS deposit_account_number
, 0 AS withdraw_amount
, '' AS withdraw_fee
, amount AS deposit_amount
, 0 AS deposit_fee
, '' AS rate
, currency AS deposit_currency
, '' AS withdraw_currency
, '' AS transfer_currency
, '' AS transfer_amount
, 0 AS TYPE
, 0 AS STATUS
, '' AS message
, '' AS method
, msecond AS msecond
, 0 AS process_status
FROM
t_exchange
WHERE
user_account = '__ELEMENT01__'
AND currency = '__ELEMENT02__') exchange_sub
LEFT OUTER JOIN
v_users_all AS withdraw_user ON(withdraw_account_number = withdraw_user.user_account)
LEFT OUTER JOIN
v_users_all AS deposit_user ON(deposit_account_number = deposit_user.user_account)
WHERE 1 __ELEMENT03__
) benef_exchange,
(SELECT COUNT(*) FROM (SELECT /* 両替(出金) */
create_time AS transaction_time
, create_time AS process_time
, DATE_FORMAT(create_time, '%Y/%m/%d') AS transaction_time_string
, DATE_FORMAT(create_time, '%Y/%m/%d') AS process_time_string
, transaction_number AS transaction_number
, '4' AS transaction_type
, user_account AS withdraw_account_number
, 0 AS deposit_account_number
, debit_amount AS withdraw_amount
, 0 AS withdraw_fee
, 0 AS deposit_amount
, '' AS deposit_fee
, '' AS rate
, '' AS deposit_currency
, debit_currency AS withdraw_currency
, '' AS transfer_currency
, '' AS transfer_amount
, 0 AS TYPE
, 0 AS STATUS
, '' AS message
, '' AS method
, msecond AS msecond
, 0 AS process_status
FROM
t_exchange
WHERE
user_account = '__ELEMENT01__'
AND debit_currency = '__ELEMENT02__') exchange_sub
LEFT OUTER JOIN
v_users_all AS withdraw_user ON(withdraw_account_number = withdraw_user.user_account)
LEFT OUTER JOIN
v_users_all AS deposit_user ON(deposit_account_number = deposit_user.user_account)
WHERE 1 __ELEMENT03__
) debit_exchange,
(SELECT COUNT(*) FROM (SELECT /* 口座振替(出金) */
create_time AS transaction_time
, create_time AS process_time
, DATE_FORMAT(create_time, '%Y/%m/%d') AS transaction_time_string
, DATE_FORMAT(create_time, '%Y/%m/%d') AS process_time_string
, transaction_number AS transaction_number
, '5' AS transaction_type
, from_account AS withdraw_account_number
, to_account AS deposit_account_number
, debit_amount AS withdraw_amount
, from_fee AS withdraw_fee
, '' AS deposit_amount
, '' AS deposit_fee
, '' AS rate
, '' AS deposit_currency
, debit_currency AS withdraw_currency
, '' AS transfer_currency
, '' AS transfer_amount
, 0 AS TYPE
, 0 AS STATUS
, message AS message
, '' AS method
, msecond AS msecond
, process_status AS process_status
FROM
t_transfer
WHERE
user_account = '__ELEMENT01__'
AND debit_currency = '__ELEMENT02__') transfer_sub
LEFT OUTER JOIN
v_users_all AS withdraw_user ON(withdraw_account_number = withdraw_user.user_account)
LEFT OUTER JOIN
v_users_all AS deposit_user ON(deposit_account_number = deposit_user.user_account)
WHERE 1 __ELEMENT03__
) remitter,
(SELECT COUNT(*) FROM (SELECT /* 口座振替(入金) */
create_time AS transaction_time
, create_time AS process_time
, DATE_FORMAT(create_time, '%Y/%m/%d') AS transaction_time_string
, DATE_FORMAT(create_time, '%Y/%m/%d') AS process_time_string
, transaction_number AS transaction_number
, '6' AS transaction_type
, from_account AS withdraw_account_number
, to_account AS deposit_account_number
, '' AS withdraw_amount
, '' AS withdraw_fee
, transfer_amount AS deposit_amount
, to_fee AS deposit_fee
, '' AS rate
, transfer_currency AS deposit_currency
, '' AS withdraw_currency
, '' AS transfer_currency
, '' AS transfer_amount
, 0 AS TYPE
, 0 AS STATUS
, message AS message
, '' AS method
, msecond AS msecond
, process_status AS process_status
FROM
t_transfer
WHERE
to_account = '__ELEMENT01__'
AND transfer_currency = '__ELEMENT02__') transfer_sub
LEFT OUTER JOIN
v_users_all AS withdraw_user ON(withdraw_account_number = withdraw_user.user_account)
LEFT OUTER JOIN
v_users_all AS deposit_user ON(deposit_account_number = deposit_user.user_account)
WHERE 1 __ELEMENT03__
) receiver,
(SELECT COUNT(*) FROM (SELECT /* 引き落し(出金) */
update_time AS transaction_time
, update_time AS process_time
, DATE_FORMAT(create_time, '%Y/%m/%d') AS transaction_time_string
, DATE_FORMAT(update_time, '%Y/%m/%d') AS process_time_string
, transaction_number AS transaction_number
, '7' AS transaction_type
, from_account AS withdraw_account_number
, to_account AS deposit_account_number
, debit_amount AS withdraw_amount
, from_fee AS withdraw_fee
, '' AS deposit_amount
, '' AS deposit_fee
, '' AS rate
, '' AS deposit_currency
, debit_currency AS withdraw_currency
, '' AS transfer_currency
, '' AS transfer_amount
, 0 AS TYPE
, 0 AS STATUS
, message AS message
, '' AS method
, msecond AS msecond
, 0 AS process_status
FROM
t_request
WHERE
from_account = '__ELEMENT01__'
AND debit_currency = '__ELEMENT02__'
AND STATUS = 1) request_sub
LEFT OUTER JOIN
v_users_all AS withdraw_user ON(withdraw_account_number = withdraw_user.user_account)
LEFT OUTER JOIN
v_users_all AS deposit_user ON(deposit_account_number = deposit_user.user_account)
WHERE 1 __ELEMENT03__
) from_request,
(SELECT COUNT(*) FROM (SELECT /* 引き落し(入金) */
update_time AS transaction_time
, update_time AS process_time
, DATE_FORMAT(create_time, '%Y/%m/%d') AS transaction_time_string
, DATE_FORMAT(update_time, '%Y/%m/%d') AS process_time_string
, transaction_number AS transaction_number
, '8' AS transaction_type
, from_account AS withdraw_account_number
, to_account AS deposit_account_number
, '' AS withdraw_amount
, '' AS withdraw_fee
, amount AS deposit_amount
, to_fee AS deposit_fee
, '' AS rate
, currency AS deposit_currency
, '' AS withdraw_currency
, '' AS transfer_currency
, '' AS transfer_amount
, 0 AS TYPE
, 0 AS STATUS
, message AS message
, '' AS method
, msecond AS msecond
, 0 AS process_status
FROM
t_request
WHERE
to_account = '__ELEMENT01__'
AND currency = '__ELEMENT02__'
AND STATUS = 1) request_sub
LEFT OUTER JOIN
v_users_all AS withdraw_user ON(withdraw_account_number = withdraw_user.user_account)
LEFT OUTER JOIN
v_users_all AS deposit_user ON(deposit_account_number = deposit_user.user_account)
WHERE 1 __ELEMENT03__
) to_request,
(SELECT COUNT(*) FROM (SELECT /* 出金(組戻し) */
create_time AS transaction_time
, process_time AS process_time
, DATE_FORMAT(create_time, '%Y/%m/%d') AS transaction_time_string
, DATE_FORMAT(process_time, '%Y/%m/%d') AS process_time_string
, transaction_number AS transaction_number
, '9' AS transaction_type
, '' AS withdraw_account_number
, user_account AS deposit_account_number
, debit_amount AS withdraw_amount
, '' AS withdraw_fee
, debit_amount AS deposit_amount
, (fee + fee_refund) AS deposit_fee
, '' AS rate
, debit_currency AS deposit_currency
, '' AS withdraw_currency
, 0 AS debit_currency
, 0 AS debit_amount
, 0 AS TYPE
, STATUS AS STATUS
, '' AS message
, '' AS method
, msecond AS msecond
, 0 AS process_status
FROM
t_withdraw
WHERE
STATUS = '4'
AND user_account = '__ELEMENT01__'
AND debit_currency = '__ELEMENT02__') withdraw_sub
LEFT OUTER JOIN
v_users_all AS withdraw_user ON(withdraw_account_number = withdraw_user.user_account)
LEFT OUTER JOIN
v_users_all AS deposit_user ON(deposit_account_number = deposit_user.user_account)
WHERE 1 __ELEMENT03__
) with1,
(SELECT COUNT(*) FROM (SELECT /* 出金(キャンセル) */
create_time AS transaction_time
, process_time AS process_time
, DATE_FORMAT(create_time, '%Y/%m/%d') AS transaction_time_string
, DATE_FORMAT(process_time, '%Y/%m/%d') AS process_time_string
, transaction_number AS transaction_number
, '10' AS transaction_type
, '' AS withdraw_account_number
, user_account AS deposit_account_number
, debit_amount AS withdraw_amount
, '' AS withdraw_fee
, debit_amount AS deposit_amount
, fee AS deposit_fee
, '' AS rate
, debit_currency AS deposit_currency
, '' AS withdraw_currency
, 0 AS debit_currency
, 0 AS debit_amount
, 0 AS TYPE
, STATUS AS STATUS
, '' AS message
, '' AS method
, msecond AS msecond
, 0 AS process_status
FROM
t_withdraw
WHERE
STATUS = '6'
AND user_account = '__ELEMENT01__'
AND debit_currency = '__ELEMENT02__') withdraw_sub
LEFT OUTER JOIN
v_users_all AS withdraw_user ON(withdraw_account_number = withdraw_user.user_account)
LEFT OUTER JOIN
v_users_all AS deposit_user ON(deposit_account_number = deposit_user.user_account)
WHERE 1 __ELEMENT03__
) with2,
(SELECT COUNT(*) FROM (SELECT /* 账户休止金 */
create_time AS transaction_time
, process_time AS process_time
, DATE_FORMAT(create_time, '%Y/%m/%d') AS transaction_time_string
, DATE_FORMAT(process_time, '%Y/%m/%d') AS process_time_string
, transaction_number AS transaction_number
, '11' AS transaction_type
, '' AS withdraw_account_number
, '' AS deposit_account_number
, debit_amount AS withdraw_amount
, fee AS withdraw_fee
, debit_amount AS deposit_amount
, '' AS deposit_fee
, '' AS rate
, '' AS deposit_currency
, debit_currency AS withdraw_currency
, 0 AS debit_currency
, 0 AS debit_amount
, 0 AS TYPE
, STATUS AS STATUS
, moneyout_solution AS message
, '' AS method
, msecond AS msecond
, 0 AS process_status
FROM
t_withdraw
WHERE
STATUS = '2'
AND user_account = '__ELEMENT01__'
AND debit_currency = '__ELEMENT02__'
AND TYPE = '11') withdraw_sub
LEFT OUTER JOIN
v_users_all AS withdraw_user ON(withdraw_account_number = withdraw_user.user_account)
LEFT OUTER JOIN
v_users_all AS deposit_user ON(deposit_account_number = deposit_user.user_account)
WHERE 1 __ELEMENT03__
) with3
) counts
</SELECT_USER_TRANSACTION_ADMIN_COUNT>
<LIST_USER_TRANSACTION_ADMIN_COUNT_REVISED>
<LIST_USER_TRANSACTION_ADMIN_COUNT_REVISED>
SELECT
SELECT
count(trans_in.currency) total,
count(trans_in.currency) total,
...
...
system/logic/account_transactions/controller.php
0 → 100644
View file @
05e100ec
<?php
require_once
(
SYSTEM_LOGICS
.
'account_transactions/logic.php'
);
class
ControlAccountTransactions
extends
LogicAccountTransactions
{
public
function
__construct
(){
parent
::
__construct
();
}
public
function
action
(){
try
{
$this
->
logic
();
if
(
$this
->
getType
()
==
TYPE_EXPORT
){
header
(
'Content-Type: application/octet-stream'
);
header
(
'Content-Disposition: attachment; filename=Trans_List_'
.
date
(
'YmdHis'
)
.
'.csv'
);
header
(
'Content-Transfer-Encoding: binary'
);
echo
"
\xEF\xBB\xBF
"
;
echo
$this
->
makeExportData
();
}
else
{
require_once
(
$this
->
getSystemHTML
(
'TEMPLATE_ACCOUNT_TRANSACTIONS'
,
$this
->
dispHTML
()));
}
}
catch
(
Exception
$ex
){
header
(
"Location: /"
);
}
}
}
\ No newline at end of file
system/logic/account_transactions/logic.php
0 → 100644
View file @
05e100ec
<?php
require_once
(
SYSTEM_LOGICS
.
'account_transactions/model.php'
);
class
LogicAccountTransactions
extends
ModelAccountTransactions
{
public
function
__construct
(){
parent
::
__construct
();
}
public
function
logic
(){
$this
->
init
();
$this
->
list
();
}
private
function
list
(){
$this
->
setCurrencies
(
$this
->
accessSelect
(
'LIST_MST_CURRENCY_ACTIVE'
,
array
()));
$where
=
$this
->
getWhere
();
$rowCount
=
$this
->
getColumnData
(
$this
->
getRowData
(
$this
->
accessSelect
(
'SELECT_USER_TRANSACTION_ADMIN_COUNT'
,
$where
),
0
),
"overall_total"
);
$this
->
setTotal
(
$rowCount
);
$start
=
(
$this
->
getTargetPage
()
-
VAL_INT_1
)
*
VAR_DEFAULT_PAGE_COUNT
;
$this
->
setStart
(
$start
);
$where
[]
=
" LIMIT
{
$start
}
, "
.
VAR_DEFAULT_PAGE_COUNT
;
$this
->
setResult
(
$this
->
accessSelect
(
'LIST_USER_TRANSACTION_ADMIN'
,
$where
));
}
}
\ No newline at end of file
system/logic/account_transactions/model.php
0 → 100644
View file @
05e100ec
<?php
class
ModelAccountTransactions
extends
ModelClassEx
{
private
$detailAccount
;
private
$sUserAccount
;
private
$transactionType
;
private
$transactionNumber
;
private
$sEmail
;
private
$from
;
private
$to
;
private
$currency
;
private
$total
;
private
$start
;
private
$currencies
;
private
$rs
;
private
$lang
;
public
function
__construct
(){
parent
::
__construct
();
}
public
function
init
()
{
try
{
// パラメータの設定
$this
->
setParameter
();
// チェック
$this
->
validate
();
}
catch
(
Exception
$e
)
{
throw
new
Exception
(
NO_STRING
);
}
}
private
function
setParameter
(){
$this
->
detailAccount
=
(
$this
->
getDataPost
(
PARAM_DETAIL_ACCOUNT
)
!=
NO_STRING
)
?
$this
->
getDataPost
(
PARAM_DETAIL_ACCOUNT
,
true
)
:
$this
->
getDataGet
(
PARAM_DETAIL_ACCOUNT
);
;
$this
->
transactionType
=
$this
->
getDataPost
(
PARAM_TRANSACTION_TYPE
,
true
);
$this
->
transactionNumber
=
$this
->
getDataPost
(
PARAM_TRANSACTION_NUMBER
,
true
);
$this
->
sUserAccount
=
$this
->
getDataPost
(
PARAM_S_ACCOUNT
,
true
);
$this
->
sEmail
=
$this
->
getDataPost
(
PARAM_S_EMAIL
);
// GETがあったら、GETを入れる
if
(
$this
->
getDataGet
(
PARAM_S_CURRENCY
)
!=
NO_STRING
)
{
$this
->
currency
=
$this
->
getDataGet
(
PARAM_S_CURRENCY
,
true
);
}
// POSTがあったら、POSTを優先
if
(
$this
->
getDataPost
(
PARAM_S_CURRENCY
)
!=
NO_STRING
)
{
$this
->
currency
=
$this
->
getDataPost
(
PARAM_S_CURRENCY
,
true
);
}
// 通貨データがなければ、デフォルト値(USD)
if
(
$this
->
currency
==
NO_STRING
)
{
$this
->
currency
=
USD
;
}
// Fromの日付は確定させないとダメ
if
(
$this
->
getDataPost
(
PARAM_S_FROM
)
==
NO_STRING
)
{
// $this -> from = date('Y/m/1', strtotime('-1 month'));
$this
->
from
=
date
(
'Y/m/d'
,
strtotime
(
'-1 month'
));
}
else
{
$this
->
from
=
$this
->
getDataPost
(
PARAM_S_FROM
,
true
);
}
$this
->
to
=
$this
->
getDataPost
(
PARAM_S_TO
,
true
);
$this
->
lang
=
$this
->
getLangage
();
}
/*-------------------------------------------------------------------------
* @function_name: サーバ側データチェック
* @parameter : なし
* @return : TRUE:成功、FALSE:失敗
-------------------------------------------------------------------------*/
public
function
validate
()
{
// ログインチェック
if
(
!
$this
->
checkAdminUserLogin
())
{
throw
new
Exception
(
NO_STRING
);
}
}
public
function
echoList
(){
$no
=
$this
->
start
+
1
;
$titleData
=
'<tr>'
.
'<th class="w5p"> </th>'
.
'<th class="w7p">'
.
VAL_STR_HEADER_TRANSACTION_TYPE
.
'</th>'
.
'<th class="w7p">'
.
VAL_STR_USER_ACCOUNT
.
'</th>'
.
'<th class="w10p">'
.
VAL_STR_USER_ACCOUNT_NAME
.
'</th>'
.
'<th class="w7p">'
.
VAL_DEPOSIT_AMOUNT
.
'</th>'
.
'<th class="w7p">'
.
VAL_WITHDRAWAL_AMOUNT
.
'</th>'
.
'<th class="w7p">'
.
VAL_STR_FEE
.
'</th>'
.
'<th class="w7p">'
.
VAL_STR_DATE_REQUESTED
.
'</th>'
.
'<th class="w7p">'
.
VAL_STR_PROCESSING_DATE
.
'</th>'
.
'<th class="w7p">'
.
VAL_STR_TRANSACTION_NUMBER
.
'</th>'
.
'<th class="w15p">'
.
VAL_STR_MESSAGE
.
'</th>'
.
'<th class="w7p">'
.
VAL_STR_TYPE
.
'</th>'
.
'<th class="w5p">'
.
VAL_STR_CURRENT_STATUS
.
'</th>'
.
'<th class="w7p">'
.
VAL_STR_HEADER_BALANCE
.
'</th>'
.
'</tr>'
;
$rowData
=
NO_STRING
;
if
(
$this
->
isLoopData
(
$this
->
rs
)){
foreach
(
$this
->
rs
as
$data
)
{
$total
=
$this
->
getColumnData
(
$data
,
COLUMN_BALANCE
);
$dispTotal
=
$this
->
currency
.
' '
.
$this
->
formatCurrency
(
$total
,
$this
->
currency
);
$deposit
=
NO_STRING
;
$withdraw
=
NO_STRING
;
if
(
$this
->
getColumnData
(
$data
,
COLUMN_DEPOSIT_AMOUNT
)
!=
NO_STRING
)
{
$deposit
=
$this
->
currency
.
DELIMIT_SPACE
.
$this
->
formatCurrency
(
floatval
(
$this
->
getColumnData
(
$data
,
COLUMN_DEPOSIT_AMOUNT
)),
$this
->
currency
);
}
if
(
$this
->
getColumnData
(
$data
,
COLUMN_WITHDRAW_AMOUNT
)
!=
NO_STRING
)
{
$withdraw
=
$this
->
currency
.
DELIMIT_SPACE
.
$this
->
formatCurrency
(
floatval
(
$this
->
getColumnData
(
$data
,
COLUMN_WITHDRAW_AMOUNT
)),
$this
->
currency
);
}
//set user account link
$userAccountLink
=
(
strlen
(
$this
->
getColumnData
(
$data
,
COLUMN_ACCOUNT_NUMBER
)
>
0
))
?
'<a href="account_edit?detail_account='
.
$this
->
getColumnData
(
$data
,
COLUMN_ACCOUNT_NUMBER
)
.
'">'
.
$this
->
getColumnData
(
$data
,
COLUMN_ACCOUNT_NUMBER
)
.
'</a>'
:
''
;
//return message if not empty else method
$message
=
(
$this
->
getColumnData
(
$data
,
COLUMN_MESSAGE
)
!=
NULL
)
?
$this
->
getColumnData
(
$data
,
COLUMN_MESSAGE
)
:
$this
->
getColumnData
(
$data
,
COLUMN_METHOD
);
$transactionOrigin
=
$this
->
getColumnData
(
$data
,
COLUMN_PROCESS_STATUS
);
$this
->
transactionOrigin
(
$data
,
$transactionOrigin
);
$transactionType
=
$this
->
getColumnData
(
$data
,
COLUMN_TRANSACTION_TYPE
);
$transactionStat
=
$this
->
getColumnData
(
$data
,
COLUMN_STATUS
);
$this
->
transactionTypeLabel
(
$data
,
$transactionType
,
$transactionStat
);
$rowData
.=
'<tr>'
.
'<td class="c">'
.
$no
++
.
'</td>'
.
'<td class="c">'
.
$transactionType
.
'</td>'
// . '<td class="c">' . $this -> getColumnData($data, COLUMN_USER_ACCOUNT) . '</td>'
.
'<td class="c">'
.
$userAccountLink
.
'</td>'
.
'<td class="l">'
.
$this
->
getColumnData
(
$data
,
COLUMN_ACCOUNT_NAME
)
.
'</td>'
.
'<td class="r">'
.
$deposit
.
'</td>'
.
'<td class="r">'
.
$withdraw
.
'</td>'
.
'<td class="r">'
.
$this
->
currency
.
DELIMIT_SPACE
.
$this
->
formatCurrency
(
$this
->
getColumnData
(
$data
,
COLUMN_FEE
),
$this
->
currency
)
.
'</td>'
.
'<td>'
.
$this
->
getColumnData
(
$data
,
COLUMN_TRANSACTION_TIME_STRING
)
.
'</td>'
.
'<td>'
.
$this
->
getColumnData
(
$data
,
COLUMN_PROCESS_TIME_STRINTG
)
.
'</td>'
.
'<td class="c">'
.
$this
->
getColumnData
(
$data
,
COLUMN_TRANSACTION_NUMBER
)
.
'</td>'
.
'<td class="l">'
.
$message
.
'</td>'
.
'<td class="c">'
.
$transactionOrigin
.
'</td>'
.
'<td class="c">'
.
$transactionStat
.
'</td>'
.
'<td class="r">'
.
$dispTotal
.
'</td>'
.
'</tr>'
;
}
}
else
{
$rowData
=
'<tr><td colspan="14">'
.
$this
->
getMessage
(
INFO
,
'I_NO_SUCHE_SEARCH_DATA'
,
array
())
.
'</td></tr>'
;
}
echo
'<table class="table col bdr default odd calign w100p fontXS">'
.
$titleData
.
$rowData
.
'</table>'
;
}
public
function
getWhere
()
{
$rtn
=
array
();
$rtn
[]
=
$this
->
detailAccount
;
$rtn
[]
=
$this
->
currency
;
$whereStr
=
NO_STRING
;
// 取引番号
if
(
$this
->
transactionNumber
!=
NO_STRING
)
{
$whereStr
.=
' AND transaction_number = (\')'
.
$this
->
transactionNumber
.
'(\')'
;
}
// メールアドレス
if
(
$this
->
sEmail
!=
NO_STRING
)
{
$whereStr
.=
' AND (withdraw_user.mail LIKE (\')%'
.
$this
->
sEmail
.
'%(\') OR deposit_user.mail LIKE (\')%'
.
$this
->
sEmail
.
'%(\'))'
;
}
// 口座番号
if
(
$this
->
sUserAccount
!=
NO_STRING
)
{
$whereStr
.=
' AND (deposit_account_number = (\')'
.
$this
->
sUserAccount
.
'(\') OR withdraw_account_number = (\')'
.
$this
->
sUserAccount
.
'(\'))'
;
}
// 開始日
if
(
$this
->
from
!=
NO_STRING
)
{
$whereStr
.=
' AND transaction_time >= (\')'
.
$this
->
from
.
'(\')'
;
}
else
{
$whereStr
.=
' AND transaction_time >= (\')'
.
date
(
'Y/m/01'
,
strtotime
(
'-2 month'
))
.
'(\')'
;
}
// 終了日
if
(
$this
->
to
!=
NO_STRING
)
{
$whereStr
.=
' AND transaction_time < DATE_ADD((\')'
.
$this
->
to
.
'(\'), INTERVAL 1 DAY)'
;
}
else
{
$whereStr
.=
' AND transaction_time < DATE_ADD((\')'
.
date
(
'Y/m/d'
)
.
'(\'), INTERVAL 1 DAY)'
;
}
// anton
if
(
$this
->
transactionType
!=
NO_STRING
)
{
switch
(
$this
->
transactionType
){
case
VAL_INT_1
:
$whereStr
.=
' AND transaction_type = (\')1(\')'
;
// 入金
break
;
case
VAL_INT_2
:
$whereStr
.=
' AND (transaction_type IN ((\')9(\'), (\')10(\'), (\')12(\')) OR (transaction_type = (\')2(\') AND type = (\')0(\')))'
;
// 出金
break
;
case
VAL_INT_3
:
$whereStr
.=
' AND transaction_type IN ((\')3(\'), (\')4(\'))'
;
// 通貨両替
break
;
case
VAL_INT_4
:
$whereStr
.=
' AND (transaction_type IN ((\')5(\'), (\')6(\')) OR (transaction_type = (\')2(\') AND type = (\')3(\')))'
;
// 口座振替
break
;
case
VAL_INT_5
:
$whereStr
.=
' AND transaction_type IN ((\')7(\'), (\')8(\'))'
;
// 引き落し
break
;
case
VAL_INT_6
:
$whereStr
.=
' AND (transaction_type = (\')11(\') OR trans.type = (\')1(\'))'
;
// 引き落し
break
;
default
:
break
;
}
}
$rtn
[]
=
$whereStr
;
return
$rtn
;
}
private
function
transactionOrigin
(
$row
,
&
$pStatus
){
// 処理ステータス
if
(
$this
->
getColumnData
(
$row
,
COLUMN_PROCESS_STATUS
)
==
NO_COUNT
)
{
// ユーザ側操作
$pStatus
=
'User'
;
}
else
if
(
$this
->
getColumnData
(
$row
,
COLUMN_PROCESS_STATUS
)
==
VAL_INT_1
)
{
// 管理者側操作
$pStatus
=
'Admin'
;
}
else
if
(
$this
->
getColumnData
(
$row
,
COLUMN_PROCESS_STATUS
)
==
VAL_INT_2
)
{
// API操作
$pStatus
=
'API'
;
}
else
if
(
$this
->
getColumnData
(
$row
,
COLUMN_PROCESS_STATUS
)
==
VAL_INT_3
)
{
// API操作
$pStatus
=
'Batch'
;
}
else
{
$pStatus
=
' '
;
}
}
private
function
transactionTypeLabel
(
$row
,
&
$tType
,
&
$dStatus
){
if
(
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_1
)
{
// 入金
$tType
=
VAL_STR_DEPOSIT
;
$dStatus
=
VAL_STR_STATUS_COMP
;
}
else
if
(
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_2
&&
$this
->
getColumnData
(
$row
,
COLUMN_TYPE
)
==
VAR_WITHDRAW_TYPE_NORMAL
)
{
// 通常出金
$tType
=
VAL_STR_WITHDARAW
.
'('
.
$this
->
dispWithdrawStatusCommon
(
$this
->
getColumnData
(
$row
,
COLUMN_STATUS
))
.
')'
;
$dStatus
=
$this
->
dispWithdrawStatusCommon
(
$this
->
getColumnData
(
$row
,
COLUMN_STATUS
));
}
else
if
(
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_2
&&
$this
->
getColumnData
(
$row
,
COLUMN_TYPE
)
==
VAR_WITHDRAW_TYPE_FEE
)
{
// 手数料出金
$tType
=
VAL_STR_FEE
;
$dStatus
=
VAL_STR_STATUS_COMP
;
}
else
if
(
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_2
&&
$this
->
getColumnData
(
$row
,
COLUMN_TYPE
)
==
VAR_WITHDRAW_TYPE_TRANSFER
)
{
// 口座間送金出金
$tType
=
VAL_STR_TRANSFER_TRASH
;
$dStatus
=
VAL_STR_STATUS_COMP
;
}
else
if
(
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_3
)
{
// 両替入金
$tType
=
VAL_STR_EXCHANGE
;
$dStatus
=
VAL_STR_STATUS_COMP
;
}
else
if
(
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_4
)
{
// 両替出金
$tType
=
VAL_STR_EXCHANGE
;
$dStatus
=
VAL_STR_STATUS_COMP
;
}
else
if
(
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_5
)
{
// 口座振替(出金)
$tType
=
VAL_STR_TRANSFER
;
$dStatus
=
VAL_STR_STATUS_COMP
;
}
else
if
(
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_6
)
{
// 口座振替(出金)
$tType
=
VAL_STR_TRANSFER
;
$dStatus
=
VAL_STR_STATUS_COMP
;
}
else
if
(
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_7
)
{
// 引落(出金)
$tType
=
VAL_STR_REQUEST
;
$dStatus
=
VAL_STR_STATUS_COMP
;
}
else
if
(
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_8
)
{
// 引落(入金)
$tType
=
VAL_STR_REQUEST
;
$dStatus
=
VAL_STR_STATUS_COMP
;
}
else
if
(
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_9
||
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_10
||
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_12
)
{
// 出金(返却系)
$tType
=
VAL_STR_WITHDARAW
.
'('
.
$this
->
dispWithdrawStatusCommon
(
$this
->
getColumnData
(
$row
,
COLUMN_STATUS
))
.
')'
;
$dStatus
=
VAL_STR_STATUS_COMP
;
}
else
if
(
$this
->
getColumnData
(
$row
,
COLUMN_TRANSACTION_TYPE
)
==
VAL_INT_11
)
{
// 出金(返却系)
$tType
=
VAL_STR_FEE
;
$dStatus
=
VAL_STR_STATUS_COMP
;
}
else
{
$tType
=
NO_STRING
;
}
}
/*-------------------------------------------------------------------------
* @function_name: エクスポートデータの作成
* @parameter : なし
* @return : なし
-------------------------------------------------------------------------*/
function
makeExportData
()
{
// 変数宣言部
$data
=
NO_STRING
;
$arr
=
null
;
// まずはタイトル
$data
=
(
$this
->
lang
==
"en"
?
'Transaction Type,Account Number,Account Name,Currency,Deposit Amount,Withdrawal Amount,Fee,Date Requested,Processing Date,Transaction Number,Message,Type,Current Status,Balance'
.
"
\n
"
:
'取引種別, 口座番号, 口座名義, 通貨種別, 入金額, 出金額, 手数料, 申請日, 処理日, 取引番号 , メッセージ, 種別, 状態, 残高'
.
"
\n
"
);
echo
"<pre>"
;
// データの存在確認
if
(
$this
->
isLoopData
(
$this
->
rs
))
{
foreach
(
$this
->
rs
as
$row
)
{
// 配列の初期化
$arr
=
array
();
$transactionOrigin
=
$this
->
getColumnData
(
$row
,
COLUMN_PROCESS_STATUS
);
$this
->
transactionOrigin
(
$data
,
$transactionOrigin
);
$transactionType
=
$this
->
getColumnData
(
$data
,
COLUMN_TRANSACTION_TYPE
);
$transactionStat
=
$this
->
getColumnData
(
$data
,
COLUMN_STATUS
);
$this
->
transactionTypeLabel
(
$row
,
$transactionType
,
$transactionStat
);
// データの設定
$arr
[]
=
$transactionType
;
// (01)Transaction type
$arr
[]
=
$row
[
COLUMN_ACCOUNT_NUMBER
];
// (02)Account number
$arr
[]
=
$row
[
COLUMN_ACCOUNT_NAME
];
// (03)Account holder
$arr
[]
=
$this
->
currency
;
// (04)Currency
$arr
[]
=
$row
[
COLUMN_DEPOSIT_AMOUNT
];
// (05)Payment amount
$arr
[]
=
$row
[
COLUMN_WITHDRAW_AMOUNT
];
// (06)Withdrawal amount
$arr
[]
=
$row
[
COLUMN_FEE
];
// (07)Fee
$arr
[]
=
$row
[
COLUMN_TRANSACTION_TIME_STRING
];
// (08)Application date
$arr
[]
=
$row
[
COLUMN_PROCESS_TIME_STRINTG
];
// (09)Disposal day
$arr
[]
=
$row
[
COLUMN_TRANSACTION_NUMBER
];
// (10)Transition Number
$arr
[]
=
(
$row
[
COLUMN_MESSAGE
]
!=
NULL
)
?
$row
[
COLUMN_MESSAGE
]
:
$row
[
COLUMN_METHOD
];
// (11)message
$arr
[]
=
$transactionOrigin
;
$arr
[]
=
$transactionStat
;
// (12)State
$arr
[]
=
$this
->
formatCurrency
(
$row
[
COLUMN_BALANCE
],
$this
->
currency
);
// (13)Balance
$data
.=
'"'
.
implode
(
'"'
.
DELIMIT_COMMA
.
'"'
,
$arr
)
.
'"'
.
"
\n
"
;
}
}
return
mb_convert_encoding
(
$data
,
"UTF-8"
);
}
public
function
dispPager
()
{
echo
$this
->
getPagerCommon
(
$this
->
getTargetPage
()
,
$this
->
getTotalPageCommon
(
VAR_DEFAULT_PAGE_COUNT
,
$this
->
total
)
,
$this
->
total
,
NO_STRING
,
false
);
}
public
function
setResult
(
$rs
){
$this
->
rs
=
$rs
;
}
public
function
getCurrency
(){
return
$this
->
currency
;
}
public
function
echoDetailAccount
(){
echo
$this
->
detailAccount
;
}
public
function
echoSUserAccount
(){
echo
$this
->
sUserAccount
;
}
public
function
echoSEmail
(){
echo
$this
->
sEmail
;
}
public
function
setCurrencies
(
$currencies
){
$this
->
currencies
=
$currencies
;
}
public
function
setTotal
(
$total
){
$this
->
total
=
$total
;
}
public
function
setStart
(
$start
){
$this
->
start
=
$start
;
}
public
function
echoTransactionNumber
(){
echo
$this
->
transactionNumber
;
}
public
function
echoFrom
()
{
echo
$this
->
from
;
}
public
function
echoTo
()
{
echo
$this
->
to
;
}
public
function
echoCurrencyList
()
{
// 変数宣言部
$lists
=
array
();
if
(
$this
->
isLoopData
(
$this
->
currencies
))
{
foreach
(
$this
->
currencies
as
$row
)
{
$lists
[]
=
array
(
PARAM_DATA_KEY
=>
$this
->
getColumnData
(
$row
,
COLUMN_CURRENCY_NAME
),
PARAM_DATA_VALUE
=>
$this
->
getColumnData
(
$row
,
COLUMN_CURRENCY_NAME
)
);
}
}
echo
$this
->
dispListOption
(
$lists
,
$this
->
currency
);
}
public
function
dispTransactionTypeList
()
{
echo
$this
->
dispListOption
(
$this
->
getTransactionTypeList
(),
$this
->
transactionType
);
}
public
function
dispHTML
()
{
return
array
();
}
}
\ No newline at end of file
system/template/tmp_account_transactions.php
0 → 100644
View file @
05e100ec
<?php
$page_title
=
"ユーザー取引履歴"
;
include_once
(
'template/base_head.php'
);
?>
<!-- サイドバー -->
<aside
id=
"colLeft"
>
<h1><a
href=
"account_list"
><img
src=
"../img/logo.png"
alt=
"iWallet"
></a></h1>
<form
id=
"searchForm"
action=
""
method=
"post"
>
<input
type=
"hidden"
id=
"detail_account"
name=
"detail_account"
value=
"
<?php
$this
->
echoDetailAccount
();
?>
"
>
<div
class=
"aside-heading"
>
<div
class=
"btns"
>
<input
type=
"button"
id=
"btnSearchToday"
value=
"本日"
class=
"btn bg-default px50 hi22"
>
<input
type=
"button"
id=
"btnSearch"
value=
"検索"
class=
"btn bg-default px50 hi22"
>
</div>
</div>
<table
class=
"conditions fontS w100p"
>
<colgroup>
<col
class=
"w50p"
>
<col
class=
"w50p"
>
</colgroup>
<tr>
<th>
取引番号
</th>
<td><input
type=
"text"
id=
"transaction_number"
name=
"transaction_number"
value=
"
<?php
$this
->
echoTransactionNumber
();
?>
"
class=
"w100p"
></td>
</tr>
<tr>
<th>
メールアドレス
</th>
<td><input
type=
"text"
id=
"s_email"
name=
"s_email"
value=
"
<?php
$this
->
echoSEmail
();
?>
"
class=
"w100p"
></td>
</tr>
<tr>
<th>
口座番号
</th>
<td><input
type=
"text"
id=
"s_account"
name=
"s_account"
value=
"
<?php
$this
->
echoSUserAccount
();
?>
"
class=
"w100p"
></td>
</tr>
<tr>
<th>
通貨種別
</th>
<td>
<select
id=
"s_currency"
name=
"s_currency"
class=
"w100p"
>
<?php
$this
->
echoCurrencyList
();
?>
</select>
</td>
</tr>
<tr>
<th>
取引科目
</th>
<td>
<select
name=
"transaction_type"
id=
"transaction_type"
class=
"w100p"
>
<option
value=
""
>
--- All ---
</option>
<?php
$this
->
dispTransactionTypeList
();
?>
</select>
</td>
</tr>
<tr>
<td
colspan=
"2"
>
<span
class=
"th"
>
処理日時指定
</span>
<p>
<input
type=
"text"
id=
"s_from"
name=
"s_from"
value=
"
<?php
$this
->
echoFrom
();
?>
"
class=
"px110"
placeholder=
"日付"
>
-
<input
type=
"text"
id=
"s_to"
name=
"s_to"
value=
"
<?php
$this
->
echoTo
();
?>
"
class=
"px110"
placeholder=
"日付"
>
</p>
</td>
</tr>
</table>
<p
class=
"calign"
>
<input
type=
"button"
id=
"btnExport"
value=
"エクスポート"
class=
"btn bg-grad hi25 px100"
>
<input
type=
"button"
id=
"btnBack"
value=
"戻る"
class=
"btn bg-grad hi25 px100"
>
</p>
<input
type=
"hidden"
value=
""
id=
"s_type"
name=
"type"
/>
</form>
</aside>
<div
id=
"colMain"
>
<div
class=
"mainIn"
>
<?php
include_once
(
'template/base_nav.php'
);
?>
<article>
<div
class=
"article-heading"
>
<h2>
<?php
echo
$page_title
;
?>
「
<?php
$this
->
echoDetailAccount
();
?>
」
</h2>
<?php
$this
->
dispPager
();
?>
</div>
<?php
$this
->
echoList
()
?>
<div
class=
"article-bottom"
>
<?php
$this
->
dispPager
();
?>
</div>
</article>
</div>
</div>
</div>
<?php
include_once
(
'template/base_foot.php'
);
?>
</div>
<script
src=
"../js/account_transactions.js"
></script>
<script
src=
"../js/bootstrap.min.js"
></script>
</body>
</html>
\ No newline at end of file
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