export const CAMPOS_OBLIGATORIOS_CLIENTE_MULTIPUNTO = [
    'documento_fiscal',
    'razon_social',
    'fecha_propuesta',
] as const;

export const ETIQUETAS_CAMPOS_CLIENTE_MULTIPUNTO: Record<string, string> = {
    documento_fiscal: 'Nº Documento Fiscal',
    razon_social: 'Razón Social / Nombre',
    fecha_propuesta: 'Fecha del Contrato',
};

export const IDS_DOM_CLIENTE_MULTIPUNTO: Record<string, string> = {
    documento_fiscal: 'documento_fiscal',
    razon_social: 'razon_social',
    fecha_propuesta: 'fecha_propuesta',
};

export const CAMPOS_OBLIGATORIOS_ELECTRICO_MULTIPUNTO = [
    'comercializadora',
    'producto',
    'cups_electrico',
    'fechaInicio',
    'fechaFin',
    'tarifa',
    'tipoprecio',
] as const;

export const CAMPOS_OBLIGATORIOS_GAS_MULTIPUNTO = [
    'comercializadora',
    'producto',
    'cupsGas',
    'fechaInicio',
    'fechaFin',
    'tarifaGas',
    'tipoprecio',
] as const;
