- Added labels for leave request statuses in LeaveRequestStatus enum. - Introduced label methods for PayrollAdjustmentType, PayrollPeriodStatus, PayrollStatus, RawMaterialUnit, and StokOpnameStatus enums. - Implemented formatted attributes for Attendance, CashAccount, CashTransaction, Category, Customer, Cutting, Employee, EmployeeAdvance, Expense, LeaveRequest, Order, OrderItem, Payroll, PayrollAdjustment, PayrollPeriod, Product, ProductPrice, ProductVariant, Purchase, PurchaseItem, RawMaterial, RawMaterialPrice, Restock, RestockItem, StokOpname, StokOpnameItem, Supplier, User, and UserProfile models. - Enhanced phone number formatting for Customer and Supplier models. - Added date formatting for various models to improve readability.
80 lines
2.0 KiB
PHP
80 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Enums\ProductStockQuality;
|
|
use Illuminate\Database\Eloquent\Attributes\Appends;
|
|
use Illuminate\Database\Eloquent\Attributes\Guarded;
|
|
use Illuminate\Database\Eloquent\Attributes\Scope;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
#[Appends(['stock_quality_label', 'formatted_subtotal', 'formatted_unit_price'])]
|
|
#[Guarded(['id'])]
|
|
class OrderItem extends Model
|
|
{
|
|
use HasFactory, SoftDeletes;
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'stock_quality' => ProductStockQuality::class,
|
|
'quantity' => 'integer',
|
|
'unit_price' => 'integer',
|
|
'subtotal' => 'integer',
|
|
];
|
|
}
|
|
|
|
protected function stockQualityLabel(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
get: fn () => $this->stock_quality->label(),
|
|
);
|
|
}
|
|
|
|
protected function formattedSubtotal(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
get: fn () => 'Rp ' . number_format($this->subtotal, 0, ',', '.'),
|
|
);
|
|
}
|
|
|
|
protected function formattedUnitPrice(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
get: fn () => 'Rp ' . number_format($this->unit_price, 0, ',', '.'),
|
|
);
|
|
}
|
|
|
|
#[Scope]
|
|
protected function good(Builder $query): void
|
|
{
|
|
$query->where('stock_quality', ProductStockQuality::GOOD);
|
|
}
|
|
|
|
#[Scope]
|
|
protected function reject(Builder $query): void
|
|
{
|
|
$query->where('stock_quality', ProductStockQuality::REJECT);
|
|
}
|
|
|
|
public function order(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Order::class);
|
|
}
|
|
|
|
public function productVariant(): BelongsTo
|
|
{
|
|
return $this->belongsTo(ProductVariant::class);
|
|
}
|
|
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
}
|