- Sistema de propiedades: tabla, modelo, CRUD API para que el cliente guarde direcciones nombradas - Postulacion renovada: cliente elige propiedad sin precio ni fecha, sube fotos a GCS/S3 - Proveedores ofertan date_1, date_2 y amount al postularse via pivot; sort por fecha/monto/membresia - Contratacion: selected_date recibe date_1 o date_2, amount desde pivot (depreca minimun_fee) - Cancelacion/repostulacion: archive con status=perdido, related_postulation_id para vincular - Chat en contratos activos: tabla contract_comments, controller, rutas web+API, vista panel, notificaciones bilingues - PaymentIntent calcula amount desde pivot en vez de recibirlo del front - getpendingcontracts: sin filtro de tiempo, filtra por status=active, agrega time_created - Expiracion de postulaciones reducida a 1000 min Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
89 lines
1.9 KiB
PHP
Executable File
89 lines
1.9 KiB
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Models\User;
|
|
use App\Models\iChambaParameter;
|
|
use App\Models\Banks;
|
|
use App\Models\Categories;
|
|
use App\Models\Postulations;
|
|
use App\Models\FinishedContracts;
|
|
use App\Models\CurrentContracts;
|
|
use App\Models\Payments;
|
|
use App\Models\Technician;
|
|
use TarfinLabs\LaravelSpatial\Casts\LocationCast;
|
|
use TarfinLabs\LaravelSpatial\Traits\HasSpatial;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Suppliers extends Model
|
|
{
|
|
use HasSpatial;
|
|
|
|
protected $fillable = [
|
|
'company_name',
|
|
'membership',
|
|
'cover_photo',
|
|
'tags',
|
|
'RFC',
|
|
'CURP',
|
|
'clabe',
|
|
'bank_id',
|
|
'IVA_id',
|
|
'ISR_id',
|
|
'finished_jobs',
|
|
'total_score',
|
|
'address',
|
|
];
|
|
|
|
protected $casts = [
|
|
'location' => LocationCast::class
|
|
];
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function banks()
|
|
{
|
|
return $this->belongsTo('App\Models\Banks', 'bank_id');
|
|
}
|
|
|
|
public function categories()
|
|
{
|
|
return $this->belongsToMany(Categories::class);
|
|
}
|
|
|
|
public function postulations()
|
|
{
|
|
return $this->belongsToMany(Postulations::class, 'postulations_suppliers', 'suppliers_id', 'postulations_id')
|
|
->withPivot('date_1', 'date_2', 'amount')
|
|
->withTimestamps();
|
|
}
|
|
|
|
public function payments()
|
|
{
|
|
return $this->hasMany(Payments::class);
|
|
}
|
|
|
|
public function currentcontracts()
|
|
{
|
|
return $this->hasMany(CurrentContracts::class);
|
|
}
|
|
|
|
public function finishedcontracts()
|
|
{
|
|
return $this->hasMany(FinishedContracts::class);
|
|
}
|
|
|
|
public function technicians()
|
|
{
|
|
return $this->hasMany(Technician::class, 'supplier_id');
|
|
}
|
|
|
|
public function ichambaparameters()
|
|
{
|
|
return $this->belongsTo(iChambaParameter::class);
|
|
}
|
|
}
|