Catálogos y selects:
- Incoterm como catálogo (nuevo catálogo global 'incoterm') en solicitud y modal
de conversión de oportunidad.
- Moneda como catálogo en Cotizaciones (nuevo/detalle) y Facturación.
- "Tipo de transporte" desde catálogo medio_transporte (antes lista fija).
- Cotizador: origen/destino como selects alineados a las rutas de los tarifarios
activos (endpoint /rate-locations), para que el costeo siempre encuentre ruta.
Bugs de la sesión:
- Direcciones no guardaban: DTO country String(2)→String(3) (ISO alfa-3); se
amplía accounts.country y se normaliza 'MX'→'MEX' (migración).
- Contacto de proveedor mal filtrado: contacts.ts ahora envía supplier_id.
- Selects ilegibles en modo oscuro: regla global select option en app.css.
- Formas de pago SAT a 2 dígitos (01/04/08) en catálogo y valores guardados.
- RelatedManager: editar direcciones/contactos/documentos (antes solo eliminar).
Oportunidades:
- Se quitan etapas Prospecto/Contactado del embudo semilla.
- Fechas separadas won_date/lost_date + motivo de pérdida, con modal al mover a
Ganada/Perdida (migración).
Facturación:
- Folio automático F{AAAA}-{MM}-{NNN} (next_folio entidad F, sin dirección).
- Moneda como catálogo.
UI:
- Giro "otro" habilita campo para especificar (accounts.industry_other, migración).
- Lista de contactos muestra a quién pertenece (cliente/prospecto/proveedor).
- Proveedores: países/puertos/aeropuertos/aduanas por catálogo (select + chips).
Migraciones reversibles (c2d3e4f5a6b7 ya existía; d3e4f5a6b7c8, e4f5a6b7c8d9).
Suite backend en verde (109). svelte-check sin errores nuevos.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
100 lines
4.2 KiB
Python
100 lines
4.2 KiB
Python
from datetime import datetime
|
|
from decimal import Decimal
|
|
|
|
from pydantic import BaseModel, ConfigDict, EmailStr, Field
|
|
|
|
|
|
class AccountBase(BaseModel):
|
|
# Datos generales
|
|
name: str = Field(..., min_length=1, max_length=255)
|
|
trade_name: str | None = Field(None, max_length=255)
|
|
rfc: str | None = Field(None, max_length=13)
|
|
curp: str | None = Field(None, max_length=18)
|
|
record_type: str = Field("cliente", max_length=20) # cliente | prospecto
|
|
person_type: str | None = Field(None, max_length=10) # fisica | moral
|
|
industry: str | None = Field(None, max_length=120)
|
|
industry_other: str | None = Field(None, max_length=120)
|
|
account_type: str | None = Field(None, max_length=40)
|
|
status: str = Field("active", max_length=20) # active | inactive
|
|
# Comercial
|
|
commercial_classification: str | None = Field(None, max_length=20)
|
|
preferred_contact_method: str | None = Field(None, max_length=20)
|
|
preferred_contact_other: str | None = Field(None, max_length=120)
|
|
language: str | None = Field(None, max_length=40)
|
|
email: EmailStr | None = None
|
|
phone: str | None = Field(None, max_length=40)
|
|
website: str | None = Field(None, max_length=255)
|
|
commercial_observations: str | None = None # observaciones generales
|
|
# Fiscal
|
|
tax_regime: str | None = Field(None, max_length=120)
|
|
cfdi_use: str | None = Field(None, max_length=60)
|
|
payment_method: str | None = Field(None, max_length=60)
|
|
payment_form: str | None = Field(None, max_length=60)
|
|
currency: str | None = Field(None, max_length=3)
|
|
credit_limit: Decimal | None = Field(None, ge=0, max_digits=14, decimal_places=2)
|
|
credit_days: int | None = Field(None, ge=0)
|
|
commercial_terms: str | None = None
|
|
# Aduanero / ubicación
|
|
patente_aduanal: str | None = Field(None, max_length=20)
|
|
address: str | None = None
|
|
city: str | None = Field(None, max_length=120)
|
|
state: str | None = Field(None, max_length=120)
|
|
country: str | None = Field("MEX", max_length=3)
|
|
# Observaciones
|
|
notes: str | None = None
|
|
internal_notes: str | None = None
|
|
owner_user_id: str | None = Field(None, max_length=64)
|
|
|
|
|
|
class AccountCreate(AccountBase):
|
|
pass
|
|
|
|
|
|
class AccountUpdate(BaseModel):
|
|
name: str | None = Field(None, min_length=1, max_length=255)
|
|
trade_name: str | None = Field(None, max_length=255)
|
|
rfc: str | None = Field(None, max_length=13)
|
|
curp: str | None = Field(None, max_length=18)
|
|
record_type: str | None = Field(None, max_length=20)
|
|
person_type: str | None = Field(None, max_length=10)
|
|
industry: str | None = Field(None, max_length=120)
|
|
industry_other: str | None = Field(None, max_length=120)
|
|
account_type: str | None = Field(None, max_length=40)
|
|
status: str | None = Field(None, max_length=20)
|
|
commercial_classification: str | None = Field(None, max_length=20)
|
|
preferred_contact_method: str | None = Field(None, max_length=20)
|
|
preferred_contact_other: str | None = Field(None, max_length=120)
|
|
language: str | None = Field(None, max_length=40)
|
|
email: EmailStr | None = None
|
|
phone: str | None = Field(None, max_length=40)
|
|
website: str | None = Field(None, max_length=255)
|
|
commercial_observations: str | None = None
|
|
tax_regime: str | None = Field(None, max_length=120)
|
|
cfdi_use: str | None = Field(None, max_length=60)
|
|
payment_method: str | None = Field(None, max_length=60)
|
|
payment_form: str | None = Field(None, max_length=60)
|
|
currency: str | None = Field(None, max_length=3)
|
|
credit_limit: Decimal | None = Field(None, ge=0, max_digits=14, decimal_places=2)
|
|
credit_days: int | None = Field(None, ge=0)
|
|
commercial_terms: str | None = None
|
|
patente_aduanal: str | None = Field(None, max_length=20)
|
|
address: str | None = None
|
|
city: str | None = Field(None, max_length=120)
|
|
state: str | None = Field(None, max_length=120)
|
|
country: str | None = Field(None, max_length=3)
|
|
notes: str | None = None
|
|
internal_notes: str | None = None
|
|
owner_user_id: str | None = Field(None, max_length=64)
|
|
|
|
|
|
class AccountResponse(AccountBase):
|
|
model_config = ConfigDict(from_attributes=True)
|
|
|
|
id: int
|
|
tenant_id: int
|
|
company_id: int
|
|
created_by: str | None = None
|
|
updated_by: str | None = None
|
|
created_at: datetime
|
|
updated_at: datetime
|