invoice stuff

This commit is contained in:
2021-03-18 00:15:10 +09:00
parent ec9a2a2ce0
commit c27a9c3f85

View File

@@ -60,11 +60,11 @@ class MiningTaxesInvoices extends Command
$task->SetStartStatus();
//Get the characters for each non-invoiced ledger entry
$charIds = Ledger::distinct('character_id')
$charIds = Ledger::where([
'invoiced' => 'No',
])->distinct('character_id')
->pluck('character_id');
dd($charIds);
if($charIds == null) {
//Set the task status as done and Log the issue
$task->SetStopStatus();