83 lines
2.1 KiB
PHP
Executable File
83 lines
2.1 KiB
PHP
Executable File
<?php
|
|
|
|
namespace Webkul\Sales\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
use Webkul\Checkout\Models\CartAddress;
|
|
use Webkul\Core\Models\Address;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Webkul\Sales\Database\Factories\OrderAddressFactory;
|
|
use Webkul\Sales\Contracts\OrderAddress as OrderAddressContract;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
/**
|
|
* Class OrderAddress
|
|
*
|
|
* @package Webkul\Sales\Models
|
|
*
|
|
* @property integer $order_id
|
|
* @property Order $order
|
|
*
|
|
*/
|
|
class OrderAddress extends Address implements OrderAddressContract
|
|
{
|
|
use HasFactory;
|
|
|
|
public const ADDRESS_TYPE_SHIPPING = 'order_shipping';
|
|
|
|
public const ADDRESS_TYPE_BILLING = 'order_billing';
|
|
|
|
/**
|
|
* @var array default values
|
|
*/
|
|
protected $attributes = [
|
|
'address_type' => self::ADDRESS_TYPE_BILLING,
|
|
];
|
|
|
|
/**
|
|
* The "booted" method of the model.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected static function boot(): void
|
|
{
|
|
static::addGlobalScope('address_type', function (Builder $builder) {
|
|
$builder->whereIn('address_type', [
|
|
self::ADDRESS_TYPE_BILLING,
|
|
self::ADDRESS_TYPE_SHIPPING,
|
|
]);
|
|
});
|
|
|
|
static::creating(static function ($address) {
|
|
switch ($address->address_type) {
|
|
case CartAddress::ADDRESS_TYPE_BILLING:
|
|
$address->address_type = self::ADDRESS_TYPE_BILLING;
|
|
break;
|
|
case CartAddress::ADDRESS_TYPE_SHIPPING:
|
|
$address->address_type = self::ADDRESS_TYPE_SHIPPING;
|
|
break;
|
|
}
|
|
});
|
|
|
|
parent::boot();
|
|
}
|
|
|
|
/**
|
|
* Get the order record associated with the address.
|
|
*/
|
|
public function order(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Order::class);
|
|
}
|
|
|
|
/**
|
|
* Create a new factory instance for the model.
|
|
*
|
|
* @return Factory
|
|
*/
|
|
protected static function newFactory(): Factory
|
|
{
|
|
return OrderAddressFactory::new();
|
|
}
|
|
} |