48 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace koneko\VuexyPos\Models;
 | |
| 
 | |
| use Illuminate\Database\Eloquent\Factories\HasFactory;
 | |
| use Illuminate\Database\Eloquent\Model;
 | |
| use Illuminate\Database\Eloquent\Relations\HasMany;
 | |
| use Illuminate\Database\Eloquent\Relations\BelongsTo;
 | |
| use Koneko\VuexyStoreManager\Models\Currency;
 | |
| 
 | |
| class PriceList extends Model
 | |
| {
 | |
|     use HasFactory;
 | |
| 
 | |
|     protected $table = 'price_lists';
 | |
|     protected $primaryKey = 'id';
 | |
|     public $incrementing = false;
 | |
|     protected $keyType = 'smallint';
 | |
| 
 | |
|     protected $fillable = [
 | |
|         'title',
 | |
|         'type',
 | |
|         'c_currency',
 | |
|         'status',
 | |
|     ];
 | |
| 
 | |
|     protected $casts = [
 | |
|         'type' => 'integer',
 | |
|         'status' => 'boolean',
 | |
|     ];
 | |
| 
 | |
|     /**
 | |
|      * Relación con los precios de productos.
 | |
|      */
 | |
|     public function productPrices(): HasMany
 | |
|     {
 | |
|         return $this->hasMany(ProductPrice::class, 'pricelist_id');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Relación con la moneda de la lista de precios.
 | |
|      */
 | |
|     public function currency(): BelongsTo
 | |
|     {
 | |
|         return $this->belongsTo(Currency::class, 'c_currency', 'c_currency');
 | |
|     }
 | |
| }
 |