payment = $payment; $this->activity_repository = new ActivityRepository(); } public function run() { if($this->payment->is_deleted) return $this->payment; return $this->setStatus(Payment::STATUS_CANCELLED) //sets status of payment ->updateCreditables() //return the credits first ->adjustInvoices() ->updateClient() ->deletePaymentables() ->cleanupPayment() ->save(); } //reverse paymentables->invoices //reverse paymentables->credits //set refunded to amount //set applied amount to 0 private function cleanupPayment() { $this->payment->is_deleted = true; // $entity->save(); $this->payment->delete(); return $this; } private function deletePaymentables() { $this->payment->paymentables()->update(['deleted_at' => now()]); return $this; } private function updateClient() { $this->payment->client->service()->updatePaidToDate(-1 * $this->payment->amount)->save(); return $this; } private function adjustInvoices() { if ($this->payment->invoices()->exists()) { $this->payment->invoices()->each(function ($paymentable_invoice) { $paymentable_invoice->service()->updateBalance($paymentable_invoice->pivot->amount)->save(); $paymentable_invoice->ledger()->updateInvoiceBalance($paymentable_invoice->pivot->amount)->save(); $paymentable_invoice->client->service()->updateBalance($paymentable_invoice->pivot->amount)->save(); if ($paymentable_invoice->balance == $paymentable_invoice->amount) { $paymentable_invoice->service()->setStatus(Invoice::STATUS_SENT)->save(); } else { $paymentable_invoice->service()->setStatus(Invoice::STATUS_PARTIAL)->save(); } //fire event for this credit // }); } return $this; } private function updateCreditables() { if ($this->payment->credits()->exists()) { $this->payment->credits()->each(function ($paymentable_credit) { $paymentable_credit->balance += $paymentable_credit->pivot->amount; $paymentable_credit->setStatus(Credit::STATUS_SENT); //fire event for this credit // }); } return $this; } private function setStatus($status) { $this->payment->status_id = Payment::STATUS_CANCELLED; return $this; } /** * Saves the payment. * * @return Payment $payment */ private function save() { $this->payment->save(); return $this->payment; } }