This commit is contained in:
lizandrogd
2023-10-09 11:15:08 -05:00
parent c262916aae
commit 83b7bfe16b
2 changed files with 8 additions and 0 deletions
+4
View File
@@ -67,6 +67,7 @@ class ShowServicios extends Component
public $verServ;
public $fecha_final_1;
public $fecha_final_2;
public $utilidad;
use LivewireAlert;
protected $rules = [
@@ -168,6 +169,7 @@ class ShowServicios extends Component
->first();
$this->valor_tarjetaPlan = ($usuario_tarifa) ? $usuario_tarifa->precio : $this->tarifas->valor;
$this->utilidad = ($usuario_tarifa) ? $usuario_tarifa->utilidad : $this->tarifas->utilidad;
$this->colorFondo_tarjetaPlan = $this->servicio_t->color_fondo;
$this->fechaFinal = $this->fechaActual->addDay($this->tarifas->dias);
@@ -231,6 +233,7 @@ class ShowServicios extends Component
$cantidad_solicitada = (int) $this->cantidad_tarjetaPlan * (int) $this->pantallas_tarjetaPlan;
$total_valor = (int) $this->valor_tarjetaPlan * (int) $this->cantidad_tarjetaPlan;
$utilidad_total = (int) $this->utilidad * (int) $this->cantidad_tarjetaPlan;
$usuario_existe = User::firstWhere('email', $this->email_tarjetaPlan)->id ?? null;
$usuario_id = $usuario_existe;
@@ -258,6 +261,7 @@ class ShowServicios extends Component
$historial->cliente_id = $usuario_id;
$historial->cantidad = $this->cantidad_tarjetaPlan;
$historial->nombre_cliente = $this->nombre_tarjetaPlan;
$historial->utilidad = $utilidad_total;
$historial->save();