sov bills journal

This commit is contained in:
2020-04-04 03:11:17 -05:00
parent dbf5115c0c
commit f2b11b038e

View File

@@ -104,7 +104,6 @@ class FinanceHelper {
//For each journal entry, attempt to store it in the database.
//The PutWalletJournal function checks to see if it's already in the database.
foreach($wallet as $entry) {
if($entry['amount'] != 0) {
if($entry['ref_type'] == 'brokers_fee') {
$market->InsertMarketTax($entry, $corpId, $division);
} else if($entry['ref_type'] == 'reprocessing_tax') {
@@ -122,7 +121,6 @@ class FinanceHelper {
$sovBillHelper->InsertSovBillExpense($entry, $corpId, $division);
}
}
}
//Increment the current page we are on.
$currentPage++;