123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- <?php
-
- namespace Database\Factories\Accounting;
-
- 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\Utilities\Currency\CurrencyConverter;
- use Illuminate\Database\Eloquent\Factories\Factory;
- use Illuminate\Support\Carbon;
-
- /**
- * @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('-1 year');
-
- return [
- 'company_id' => 1,
- 'client_id' => Client::inRandomOrder()->value('id'),
- 'header' => 'Invoice',
- 'subheader' => 'Invoice',
- 'invoice_number' => $this->faker->unique()->numerify('INV-#####'),
- 'order_number' => $this->faker->unique()->numerify('ORD-#####'),
- 'date' => $invoiceDate,
- 'due_date' => Carbon::parse($invoiceDate)->addDays($this->faker->numberBetween(14, 60)),
- 'status' => InvoiceStatus::Draft,
- '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) {
- DocumentLineItem::factory()
- ->count($count)
- ->forInvoice($invoice)
- ->create();
-
- $this->recalculateTotals($invoice);
- });
- }
-
- public function approved(): static
- {
- return $this->afterCreating(function (Invoice $invoice) {
- $this->ensureLineItems($invoice);
-
- if (! $invoice->canBeApproved()) {
- return;
- }
-
- $approvedAt = Carbon::parse($invoice->date)
- ->addHours($this->faker->numberBetween(1, 24));
-
- $invoice->approveDraft($approvedAt);
- });
- }
-
- public function sent(): static
- {
- return $this->afterCreating(function (Invoice $invoice) {
- $this->ensureApproved($invoice);
-
- $sentAt = Carbon::parse($invoice->approved_at)
- ->addHours($this->faker->numberBetween(1, 24));
-
- $invoice->markAsSent($sentAt);
- });
- }
-
- public function partial(int $maxPayments = 4): static
- {
- return $this->afterCreating(function (Invoice $invoice) use ($maxPayments) {
- $this->ensureSent($invoice);
-
- $this->withPayments(max: $maxPayments, invoiceStatus: InvoiceStatus::Partial)
- ->callAfterCreating(collect([$invoice]));
- });
- }
-
- public function paid(int $maxPayments = 4): static
- {
- return $this->afterCreating(function (Invoice $invoice) use ($maxPayments) {
- $this->ensureSent($invoice);
-
- $this->withPayments(max: $maxPayments)
- ->callAfterCreating(collect([$invoice]));
- });
- }
-
- public function overpaid(int $maxPayments = 4): static
- {
- return $this->afterCreating(function (Invoice $invoice) use ($maxPayments) {
- $this->ensureSent($invoice);
-
- $this->withPayments(max: $maxPayments, invoiceStatus: InvoiceStatus::Overpaid)
- ->callAfterCreating(collect([$invoice]));
- });
- }
-
- public function overdue(): static
- {
- return $this
- ->state([
- 'due_date' => now()->subDays($this->faker->numberBetween(1, 30)),
- ])
- ->afterCreating(function (Invoice $invoice) {
- $this->ensureApproved($invoice);
- });
- }
-
- public function withPayments(?int $min = null, ?int $max = null, InvoiceStatus $invoiceStatus = InvoiceStatus::Paid): static
- {
- $min ??= 1;
-
- return $this->afterCreating(function (Invoice $invoice) use ($invoiceStatus, $max, $min) {
- $this->ensureSent($invoice);
-
- $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 = $max && $min ? $this->faker->numberBetween($min, $max) : $min;
- $paymentAmount = (int) floor($totalAmountDue / $paymentCount);
- $remainingAmount = $totalAmountDue;
-
- $paymentDate = Carbon::parse($invoice->approved_at);
- $paymentDates = [];
-
- for ($i = 0; $i < $paymentCount; $i++) {
- $amount = $i === $paymentCount - 1 ? $remainingAmount : $paymentAmount;
-
- if ($amount <= 0) {
- break;
- }
-
- $postedAt = $paymentDate->copy()->addDays($this->faker->numberBetween(1, 30));
- $paymentDates[] = $postedAt;
-
- $data = [
- 'posted_at' => $postedAt,
- 'amount' => CurrencyConverter::convertCentsToFormatSimple($amount, $invoice->currency_code),
- 'payment_method' => $this->faker->randomElement(PaymentMethod::class),
- 'bank_account_id' => BankAccount::inRandomOrder()->value('id'),
- 'notes' => $this->faker->sentence,
- ];
-
- $invoice->recordPayment($data);
- $remainingAmount -= $amount;
- }
-
- if ($invoiceStatus !== InvoiceStatus::Paid) {
- return;
- }
-
- $latestPaymentDate = max($paymentDates);
- $invoice->updateQuietly([
- 'status' => $invoiceStatus,
- 'paid_at' => $latestPaymentDate,
- ]);
- });
- }
-
- public function configure(): static
- {
- return $this->afterCreating(function (Invoice $invoice) {
- $this->ensureLineItems($invoice);
-
- $paddedId = str_pad((string) $invoice->id, 5, '0', STR_PAD_LEFT);
-
- $invoice->updateQuietly([
- 'invoice_number' => "INV-{$paddedId}",
- 'order_number' => "ORD-{$paddedId}",
- ]);
-
- if ($invoice->wasApproved() && $invoice->is_currently_overdue) {
- $invoice->updateQuietly([
- 'status' => InvoiceStatus::Overdue,
- ]);
- }
- });
- }
-
- protected function ensureLineItems(Invoice $invoice): void
- {
- if (! $invoice->hasLineItems()) {
- $this->withLineItems()->callAfterCreating(collect([$invoice]));
- }
- }
-
- protected function ensureApproved(Invoice $invoice): void
- {
- if (! $invoice->wasApproved()) {
- $this->approved()->callAfterCreating(collect([$invoice]));
- }
- }
-
- protected function ensureSent(Invoice $invoice): void
- {
- if (! $invoice->hasBeenSent()) {
- $this->sent()->callAfterCreating(collect([$invoice]));
- }
- }
-
- protected function recalculateTotals(Invoice $invoice): void
- {
- $invoice->refresh();
-
- if (! $invoice->hasLineItems()) {
- return;
- }
-
- $subtotal = $invoice->lineItems()->sum('subtotal') / 100;
- $taxTotal = $invoice->lineItems()->sum('tax_total') / 100;
- $discountTotal = $invoice->lineItems()->sum('discount_total') / 100;
- $grandTotal = $subtotal + $taxTotal - $discountTotal;
-
- $invoice->update([
- 'subtotal' => $subtotal,
- 'tax_total' => $taxTotal,
- 'discount_total' => $discountTotal,
- 'total' => $grandTotal,
- ]);
- }
- }
|