From 8005a1b7c7fa9037ceeff6a43bec809682631ab4 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sun, 3 Oct 2021 21:34:47 +1100 Subject: [PATCH] Count auto bill items --- .../Controllers/ClientPortal/NinjaPlanController.php | 3 --- app/Jobs/Cron/AutoBillCron.php | 10 ++++++++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/app/Http/Controllers/ClientPortal/NinjaPlanController.php b/app/Http/Controllers/ClientPortal/NinjaPlanController.php index 8080145d7504..539c03572838 100644 --- a/app/Http/Controllers/ClientPortal/NinjaPlanController.php +++ b/app/Http/Controllers/ClientPortal/NinjaPlanController.php @@ -40,9 +40,6 @@ class NinjaPlanController extends Controller $account = $company->account; - nlog("Ninja Plan Controller Company key found {$company->company_key}"); - - if (MultiDB::findAndSetDbByContactKey($contact_key) && $client_contact = ClientContact::where('contact_key', $contact_key)->first()) { diff --git a/app/Jobs/Cron/AutoBillCron.php b/app/Jobs/Cron/AutoBillCron.php index b84203681fa3..72b4de90b804 100644 --- a/app/Jobs/Cron/AutoBillCron.php +++ b/app/Jobs/Cron/AutoBillCron.php @@ -75,8 +75,11 @@ class AutoBillCron nlog($auto_bill_invoices->count(). " full invoices to auto bill"); - $auto_bill_invoices->cursor()->each(function ($invoice){ + $x = 1; + $auto_bill_invoices->cursor()->each(function ($invoice) use($x){ + nlog("partial auto bill counter {$x}"); $this->runAutoBiller($invoice, false); + $x++; }); @@ -114,8 +117,11 @@ class AutoBillCron nlog($auto_bill_invoices->count(). " full invoices to auto bill db = {$db}"); - $auto_bill_invoices->cursor()->each(function ($invoice) use($db){ + $x = 1; + $auto_bill_invoices->cursor()->each(function ($invoice) use($db, $x){ + nlog("auto bill counter {$x}"); $this->runAutoBiller($invoice, $db); + $x++; }); }