-- Agregar cuentas de gastos solicitadas
-- Asegúrate de cambiar `id_empresa` o `codigo_cuenta` si tu plan de cuentas difiere

INSERT INTO f_cuentas_fin (id_empresa, codigo_cuenta, nombre_cuenta, tipo_cuenta, naturaleza, nivel, cuenta_padre_id, acepta_movimiento, activa) VALUES
(1, '6104', 'GASTOS DE LIMPIEZA', 'GASTO', 'DEBITO', 1, NULL, 1, 1),
(1, '6105', 'MANTENIMIENTO Y REPARACIONES VEHICULOS', 'GASTO', 'DEBITO', 1, NULL, 1, 1),
(1, '6106', 'GASTOS ALIMENTOS Y BEBIDAS', 'GASTO', 'DEBITO', 1, NULL, 1, 1);
