diff --git a/backend/api/v1/modules/a76/general_catalogs/company/models.py b/backend/api/v1/modules/a76/general_catalogs/company/models.py index a1bd5d99..7b6860d8 100644 --- a/backend/api/v1/modules/a76/general_catalogs/company/models.py +++ b/backend/api/v1/modules/a76/general_catalogs/company/models.py @@ -11,7 +11,7 @@ if TYPE_CHECKING: from .submodels.address import CompanyAddress from .submodels.certification import CompanyCertification from .submodels.digital_certificate import CompanyDigitalCertificate - from .submodels.ventanilla_unica import CompanyVU + from .submodels.vu import CompanyVU from .submodels.electronic_agent import CompanyElectronicAgent from .submodels.prevalidator import CompanyPrevalidator from .submodels.cfdi import CompanyCFDI diff --git a/frontend/src/routes/dashboard/clients_and_providers/+page.svelte b/frontend/src/routes/dashboard/clients_and_providers/+page.svelte index cc3594af..173101a7 100644 --- a/frontend/src/routes/dashboard/clients_and_providers/+page.svelte +++ b/frontend/src/routes/dashboard/clients_and_providers/+page.svelte @@ -5,6 +5,7 @@ import { page } from '$app/stores'; import { clientsProvidersApi, type ClientProvider } from '$lib/api/dashboard/a76/clients-providers'; import { Button } from '$lib/components/ui/button'; + import * as Card from '$lib/components/ui/card'; import { Input } from '$lib/components/ui/input'; import { Label } from '$lib/components/ui/label'; import * as Select from '$lib/components/ui/select'; @@ -154,47 +155,6 @@ {/if} - - - -
-
- - Mostrando {allItems.length} de {totalItems} registros - {#if companyStore.activeCompany} - - Compañía: {companyStore.activeCompany.name} - {/if} - -
-
- - - {selectedType === 'both' ? 'Todos' : selectedType === 'client' ? 'Clientes' : 'Proveedores'} - - - Todos - Clientes - Proveedores - - - -
-
-
- - - - -