Proveedores alta, baja, modif y armar pedido
This commit is contained in:
@@ -0,0 +1,101 @@
|
|||||||
|
<?php
|
||||||
|
namespace App\Http\Controllers;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use App\Models\Supplier;
|
||||||
|
class SupplierController extends Controller
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* grilla de proveedores con buscador
|
||||||
|
*/
|
||||||
|
public function index(Request $request)
|
||||||
|
{
|
||||||
|
$query = $request->input('search');
|
||||||
|
|
||||||
|
$suppliers = Supplier::query()
|
||||||
|
->when($query, function ($q) use ($query) {
|
||||||
|
return $q->where('name', 'like', "%{$query}%");
|
||||||
|
})
|
||||||
|
->orderBy('name', 'asc')
|
||||||
|
->paginate(10)
|
||||||
|
->withQueryString();
|
||||||
|
|
||||||
|
return view('suppliers.index', compact('suppliers'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* para crear un proveedor
|
||||||
|
*/
|
||||||
|
public function create()
|
||||||
|
{
|
||||||
|
return view('suppliers.create');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public function store(Request $request)
|
||||||
|
{
|
||||||
|
$validated = $request->validate([
|
||||||
|
'name' => 'required|string|max:255',
|
||||||
|
'phone' => 'nullable|string|max:50',
|
||||||
|
'email' => 'nullable|email|max:255|unique:suppliers,email',
|
||||||
|
'address' => 'nullable|string|max:255',
|
||||||
|
]);
|
||||||
|
|
||||||
|
Supplier::create($validated);
|
||||||
|
|
||||||
|
return redirect()->route('suppliers.index')
|
||||||
|
->with('success', 'Proveedor creado correctamente.');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* muestra un proveedor
|
||||||
|
*/
|
||||||
|
public function show(Supplier $supplier)
|
||||||
|
{
|
||||||
|
return view('suppliers.show', compact('supplier'));
|
||||||
|
}
|
||||||
|
|
||||||
|
public function edit(Supplier $supplier)
|
||||||
|
{
|
||||||
|
return view('suppliers.edit', compact('supplier'));
|
||||||
|
}
|
||||||
|
|
||||||
|
public function update(Request $request, Supplier $supplier)
|
||||||
|
{
|
||||||
|
$validated = $request->validate([
|
||||||
|
'name' => 'required|string|max:255',
|
||||||
|
'phone' => 'nullable|string|max:50',
|
||||||
|
'email' => 'nullable|email|max:255|unique:suppliers,email,' . $supplier->id,
|
||||||
|
'address' => 'nullable|string|max:255',
|
||||||
|
]);
|
||||||
|
|
||||||
|
$supplier->update($validated);
|
||||||
|
|
||||||
|
return redirect()->route('suppliers.index')
|
||||||
|
->with('success', 'Proveedor actualizado correctamente.');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* elimina (solo si no tiene productos asociados)
|
||||||
|
*/
|
||||||
|
public function destroy(Supplier $supplier)
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$supplier->delete();
|
||||||
|
return redirect()->route('suppliers.index')
|
||||||
|
->with('success', 'Proveedor eliminado correctamente.');
|
||||||
|
|
||||||
|
} catch (\Illuminate\Database\QueryException $e) {
|
||||||
|
// Si el proveedor tiene productos asociados, va a tirar un error de llave foránea.
|
||||||
|
return back()->with('error', 'No se puede eliminar el proveedor porque tiene productos registrados en el inventario.');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* trae todos los productos de un proveedor
|
||||||
|
*/
|
||||||
|
public function order(Supplier $supplier)
|
||||||
|
{
|
||||||
|
$products = $supplier->products()->orderBy('name')->get();
|
||||||
|
|
||||||
|
return view('suppliers.order', compact('supplier', 'products'));
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,43 @@
|
|||||||
|
<x-layout title="Lauck - Nuevo Proveedor">
|
||||||
|
<x-section-header subtitle="Gestión de Proveedores" title="Nuevo " highlight="Proveedor" />
|
||||||
|
|
||||||
|
<div class="w-full max-w-4xl mx-auto bg-gray-200 dark:bg-panel-bg border border-neutral-400 dark:border-neutral-800 rounded-xl p-8 shadow-lg">
|
||||||
|
<form action="{{ route('suppliers.store') }}" method="POST">
|
||||||
|
@csrf
|
||||||
|
|
||||||
|
<div class="grid grid-cols-1 md:grid-cols-4 gap-6 mb-6">
|
||||||
|
|
||||||
|
<div class="md:col-span-4">
|
||||||
|
<x-forms.label for="name" value="Nombre de la Empresa o Contacto" />
|
||||||
|
<x-forms.input id="name" name="name" type="text" :value="old('name')" required autofocus placeholder="Ej: Distribuidora Shimano Arg" :error="$errors->first('name')" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="md:col-span-2">
|
||||||
|
<x-forms.label for="phone" value="Teléfono / WhatsApp" />
|
||||||
|
<x-forms.input id="phone" name="phone" type="text" :value="old('phone')" placeholder="Ej: 011 4545..." :error="$errors->first('phone')" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="md:col-span-2">
|
||||||
|
<x-forms.label for="email" value="Correo Electrónico" />
|
||||||
|
<x-forms.input id="email" name="email" type="email" :value="old('email')" placeholder="ventas@proveedor.com" :error="$errors->first('email')" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="md:col-span-4">
|
||||||
|
<x-forms.label for="address" value="Dirección / Domicilio / Depósito" />
|
||||||
|
<textarea id="address" name="address" rows="3" class="bg-gray-300 dark:bg-neutral-800 border border-neutral-400 dark:border-neutral-700 dark:text-white text-sm rounded-lg focus:ring-neon-lime focus:border-neon-lime block w-full p-2.5 placeholder-neutral-600 dark:placeholder-gray-400" placeholder="Calle, número, galpón, ciudad...">{{ old('address') }}</textarea>
|
||||||
|
@error('address')
|
||||||
|
<span class="text-red-500 text-xs mt-1">{{ $message }}</span>
|
||||||
|
@enderror
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="flex items-center justify-between md:justify-end space-x-4 border-t border-neutral-400 dark:border-neutral-700 pt-6">
|
||||||
|
<a href="{{ route('suppliers.index') }}" class="text-gray-700 dark:text-gray-400 hover:text-black hover:dark:text-white font-medium text-sm transition-colors">Cancelar</a>
|
||||||
|
<button type="submit" class="px-6 py-2.5 bg-neutral-900 dark:bg-neon-lime text-neon-lime dark:text-neutral-900 font-bold rounded-lg hover:bg-neutral-800 hover:dark:bg-[#b3e600] transition-colors shadow-lg dark:shadow-neon-lime/20">
|
||||||
|
Guardar Proveedor
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</x-layout>
|
||||||
@@ -0,0 +1,45 @@
|
|||||||
|
<x-layout title="Lauck - Editar Proveedor">
|
||||||
|
<x-section-header subtitle="Gestión de Proveedores" title="Editar " highlight="Proveedor" />
|
||||||
|
|
||||||
|
<div class="w-full max-w-4xl mx-auto bg-gray-200 dark:bg-panel-bg border border-neutral-400 dark:border-neutral-800 rounded-xl p-8 shadow-lg">
|
||||||
|
<form action="{{ route('suppliers.update', $supplier) }}" method="POST">
|
||||||
|
@csrf
|
||||||
|
@method('PUT')
|
||||||
|
|
||||||
|
<div class="grid grid-cols-1 md:grid-cols-4 gap-6 mb-6">
|
||||||
|
|
||||||
|
<div class="md:col-span-4">
|
||||||
|
<x-forms.label for="name" value="Nombre de la Empresa o Contacto" />
|
||||||
|
<x-forms.input id="name" name="name" type="text" :value="old('name', $supplier->name)" required autofocus placeholder="Ej: Distribuidora Shimano Arg" :error="$errors->first('name')" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="md:col-span-2">
|
||||||
|
<x-forms.label for="phone" value="Teléfono / WhatsApp" />
|
||||||
|
<x-forms.input id="phone" name="phone" type="text" :value="old('phone', $supplier->phone)" placeholder="Ej: 011 4545..." :error="$errors->first('phone')" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="md:col-span-2">
|
||||||
|
<x-forms.label for="email" value="Correo Electrónico" />
|
||||||
|
<x-forms.input id="email" name="email" type="email" :value="old('email', $supplier->email)" placeholder="ventas@proveedor.com" :error="$errors->first('email')" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="md:col-span-4">
|
||||||
|
<x-forms.label for="address" value="Dirección / Domicilio / Depósito" />
|
||||||
|
<textarea id="address" name="address" rows="3" class="bg-gray-300 dark:bg-neutral-800 border border-neutral-400 dark:border-neutral-700 dark:text-white text-sm rounded-lg focus:ring-neon-lime focus:border-neon-lime block w-full p-2.5 placeholder-neutral-600 dark:placeholder-gray-400" placeholder="Calle, número, galpón, ciudad...">{{ old('address', $supplier->address) }}</textarea>
|
||||||
|
|
||||||
|
@error('address')
|
||||||
|
<span class="text-red-500 text-xs mt-1">{{ $message }}</span>
|
||||||
|
@enderror
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="flex items-center justify-between md:justify-end space-x-4 border-t border-neutral-400 dark:border-neutral-700 pt-6">
|
||||||
|
<a href="{{ route('suppliers.index') }}" class="text-gray-800 dark:text-gray-400 hover:text-black hover:dark:text-white font-medium text-sm transition-colors">Cancelar</a>
|
||||||
|
<button type="submit" class="px-6 py-2.5 bg-neutral-900 dark:bg-neon-lime text-neon-lime dark:text-neutral-900 font-bold rounded-lg hover:bg-neutral-800 hover:dark:bg-[#b3e600] transition-colors shadow-lg dark:shadow-neon-lime/20">
|
||||||
|
Actualizar Proveedor
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</x-layout>
|
||||||
@@ -0,0 +1,114 @@
|
|||||||
|
<x-layout title="Lauck - Proveedores">
|
||||||
|
|
||||||
|
<x-section-header subtitle="Gestión de Proveedores" title="Directorio de " highlight="Proveedores" />
|
||||||
|
|
||||||
|
<x-ui.alert />
|
||||||
|
@if(session('success'))
|
||||||
|
<div class="bg-green-900/50 border border-green-500 text-green-300 px-4 py-3 rounded-lg mb-6 shadow-sm">
|
||||||
|
{{ session('success') }}
|
||||||
|
</div>
|
||||||
|
@endif
|
||||||
|
<!--@if(session('error'))
|
||||||
|
<div class="bg-red-900/50 border border-red-500 text-red-300 px-4 py-3 rounded-lg mb-6 shadow-sm">
|
||||||
|
{{ session('error') }}
|
||||||
|
</div>
|
||||||
|
@endif-->
|
||||||
|
|
||||||
|
<div class="w-full flex flex-col md:flex-row justify-between items-center gap-4 mb-6">
|
||||||
|
|
||||||
|
<form action="{{ route('suppliers.index') }}" method="GET" class="w-full md:w-1/2">
|
||||||
|
<div class="relative">
|
||||||
|
<div class="absolute inset-y-0 start-0 flex items-center ps-3 pointer-events-none">
|
||||||
|
<svg class="w-4 h-4 text-gray-600 dark:text-gray-500" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20">
|
||||||
|
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m19 19-4-4m0-7A7 7 0 1 1 1 8a7 7 0 0 1 14 0Z"/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<input type="text" name="search" value="{{ request('search') }}"
|
||||||
|
class="block w-full p-3 ps-10 text-sm text-black dark:text-white border border-neutral-400 dark:border-neutral-700 rounded-lg bg-neutral-200 dark:bg-neutral-800 placeholder-gray-600 dark:placeholder-gray-500"
|
||||||
|
placeholder="Buscar por nombre...">
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<a href="{{ route('suppliers.create') }}" class="w-full md:w-auto text-center px-5 py-3 text-sm font-bold text-neon-lime dark:text-neutral-900 bg-neutral-950 dark:bg-neon-lime rounded-lg hover:bg-neutral-900/80 hover:dark:bg-[#b3e600] transition-colors uppercase tracking-wide">
|
||||||
|
+ Nuevo Proveedor
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="relative overflow-x-auto shadow-md sm:rounded-lg border border-gray-400 dark:border-neutral-800 w-full">
|
||||||
|
<table class="w-full text-sm text-left rtl:text-right text-neutral-900 dark:text-white">
|
||||||
|
<thead class="text-xs text-neutral-800 dark:text-gray-300 uppercase bg-gray-400 dark:bg-neutral-800 border-b border-gray-300 dark:border-neutral-700">
|
||||||
|
<tr>
|
||||||
|
<th scope="col" class="px-6 py-3">Proveedor / Email</th>
|
||||||
|
<th scope="col" class="px-6 py-3">Teléfono / WhatsApp</th>
|
||||||
|
<th scope="col" class="px-6 py-3">Dirección</th>
|
||||||
|
<th scope="col" class="px-6 py-3 text-right">Acciones</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
@forelse($suppliers as $supplier)
|
||||||
|
<tr class="bg-gray-200/50 dark:bg-neutral-900/50 border-b border-gray-400 dark:border-neutral-800 hover:bg-gray-400 hover:dark:bg-neutral-800 transition-colors group">
|
||||||
|
<td class="px-6 py-4 whitespace-nowrap">
|
||||||
|
<div class="text-base font-bold">{{ $supplier->name }}</div>
|
||||||
|
<div class="text-xs text-gray-600 dark:text-gray-400 font-mono">
|
||||||
|
{{ $supplier->email ?? 'Sin email registrado' }}
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
<td class="px-6 py-4">
|
||||||
|
@if($supplier->phone)
|
||||||
|
<div class="flex items-center gap-2">
|
||||||
|
<span class="font-mono">{{ $supplier->phone }}</span>
|
||||||
|
<span class="text-xs text-green-600 border border-green-600 px-1.5 py-0.5 rounded">WA</span>
|
||||||
|
</div>
|
||||||
|
@else
|
||||||
|
<span class="italic text-gray-500">No registrado</span>
|
||||||
|
@endif
|
||||||
|
</td>
|
||||||
|
<td class="px-6 py-4">
|
||||||
|
<span class="truncate max-w-xs block" title="{{ $supplier->address }}">
|
||||||
|
{{ $supplier->address ?? '-' }}
|
||||||
|
</span>
|
||||||
|
</td>
|
||||||
|
<td class="px-6 py-4 text-right flex items-center justify-end gap-3">
|
||||||
|
<a href="{{ route('suppliers.order', $supplier) }}" title="Hacer Pedido" class="font-semibold p-2 text-green-600 dark:text-green-400 border-2 border-green-600 rounded-lg hover:bg-green-600 hover:text-white dark:hover:text-white transition-colors">
|
||||||
|
<svg class="size-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path fill-rule="evenodd" d="M12 4a8 8 0 0 0-6.895 12.06l.569 1.167-1.076 2.872 3.018-1.045 1.18.528A8 8 0 1 0 12 4Zm5.1 10.3c-.28-.14-1.65-.815-1.905-.909-.255-.094-.44-.14-.625.14-.185.28-.72 1.054-.882 1.265-.162.21-.324.234-.604.094-.28-.14-1.178-.435-2.246-1.385-.83-.739-1.39-1.65-1.552-1.93-.162-.28-.017-.432.123-.57.126-.125.28-.328.42-.493.14-.165.187-.28.28-.468.093-.188.047-.35-.023-.491-.07-.14-.625-1.508-.857-2.064-.225-.544-.454-.47-.625-.478-.162-.008-.348-.01-.533-.01-.185 0-.485.07-.74.35-.255.28-.972.95-.972 2.316 0 1.366.995 2.687 1.133 2.874.138.188 1.956 2.986 4.74 4.153.662.277 1.18.442 1.583.565.665.204 1.27.175 1.745.106.531-.077 1.65-.674 1.882-1.325.232-.651.232-1.21.162-1.325-.07-.116-.255-.186-.535-.326Z" clip-rule="evenodd"/>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
<a href="{{ route('suppliers.edit', $supplier) }}" title="Editar" class="font-semibold p-2 text-blue-700 dark:text-blue-400 border-2 border-blue-700 rounded-lg hover:bg-blue-700 hover:text-white dark:hover:text-white transition-colors">
|
||||||
|
<svg class="size-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
|
||||||
|
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m14.304 4.844 2.852 2.852M7 7H4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1v-4.5m2.409-9.91a2.017 2.017 0 0 1 0 2.853l-6.844 6.844L8 14l.713-3.565 6.844-6.844a2.015 2.015 0 0 1 2.852 0Z"/>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
<form action="{{route('suppliers.destroy', $supplier)}}" method="post">
|
||||||
|
@csrf
|
||||||
|
@method('DELETE')
|
||||||
|
<button title="Eliminar" type="submit" class="w-full sm:w-auto p-2 font-bold dark:font-medium text-red-600 dark:text-red-400 border-2 border-red-600 rounded-lg hover:bg-red-600 hover:text-white dark:hover:text-white transition-colors">
|
||||||
|
<svg class="size-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
|
||||||
|
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 7h14m-9 3v8m4-8v8M10 3h4a1 1 0 0 1 1 1v3H9V4a1 1 0 0 1 1-1ZM6 7h12v13a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V7Z"/>
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
</form>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
</tr>
|
||||||
|
@empty
|
||||||
|
<tr>
|
||||||
|
<td colspan="4" class="px-6 py-10 text-center text-gray-500">
|
||||||
|
<div class="flex flex-col items-center justify-center">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-10 w-10 mb-2 opacity-50" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z" />
|
||||||
|
</svg>
|
||||||
|
<p>No se encontraron proveedores.</p>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
@endforelse
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mt-4 w-full">
|
||||||
|
{{ $suppliers->links() }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</x-layout>
|
||||||
@@ -0,0 +1,203 @@
|
|||||||
|
<x-layout title="Lauck - Armar Pedido">
|
||||||
|
<x-section-header subtitle="Proveedores" title="Armar Pedido: " highlight="{{ $supplier->name }}" />
|
||||||
|
|
||||||
|
<div class="w-full max-w-5xl mx-auto bg-gray-200 dark:bg-panel-bg border border-neutral-400 dark:border-neutral-800 rounded-xl p-8 shadow-lg relative">
|
||||||
|
|
||||||
|
<div class="mb-6 flex justify-between items-end">
|
||||||
|
<div>
|
||||||
|
<h3 class="text-xl font-bold text-neutral-900 dark:text-white">Seleccioná los productos</h3>
|
||||||
|
<p class="text-sm text-gray-600 dark:text-gray-400">Teléfono registrado: {{ $supplier->phone ?? 'Ninguno' }}</p>
|
||||||
|
</div>
|
||||||
|
<a href="{{ route('suppliers.index') }}" class="text-sm font-bold text-gray-500 hover:text-white transition-colors">Volver al listado</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
@if($products->isEmpty())
|
||||||
|
<div class="bg-yellow-900/30 border border-yellow-600 text-yellow-500 p-4 rounded-lg">
|
||||||
|
Este proveedor todavía no tiene productos asociados en el sistema.
|
||||||
|
</div>
|
||||||
|
@else
|
||||||
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-4 mb-4 bg-gray-300 dark:bg-neutral-800 p-4 rounded-lg border border-gray-400 dark:border-neutral-700">
|
||||||
|
<div class="relative">
|
||||||
|
<div class="absolute inset-y-0 start-0 flex items-center ps-3 pointer-events-none">
|
||||||
|
<svg class="w-4 h-4 text-gray-500" fill="none" viewBox="0 0 20 20"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m19 19-4-4m0-7A7 7 0 1 1 1 8a7 7 0 0 1 14 0Z"/></svg>
|
||||||
|
</div>
|
||||||
|
<input type="text" id="searchInput" class="block w-full p-2.5 ps-10 text-sm text-black dark:text-white border border-gray-400 dark:border-neutral-600 rounded-lg bg-white dark:bg-neutral-900 focus:ring-neon-lime focus:border-neon-lime" placeholder="Buscar por nombre...">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<select id="typeFilter" class="block w-full p-2.5 text-sm text-black dark:text-white border border-gray-400 dark:border-neutral-600 rounded-lg bg-white dark:bg-neutral-900 focus:ring-neon-lime focus:border-neon-lime">
|
||||||
|
<option value="all">Todas las categorías</option>
|
||||||
|
<option value="bike">Bicicletas</option>
|
||||||
|
<option value="accessory">Accesorios</option>
|
||||||
|
<option value="clothing">Indumentaria</option>
|
||||||
|
<option value="spare">Repuestos</option>
|
||||||
|
<option value="children">Infantil</option>
|
||||||
|
<option value="rollers">Rollers</option>
|
||||||
|
<option value="skate">Skate</option>
|
||||||
|
<option value="other">Otros</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<select id="stockFilter" class="block w-full p-2.5 text-sm text-black dark:text-white border border-gray-400 dark:border-neutral-600 rounded-lg bg-white dark:bg-neutral-900 focus:ring-neon-lime focus:border-neon-lime">
|
||||||
|
<option value="all">Todo el inventario</option>
|
||||||
|
<option value="low">Solo Bajo Stock (Alerta)</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="relative overflow-x-auto overflow-y-auto max-h-[450px] border border-gray-400 dark:border-neutral-700 rounded-lg mb-6 custom-scrollbar">
|
||||||
|
<table class="w-full text-sm text-left text-neutral-900 dark:text-gray-300">
|
||||||
|
<thead class="text-xs uppercase bg-gray-400 dark:bg-neutral-800 border-b border-gray-400 dark:border-neutral-700 sticky top-0 z-10">
|
||||||
|
<tr>
|
||||||
|
<th class="px-4 py-3 text-center w-16">Pedir</th>
|
||||||
|
<th class="px-4 py-3 w-24">Cantidad</th>
|
||||||
|
<th class="px-4 py-3">Producto</th>
|
||||||
|
<th class="px-4 py-3 text-center">Stock Actual</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody id="tabla-productos">
|
||||||
|
@foreach($products as $product)
|
||||||
|
<tr class="border-b border-gray-300 dark:border-neutral-800 hover:bg-gray-300/50 dark:hover:bg-neutral-800/50 transition-colors product-row"
|
||||||
|
data-name="{{ strtolower($product->name) }}"
|
||||||
|
data-type="{{ $product->type }}"
|
||||||
|
data-stock="{{ $product->stock_quantity }}"
|
||||||
|
data-min="{{ $product->min_stock_alert }}">
|
||||||
|
|
||||||
|
<td class="px-4 py-3 text-center">
|
||||||
|
<input type="checkbox" class="product-check w-5 h-5 text-neon-lime bg-gray-100 border-gray-400 rounded focus:ring-neon-lime dark:focus:ring-neon-lime dark:ring-offset-gray-800 focus:ring-2 dark:bg-neutral-700 dark:border-neutral-600 cursor-pointer">
|
||||||
|
</td>
|
||||||
|
<td class="px-4 py-3">
|
||||||
|
<input type="number" min="1" value="1" class="product-qty bg-white dark:bg-neutral-900 border border-gray-400 dark:border-neutral-600 text-sm rounded-lg focus:ring-neon-lime focus:border-neon-lime block w-full p-2 text-center disabled:opacity-50" disabled>
|
||||||
|
</td>
|
||||||
|
<td class="px-4 py-3 font-semibold product-name">
|
||||||
|
{{ $product->name }}
|
||||||
|
</td>
|
||||||
|
<td class="px-4 py-3 text-center">
|
||||||
|
@if($product->stock_quantity <= $product->min_stock_alert)
|
||||||
|
<span class="px-2 py-1 rounded text-xs font-bold bg-red-200 text-red-800 dark:bg-red-900/50 dark:text-red-400">
|
||||||
|
{{ $product->stock_quantity }} (¡Bajo!)
|
||||||
|
</span>
|
||||||
|
@else
|
||||||
|
<span class="px-2 py-1 rounded text-xs font-bold bg-gray-300 text-gray-700 dark:bg-gray-800 dark:text-gray-400">
|
||||||
|
{{ $product->stock_quantity }}
|
||||||
|
</span>
|
||||||
|
@endif
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
@endforeach
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="flex justify-end pt-4 border-t border-gray-400 dark:border-neutral-700 mt-4">
|
||||||
|
<button onclick="enviarPedido()" class="flex items-center gap-2 px-6 py-3 bg-green-600 text-white font-bold rounded-lg hover:bg-green-500 transition-colors shadow-lg shadow-green-900/20">
|
||||||
|
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 4a8 8 0 0 0-6.895 12.06l.569 1.167-1.076 2.872 3.018-1.045 1.18.528A8 8 0 1 0 12 4Zm5.1 10.3c-.28-.14-1.65-.815-1.905-.909-.255-.094-.44-.14-.625.14-.185.28-.72 1.054-.882 1.265-.162.21-.324.234-.604.094-.28-.14-1.178-.435-2.246-1.385-.83-.739-1.39-1.65-1.552-1.93-.162-.28-.017-.432.123-.57.126-.125.28-.328.42-.493.14-.165.187-.28.28-.468.093-.188.047-.35-.023-.491-.07-.14-.625-1.508-.857-2.064-.225-.544-.454-.47-.625-.478-.162-.008-.348-.01-.533-.01-.185 0-.485.07-.74.35-.255.28-.972.95-.972 2.316 0 1.366.995 2.687 1.133 2.874.138.188 1.956 2.986 4.74 4.153.662.277 1.18.442 1.583.565.665.204 1.27.175 1.745.106.531-.077 1.65-.674 1.882-1.325.232-.651.232-1.21.162-1.325-.07-.116-.255-.186-.535-.326Z" clip-rule="evenodd"/></svg>
|
||||||
|
Armar Pedido por WhatsApp
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
@endif
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.custom-scrollbar::-webkit-scrollbar { width: 8px; }
|
||||||
|
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
|
||||||
|
.custom-scrollbar::-webkit-scrollbar-thumb { background-color: #4b5563; border-radius: 20px; }
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
const searchInput = document.getElementById('searchInput');
|
||||||
|
const typeFilter = document.getElementById('typeFilter');
|
||||||
|
const stockFilter = document.getElementById('stockFilter');
|
||||||
|
const rows = document.querySelectorAll('.product-row');
|
||||||
|
|
||||||
|
function aplicarFiltros() {
|
||||||
|
if(!searchInput) return;
|
||||||
|
|
||||||
|
const term = searchInput.value.toLowerCase();
|
||||||
|
const type = typeFilter.value;
|
||||||
|
const stock = stockFilter.value;
|
||||||
|
|
||||||
|
rows.forEach(row => {
|
||||||
|
const name = row.dataset.name;
|
||||||
|
const rowType = row.dataset.type;
|
||||||
|
const qty = parseInt(row.dataset.stock);
|
||||||
|
const min = parseInt(row.dataset.min);
|
||||||
|
|
||||||
|
let show = true;
|
||||||
|
|
||||||
|
// filtrar por texto
|
||||||
|
if (term !== '' && !name.includes(term)) show = false;
|
||||||
|
|
||||||
|
// filtrar por categoría
|
||||||
|
if (type !== 'all' && rowType !== type) show = false;
|
||||||
|
|
||||||
|
// filtrar por stock
|
||||||
|
if (stock === 'low' && qty > min) show = false;
|
||||||
|
|
||||||
|
// ocultar o mostrar fila
|
||||||
|
row.style.display = show ? '' : 'none';
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if(searchInput) {
|
||||||
|
searchInput.addEventListener('input', aplicarFiltros);
|
||||||
|
typeFilter.addEventListener('change', aplicarFiltros);
|
||||||
|
stockFilter.addEventListener('change', aplicarFiltros);
|
||||||
|
}
|
||||||
|
|
||||||
|
// logica de habilitar/deshabilitar cant
|
||||||
|
document.querySelectorAll('.product-check').forEach(checkbox => {
|
||||||
|
checkbox.addEventListener('change', function() {
|
||||||
|
const tr = this.closest('tr');
|
||||||
|
const qtyInput = tr.querySelector('.product-qty');
|
||||||
|
qtyInput.disabled = !this.checked;
|
||||||
|
|
||||||
|
if(this.checked) {
|
||||||
|
qtyInput.focus();
|
||||||
|
qtyInput.select();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// enviar a wsp
|
||||||
|
function enviarPedido() {
|
||||||
|
let telefonoRaw = "{{ $supplier->phone }}";
|
||||||
|
let telefono = telefonoRaw.replace(/\D/g, '');
|
||||||
|
|
||||||
|
if (!telefono) {
|
||||||
|
alert('Oops! El proveedor no tiene un número de teléfono guardado. Editalo primero en la pestaña de Proveedores.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (telefono.length === 10) {
|
||||||
|
telefono = '549' + telefono;
|
||||||
|
}
|
||||||
|
|
||||||
|
let mensaje = `Hola *{{ $supplier->name }}*, me comunico de Bicicletería Lauck para realizar el siguiente pedido:\n\n`;
|
||||||
|
let hayProductos = false;
|
||||||
|
|
||||||
|
document.querySelectorAll('.product-row').forEach(row => {
|
||||||
|
const isChecked = row.querySelector('.product-check').checked;
|
||||||
|
const qty = row.querySelector('.product-qty').value;
|
||||||
|
const name = row.querySelector('.product-name').innerText.trim();
|
||||||
|
|
||||||
|
if (isChecked && qty > 0) {
|
||||||
|
mensaje += `- ${qty}x ${name}\n`;
|
||||||
|
hayProductos = true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!hayProductos) {
|
||||||
|
alert('Por favor, tildá al menos un producto para hacer el pedido.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
mensaje += `\n¡Muchas gracias!`;
|
||||||
|
|
||||||
|
const url = `https://wa.me/${telefono}?text=${encodeURIComponent(mensaje)}`;
|
||||||
|
window.open(url, '_blank');
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</x-layout>
|
||||||
Reference in New Issue
Block a user