Update ShowServicios.php
This commit is contained in:
@@ -26,6 +26,7 @@ use Illuminate\Support\Facades\Crypt;
|
||||
use Illuminate\Support\Facades\Notification;
|
||||
use Twilio\Rest\Client;
|
||||
use AshAllenDesign\ShortURL\Facades\ShortURL;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
class ShowServicios extends Component
|
||||
{
|
||||
@@ -239,6 +240,9 @@ class ShowServicios extends Component
|
||||
/* ---------------- Btn Comprar ---------------- */
|
||||
public function comprar()
|
||||
{
|
||||
DB::beginTransaction();
|
||||
try {
|
||||
|
||||
$this->validate([
|
||||
'cantidad_tarjetaPlan' => 'required|numeric|min:1',
|
||||
]);
|
||||
@@ -406,7 +410,7 @@ class ShowServicios extends Component
|
||||
$logsGeneral->user_id = Auth::user()->id;
|
||||
$logsGeneral->detalle = 'El usuario ' . Auth::user()->name . ' - ' . Auth::user()->email . ' Tuvo error de "No hay cuentas disponibles" Comprando el servicio ' . $servicioNombre . ' - ' . $cuentasMostar . ' cantidad de ' . $this->cantidad_tarjetaPlan . ' por un valor de $' . $total_valor . ' Se desligaron todas las cuentas.';
|
||||
$logsGeneral->tipo = 'compra_error';
|
||||
$logsGeneral->historial_id= $historial->id;
|
||||
$logsGeneral->historial_id = $historial->id;
|
||||
$logsGeneral->save();
|
||||
$this->alert('warning', 'No hay cuentas disponibles!', [
|
||||
'position' => 'top'
|
||||
@@ -427,7 +431,7 @@ class ShowServicios extends Component
|
||||
$logsGeneral = new Log_general();
|
||||
$logsGeneral->user_id = Auth::user()->id;
|
||||
$logsGeneral->detalle = 'El usuario ' . Auth::user()->name . ' - ' . Auth::user()->email . ' ha comprado el servicio ' . $servicioNombre . ' - ' . $cuentasMostar . ' cantidad de ' . $this->cantidad_tarjetaPlan . ' por un valor de $' . $total_valor . ', Saldo anterior: $' . $saldo_anterior . ', Nuevo saldo disponible: $' . $nuevo_saldo;
|
||||
$logsGeneral->historial_id= $historial->id;
|
||||
$logsGeneral->historial_id = $historial->id;
|
||||
$logsGeneral->tipo = 'compra';
|
||||
$logsGeneral->save();
|
||||
|
||||
@@ -440,7 +444,7 @@ class ShowServicios extends Component
|
||||
$logsGeneral->user_id = Auth::user()->id;
|
||||
$logsGeneral->detalle = 'El usuario ' . Auth::user()->name . ' - ' . Auth::user()->email . ' Tuvo un error con el cobro del servicio ' . $servicioNombre . ' - ' . $cuentasMostar . ' cantidad de ' . $this->cantidad_tarjetaPlan . ' por un valor de $' . $total_valor;
|
||||
$logsGeneral->tipo = 'compra_error';
|
||||
$logsGeneral->historial_id= $historial->id;
|
||||
$logsGeneral->historial_id = $historial->id;
|
||||
$logsGeneral->save();
|
||||
$eliminar = Historial_cuenta::where('historial_id', $historial->id)->delete();
|
||||
$this->alert('warning', 'Error en el cobro, comuniquese con soporte!', [
|
||||
@@ -455,16 +459,25 @@ class ShowServicios extends Component
|
||||
$logsGeneral->user_id = Auth::user()->id;
|
||||
$logsGeneral->detalle = 'El usuario ' . Auth::user()->name . ' - ' . Auth::user()->email . ' Tuvo error de "No hay cuentas disponibles" Comprando el servicio ' . $servicioNombre . ' - ' . $cuentasMostar . ' cantidad de ' . $this->cantidad_tarjetaPlan . ' por un valor de $' . $total_valor . ' No se desconto el saldo, ni se asignaron cuentas.';
|
||||
$logsGeneral->tipo = 'compra_error';
|
||||
$logsGeneral->historial_id= $historial->id;
|
||||
$logsGeneral->historial_id = $historial->id;
|
||||
$logsGeneral->save();
|
||||
$this->alert('warning', 'No hay cuentas disponibles!', [
|
||||
'position' => 'top'
|
||||
]);
|
||||
}
|
||||
|
||||
DB::commit();
|
||||
|
||||
$this->tarjetaPlan = false;
|
||||
$this->cantidad_tarjetaPlan = 1;
|
||||
} catch (Exception $e) {
|
||||
|
||||
DB::rollBack();
|
||||
$this->alert('error', 'Error al comprar: ' . $e->getMessage(), [
|
||||
'position' => 'top'
|
||||
]);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public function credenciales($historial)
|
||||
|
||||
Reference in New Issue
Block a user