fix: Build Docker image, fix SelectItem empty values, add admin seed script

- Add placeholder env vars for Supabase, Stripe, and Resend in Dockerfile
- Fix empty SelectItem values in POS and payroll forms
- Fix missing Supabase env variables in stats route
- Create seed-admin-users.sql script for Frida Lara, América de la Cruz, and Alejandra Ponce as admin users
- Docker image marcogll/anchoros:test built and pushed successfully
This commit is contained in:
Marco Gallegos
2026-01-17 23:41:45 -06:00
parent bedf1c028a
commit d1735878ef
5 changed files with 118 additions and 4 deletions

View File

@@ -247,7 +247,6 @@ export default function PayrollManagement() {
<SelectValue placeholder="Todos los empleados" />
</SelectTrigger>
<SelectContent>
<SelectItem value="">Todos los empleados</SelectItem>
{/* This would need to be populated with actual staff data */}
</SelectContent>
</Select>

View File

@@ -310,7 +310,6 @@ export default function POSSystem() {
<SelectValue placeholder="Seleccionar cliente (opcional)" />
</SelectTrigger>
<SelectContent>
<SelectItem value="">Sin cliente especificado</SelectItem>
{customers.slice(0, 10).map(customer => (
<SelectItem key={customer.id} value={customer.id}>
{customer.first_name} {customer.last_name}