From 5d38d32b0ebd8b1e0d31aa2ce3f03d906d6f7224 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Thu, 20 Dec 2018 20:59:17 -0600 Subject: [PATCH] testing pagination for wallet journals --- app/Library/FinanceHelper.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Library/FinanceHelper.php b/app/Library/FinanceHelper.php index a70c53f31..965d773d8 100644 --- a/app/Library/FinanceHelper.php +++ b/app/Library/FinanceHelper.php @@ -77,7 +77,7 @@ class FinanceHelper { $entry['ref_type'] == 'reprocessing_tax' || $entry['ref_type'] == 'jumpgate_fee' || $entry['ref_type'] == 'player_donation' || - ($entry['ref_type'] == 'corporation_account_withdrawal' && $entry['second_party_id'] == 99004116)) { + ($entry['ref_type'] == 'corporation_account_withdrawal' && $entry['second_party_id'] == 98287666)) { $this->PutWalletJournal($entry, $corpId, $division); } } @@ -141,7 +141,7 @@ class FinanceHelper { $esiHelper = new Esi; $date = $esiHelper->DecodeDate($journal['date']); - if($journal['ref_type'] == 'player_donation' || ($journal['ref_type'] == 'corporation_account_withdrawal' && $journal['second_party_id'] == 99004116)) { + if($journal['ref_type'] == 'player_donation' || ($journal['ref_type'] == 'corporation_account_withdrawal' && $journal['second_party_id'] == 98287666)) { //if we don't find the journal entry, add the journal entry to the database if(!PlayerDonationJournal::where(['id' => $journal['id']])->exists()) { $entry = new PlayerDonationJournal;