amount; $invoice->fill($data); $invoice->save(); if(isset($data['client_contacts'])) { foreach($data['client_contacts'] as $contact) { if($contact['send_invoice'] == 1) { $client_contact = ClientContact::find($this->decodePrimaryKey($contact['id'])); $client_contact->send_invoice = true; $client_contact->save(); } } } if(isset($data['invitations'])) { $invitations = collect($data['invitations']); /* Get array of Keyss which have been removed from the invitations array and soft delete each invitation */ collect($invoice->invitations->pluck('key'))->diff($invitations->pluck('key'))->each(function($invitation){ InvoiceInvitation::destroy($invitation); }); foreach($data['invitations'] as $invitation) { $inv = InvoiceInvitation::whereKey($invitation['key'])->first(); if(!$inv) { $invitation['client_contact_id'] = $this->decodePrimaryKey($invitation['client_contact_id']); $new_invitation = InvoiceInvitationFactory::create($invoice->company_id, $invoice->user_id); $new_invitation->fill($invitation); $new_invitation->invoice_id = $invoice->id; $new_invitation->save(); } } } //event(new CreateInvoiceInvitation($invoice)); $invoice = $invoice->calc()->getInvoice(); // $invoice_calc = new InvoiceSum($invoice, $invoice->settings); // $invoice = $invoice_calc->build()->getInvoice(); $invoice->save(); $finished_amount = $invoice->amount; /**/ if($finished_amount != $starting_amount) UpdateCompanyLedgerWithInvoice::dispatchNow($invoice, ($finished_amount - $starting_amount)); $invoice = ApplyInvoiceNumber::dispatchNow($invoice, $invoice->client->getMergedSettings()); return $invoice->fresh(); } /** * Mark the invoice as sent. * * @param \App\Models\Invoice $invoice The invoice * * @return Invoice|\App\Models\Invoice|null Return the invoice object */ public function markSent(Invoice $invoice) : ?Invoice { /* Return immediately if status is not draft */ if($invoice->status_id != Invoice::STATUS_DRAFT) return $invoice; $invoice->status_id = Invoice::STATUS_SENT; $this->markInvitationsSent($invoice); $invoice->save(); /* * Why? because up until this point the invoice was a draft. * When marked as sent it becomes a ledgerable item. * */ $invoice = ApplyInvoiceNumber::dispatchNow($invoice, $invoice->client->getMergedSettings()); UpdateCompanyLedgerWithInvoice::dispatchNow($invoice, $this->balance); return $invoice; } /** * Updates Invites to SENT * * @param \App\Models\Invoice $invoice The invoice */ private function markInvitationsSent(Invoice $invoice) :void { $invoice->invitations->each(function($invitation) { if(!isset($invitation->sent_date)) { $invitation->sent_date = Carbon::now(); $invitation->save(); } }); } }