59 lines
1.3 KiB
PHP
59 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Modules\Purchase\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class Purchase extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $guarded = [];
|
|
|
|
public function purchaseDetails() {
|
|
return $this->hasMany(PurchaseDetail::class, 'purchase_id', 'id');
|
|
}
|
|
|
|
public function purchasePayments() {
|
|
return $this->hasMany(PurchasePayment::class, 'purchase_id', 'id');
|
|
}
|
|
|
|
public static function boot() {
|
|
parent::boot();
|
|
|
|
static::creating(function ($model) {
|
|
$number = Purchase::max('id') + 1;
|
|
$model->reference = make_reference_id('PR', $number);
|
|
});
|
|
}
|
|
|
|
public function scopeCompleted($query) {
|
|
return $query->where('status', 'Completed');
|
|
}
|
|
|
|
public function getShippingAmountAttribute($value) {
|
|
return $value / 100;
|
|
}
|
|
|
|
public function getPaidAmountAttribute($value) {
|
|
return $value / 100;
|
|
}
|
|
|
|
public function getTotalAmountAttribute($value) {
|
|
return $value / 100;
|
|
}
|
|
|
|
public function getDueAmountAttribute($value) {
|
|
return $value / 100;
|
|
}
|
|
|
|
public function getTaxAmountAttribute($value) {
|
|
return $value / 100;
|
|
}
|
|
|
|
public function getDiscountAmountAttribute($value) {
|
|
return $value / 100;
|
|
}
|
|
}
|