123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- <?php
-
- namespace App\Models\Accounting;
-
- use Akaunting\Money\Money;
- use App\Casts\DocumentMoneyCast;
- use App\Concerns\Blamable;
- use App\Concerns\CompanyOwned;
- use App\Enums\Accounting\AdjustmentCategory;
- use App\Enums\Accounting\AdjustmentType;
- use App\Models\Common\Offering;
- use App\Observers\DocumentLineItemObserver;
- use App\Utilities\Currency\CurrencyAccessor;
- use App\Utilities\RateCalculator;
- use Illuminate\Database\Eloquent\Attributes\ObservedBy;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Eloquent\Relations\BelongsTo;
- use Illuminate\Database\Eloquent\Relations\MorphTo;
- use Illuminate\Database\Eloquent\Relations\MorphToMany;
-
- #[ObservedBy(DocumentLineItemObserver::class)]
- class DocumentLineItem extends Model
- {
- use Blamable;
- use CompanyOwned;
- use HasFactory;
-
- protected $table = 'document_line_items';
-
- protected $fillable = [
- 'company_id',
- 'offering_id',
- 'description',
- 'quantity',
- 'unit_price',
- 'tax_total',
- 'discount_total',
- 'line_number',
- 'created_by',
- 'updated_by',
- ];
-
- protected $casts = [
- 'unit_price' => DocumentMoneyCast::class,
- 'subtotal' => DocumentMoneyCast::class,
- 'tax_total' => DocumentMoneyCast::class,
- 'discount_total' => DocumentMoneyCast::class,
- 'total' => DocumentMoneyCast::class,
- ];
-
- public function documentable(): MorphTo
- {
- return $this->morphTo();
- }
-
- public function offering(): BelongsTo
- {
- return $this->belongsTo(Offering::class);
- }
-
- public function sellableOffering(): BelongsTo
- {
- return $this->offering()->where('sellable', true);
- }
-
- public function purchasableOffering(): BelongsTo
- {
- return $this->offering()->where('purchasable', true);
- }
-
- public function adjustments(): MorphToMany
- {
- return $this->morphToMany(Adjustment::class, 'adjustmentable', 'adjustmentables');
- }
-
- public function salesTaxes(): MorphToMany
- {
- return $this->adjustments()->where('category', AdjustmentCategory::Tax)->where('type', AdjustmentType::Sales);
- }
-
- public function purchaseTaxes(): MorphToMany
- {
- return $this->adjustments()->where('category', AdjustmentCategory::Tax)->where('type', AdjustmentType::Purchase);
- }
-
- public function salesDiscounts(): MorphToMany
- {
- return $this->adjustments()->where('category', AdjustmentCategory::Discount)->where('type', AdjustmentType::Sales);
- }
-
- public function purchaseDiscounts(): MorphToMany
- {
- return $this->adjustments()->where('category', AdjustmentCategory::Discount)->where('type', AdjustmentType::Purchase);
- }
-
- public function taxes(): MorphToMany
- {
- return $this->adjustments()->where('category', AdjustmentCategory::Tax);
- }
-
- public function discounts(): MorphToMany
- {
- return $this->adjustments()->where('category', AdjustmentCategory::Discount);
- }
-
- public function calculateTaxTotal(): Money
- {
- $subtotal = money($this->subtotal, CurrencyAccessor::getDefaultCurrency());
- $defaultCurrency = CurrencyAccessor::getDefaultCurrency();
-
- return $this->taxes->reduce(function (Money $carry, Adjustment $tax) use ($subtotal, $defaultCurrency) {
- if ($tax->computation->isPercentage()) {
- return $carry->add($subtotal->multiply($tax->rate / 100));
- } else {
- return $carry->add(money($tax->rate, $defaultCurrency));
- }
- }, money(0, $defaultCurrency));
- }
-
- public function calculateTaxTotalAmount(): int
- {
- $subtotalInCents = $this->getRawOriginal('subtotal');
-
- return $this->taxes->reduce(function (int $carry, Adjustment $tax) use ($subtotalInCents) {
- if ($tax->computation->isPercentage()) {
- $scaledRate = $tax->getRawOriginal('rate');
-
- return $carry + RateCalculator::calculatePercentage($subtotalInCents, $scaledRate);
- } else {
- return $carry + $tax->getRawOriginal('rate');
- }
- }, 0);
- }
-
- public function calculateDiscountTotal(): Money
- {
- $subtotal = money($this->subtotal, CurrencyAccessor::getDefaultCurrency());
- $defaultCurrency = CurrencyAccessor::getDefaultCurrency();
-
- return $this->discounts->reduce(function (Money $carry, Adjustment $discount) use ($subtotal, $defaultCurrency) {
- if ($discount->computation->isPercentage()) {
- return $carry->add($subtotal->multiply($discount->rate / 100));
- } else {
- return $carry->add(money($discount->rate, $defaultCurrency));
- }
- }, money(0, $defaultCurrency));
- }
-
- public function calculateDiscountTotalAmount(): int
- {
- $subtotalInCents = $this->getRawOriginal('subtotal');
-
- return $this->discounts->reduce(function (int $carry, Adjustment $discount) use ($subtotalInCents) {
- if ($discount->computation->isPercentage()) {
- $scaledRate = $discount->getRawOriginal('rate');
-
- return $carry + RateCalculator::calculatePercentage($subtotalInCents, $scaledRate);
- } else {
- return $carry + $discount->getRawOriginal('rate');
- }
- }, 0);
- }
-
- public function calculateAdjustmentTotal(Adjustment $adjustment): Money
- {
- $subtotal = money($this->subtotal, CurrencyAccessor::getDefaultCurrency());
-
- return $subtotal->multiply($adjustment->rate / 100);
- }
-
- public function calculateAdjustmentTotalAmount(Adjustment $adjustment): int
- {
- $subtotalInCents = $this->getRawOriginal('subtotal');
-
- if ($adjustment->computation->isPercentage()) {
- $scaledRate = $adjustment->getRawOriginal('rate');
-
- return RateCalculator::calculatePercentage($subtotalInCents, $scaledRate);
- } else {
- return $adjustment->getRawOriginal('rate');
- }
- }
- }
|