modified FinanceHelper

This commit is contained in:
2018-12-05 14:18:47 -06:00
parent d31475e9b5
commit 2ddaf251ea

View File

@@ -132,7 +132,7 @@ 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['ref_type'] == 'brokers_fee' || $entry['ref_type'] == 'reprocessing_tax' || $entry['ref_type'] == 'acceleration_gate_fee') {
if($entry['ref_type'] == 'brokers_fee' || $entry['ref_type'] == 'reprocessing_tax' || $entry['ref_type'] == 'jumpgate_fee') {
$this->PutWalletJournal($entry, $corpId, $division);
}
}