123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- <?php
-
- namespace Database\Factories\Accounting;
-
- use App\Enums\Accounting\AdjustmentComputation;
- use App\Enums\Accounting\DocumentDiscountMethod;
- use App\Enums\Accounting\InvoiceStatus;
- use App\Enums\Accounting\PaymentMethod;
- use App\Models\Accounting\DocumentLineItem;
- use App\Models\Accounting\Invoice;
- use App\Models\Banking\BankAccount;
- use App\Models\Common\Client;
- use App\Models\Company;
- use App\Models\Setting\DocumentDefault;
- use App\Utilities\RateCalculator;
- use Illuminate\Database\Eloquent\Factories\Factory;
- use Illuminate\Support\Carbon;
- use Random\RandomException;
-
- /**
- * @extends Factory<Invoice>
- */
- class InvoiceFactory extends Factory
- {
- /**
- * The name of the factory's corresponding model.
- */
- protected $model = Invoice::class;
-
- /**
- * Define the model's default state.
- *
- * @return array<string, mixed>
- */
- public function definition(): array
- {
- $invoiceDate = $this->faker->dateTimeBetween('-2 months', '-1 day');
-
- return [
- 'company_id' => 1,
- 'client_id' => function (array $attributes) {
- return Client::where('company_id', $attributes['company_id'])->inRandomOrder()->value('id')
- ?? Client::factory()->state([
- 'company_id' => $attributes['company_id'],
- ]);
- },
- 'header' => 'Invoice',
- 'subheader' => 'Invoice',
- 'invoice_number' => $this->faker->unique()->numerify('INV-####'),
- 'order_number' => $this->faker->unique()->numerify('ORD-####'),
- 'date' => $invoiceDate,
- 'due_date' => $this->faker->dateTimeInInterval($invoiceDate, '+3 months'),
- 'status' => InvoiceStatus::Draft,
- 'discount_method' => $this->faker->randomElement(DocumentDiscountMethod::class),
- 'discount_computation' => AdjustmentComputation::Percentage,
- 'discount_rate' => function (array $attributes) {
- $discountMethod = DocumentDiscountMethod::parse($attributes['discount_method']);
-
- if ($discountMethod?->isPerDocument()) {
- return $this->faker->numberBetween(50000, 200000); // 5% - 20%
- }
-
- return 0;
- },
- 'currency_code' => function (array $attributes) {
- $client = Client::find($attributes['client_id']);
-
- return $client->currency_code ??
- Company::find($attributes['company_id'])->default->currency_code ??
- 'USD';
- },
- 'terms' => $this->faker->sentence,
- 'footer' => $this->faker->sentence,
- 'created_by' => 1,
- 'updated_by' => 1,
- ];
- }
-
- public function withLineItems(int $count = 3): static
- {
- return $this->afterCreating(function (Invoice $invoice) use ($count) {
- $invoice->lineItems()->delete();
-
- DocumentLineItem::factory()
- ->count($count)
- ->forInvoice($invoice)
- ->create();
-
- $this->recalculateTotals($invoice);
- });
- }
-
- public function approved(): static
- {
- return $this->afterCreating(function (Invoice $invoice) {
- $this->performApproval($invoice);
- });
- }
-
- public function sent(): static
- {
- return $this->afterCreating(function (Invoice $invoice) {
- $this->performSent($invoice);
- });
- }
-
- public function partial(int $maxPayments = 4): static
- {
- return $this->afterCreating(function (Invoice $invoice) use ($maxPayments) {
- $this->performSent($invoice);
- $this->performPayments($invoice, $maxPayments, InvoiceStatus::Partial);
- });
- }
-
- public function paid(int $maxPayments = 4): static
- {
- return $this->afterCreating(function (Invoice $invoice) use ($maxPayments) {
- $this->performSent($invoice);
- $this->performPayments($invoice, $maxPayments, InvoiceStatus::Paid);
- });
- }
-
- public function overpaid(int $maxPayments = 4): static
- {
- return $this->afterCreating(function (Invoice $invoice) use ($maxPayments) {
- $this->performSent($invoice);
- $this->performPayments($invoice, $maxPayments, InvoiceStatus::Overpaid);
- });
- }
-
- public function overdue(): static
- {
- return $this
- ->state([
- 'due_date' => now()->subDays($this->faker->numberBetween(1, 30)),
- ])
- ->afterCreating(function (Invoice $invoice) {
- $this->performApproval($invoice);
- });
- }
-
- protected function performApproval(Invoice $invoice): void
- {
- if (! $invoice->canBeApproved()) {
- throw new \InvalidArgumentException('Invoice cannot be approved. Current status: ' . $invoice->status->value);
- }
-
- $approvedAt = Carbon::parse($invoice->date)
- ->addHours($this->faker->numberBetween(1, 24));
-
- if ($approvedAt->isAfter(now())) {
- $approvedAt = Carbon::parse($this->faker->dateTimeBetween($invoice->date, now()));
- }
-
- $invoice->approveDraft($approvedAt);
- }
-
- protected function performSent(Invoice $invoice): void
- {
- if (! $invoice->wasApproved()) {
- $this->performApproval($invoice);
- }
-
- $sentAt = Carbon::parse($invoice->approved_at)
- ->addHours($this->faker->numberBetween(1, 24));
-
- if ($sentAt->isAfter(now())) {
- $sentAt = Carbon::parse($this->faker->dateTimeBetween($invoice->approved_at, now()));
- }
-
- $invoice->markAsSent($sentAt);
- }
-
- /**
- * @throws RandomException
- */
- protected function performPayments(Invoice $invoice, int $maxPayments, InvoiceStatus $invoiceStatus): void
- {
- $invoice->refresh();
-
- $amountDue = $invoice->getRawOriginal('amount_due');
-
- $totalAmountDue = match ($invoiceStatus) {
- InvoiceStatus::Overpaid => $amountDue + random_int(1000, 10000),
- InvoiceStatus::Partial => (int) floor($amountDue * 0.5),
- default => $amountDue,
- };
-
- if ($totalAmountDue <= 0 || empty($totalAmountDue)) {
- return;
- }
-
- $paymentCount = $this->faker->numberBetween(1, $maxPayments);
- $paymentAmount = (int) floor($totalAmountDue / $paymentCount);
- $remainingAmount = $totalAmountDue;
-
- $initialPaymentDate = Carbon::parse($invoice->approved_at);
- $maxPaymentDate = now();
-
- $paymentDates = [];
-
- for ($i = 0; $i < $paymentCount; $i++) {
- $amount = $i === $paymentCount - 1 ? $remainingAmount : $paymentAmount;
-
- if ($amount <= 0) {
- break;
- }
-
- if ($i === 0) {
- $postedAt = $initialPaymentDate->copy()->addDays($this->faker->numberBetween(1, 15));
- } else {
- $postedAt = $paymentDates[$i - 1]->copy()->addDays($this->faker->numberBetween(1, 10));
- }
-
- if ($postedAt->isAfter($maxPaymentDate)) {
- $postedAt = Carbon::parse($this->faker->dateTimeBetween($initialPaymentDate, $maxPaymentDate));
- }
-
- $paymentDates[] = $postedAt;
-
- $data = [
- 'posted_at' => $postedAt,
- 'amount' => $amount,
- 'payment_method' => $this->faker->randomElement(PaymentMethod::class),
- 'bank_account_id' => BankAccount::where('company_id', $invoice->company_id)->inRandomOrder()->value('id'),
- 'notes' => $this->faker->sentence,
- ];
-
- $invoice->recordPayment($data);
- $remainingAmount -= $amount;
- }
-
- if ($invoiceStatus === InvoiceStatus::Paid && ! empty($paymentDates)) {
- $latestPaymentDate = max($paymentDates);
- $invoice->updateQuietly([
- 'status' => $invoiceStatus,
- 'paid_at' => $latestPaymentDate,
- ]);
- }
- }
-
- public function configure(): static
- {
- return $this->afterCreating(function (Invoice $invoice) {
- DocumentLineItem::factory()
- ->count(3)
- ->forInvoice($invoice)
- ->create();
-
- $this->recalculateTotals($invoice);
-
- $number = DocumentDefault::getBaseNumber() + $invoice->id;
-
- $invoice->updateQuietly([
- 'invoice_number' => "INV-{$number}",
- 'order_number' => "ORD-{$number}",
- ]);
-
- if ($invoice->wasApproved() && $invoice->shouldBeOverdue()) {
- $invoice->updateQuietly([
- 'status' => InvoiceStatus::Overdue,
- ]);
- }
- });
- }
-
- protected function recalculateTotals(Invoice $invoice): void
- {
- $invoice->refresh();
-
- if (! $invoice->hasLineItems()) {
- return;
- }
-
- $subtotalCents = $invoice->lineItems()->sum('subtotal');
- $taxTotalCents = $invoice->lineItems()->sum('tax_total');
-
- $discountTotalCents = 0;
-
- if ($invoice->discount_method?->isPerLineItem()) {
- $discountTotalCents = $invoice->lineItems()->sum('discount_total');
- } elseif ($invoice->discount_method?->isPerDocument() && $invoice->discount_rate) {
- if ($invoice->discount_computation?->isPercentage()) {
- $scaledRate = RateCalculator::parseLocalizedRate($invoice->discount_rate);
- $discountTotalCents = RateCalculator::calculatePercentage($subtotalCents, $scaledRate);
- } else {
- $discountTotalCents = $invoice->getRawOriginal('discount_rate');
- }
- }
-
- $grandTotalCents = $subtotalCents + $taxTotalCents - $discountTotalCents;
-
- $invoice->update([
- 'subtotal' => $subtotalCents,
- 'tax_total' => $taxTotalCents,
- 'discount_total' => $discountTotalCents,
- 'total' => $grandTotalCents,
- ]);
- }
- }
|