alliance wallet journal

This commit is contained in:
2021-02-15 19:00:38 +09:00
parent bb90a2ccc2
commit d521a0e593

View File

@@ -96,7 +96,7 @@ class FinanceHelper {
//Foreach journal entry, add the journal entry to the table //Foreach journal entry, add the journal entry to the table
foreach($wallet as $entry) { foreach($wallet as $entry) {
/*
//See if we find the entry id in the database already //See if we find the entry id in the database already
$found = AllianceWalletJournal::where([ $found = AllianceWalletJournal::where([
'id' => $entry['id'], 'id' => $entry['id'],
@@ -138,8 +138,8 @@ class FinanceHelper {
} }
} }
*/
/*
AllianceWalletJournal::insertOrIgnore([ AllianceWalletJournal::insertOrIgnore([
'id' => $entry->id, 'id' => $entry->id,
'corporation_id' => $corpId, 'corporation_id' => $corpId,
@@ -155,6 +155,7 @@ class FinanceHelper {
'tax' => $entry->tax, 'tax' => $entry->tax,
'tax_receiver_id' => $entry->tax_receiver_id, 'tax_receiver_id' => $entry->tax_receiver_id,
]); ]);
*/
} }
} else { } else {
/** /**