Commit fb18722e authored by Antonio.Suerte's avatar Antonio.Suerte

Transfer Total Calculation Update

parent 1278e52c
...@@ -589,23 +589,19 @@ class TransferModelClass extends ModelClassEx { ...@@ -589,23 +589,19 @@ class TransferModelClass extends ModelClassEx {
// 変数宣言部 // 変数宣言部
$rtn = NO_STRING; $rtn = NO_STRING;
$lists = array();
$counter = NO_STRING;
$data = NO_STRING;
$cName = NO_STRING; $cName = NO_STRING;
$amount = NO_STRING;
// データを入れ替える // データを入れ替える
if($this -> isLoopData($this -> fromTotal)) { if($this -> isLoopData($this -> fromToTotal)) {
foreach($this -> fromTotal as $row) { foreach($this -> fromToTotal as $row) {
$listsFrom[$this -> getColumnData($row, COLUMN_CURRENCY)] = $row; $listsFrom[$this -> getColumnData($row, COLUMN_CURRENCY)] = $row;
} }
} }
if($this -> isLoopData($this -> toTotal)) { if($this -> isLoopData($this -> fromToTotal)) {
foreach($this -> toTotal as $row) { foreach($this -> fromToTotal as $row) {
$listsTo[$this -> getColumnData($row, COLUMN_CURRENCY)] = $row; $listsTo[$this -> getColumnData($row, COLUMN_CURRENCY)] = $row;
} }
} }
foreach($this -> currencies as $row) { foreach($this -> currencies as $row) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment