Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita una demostración
  • Precios
  • Ayuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyectos
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

v14: Is there an easier way to manage attachments? We will have dozens for each Opportunity.

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
listmanageattachments
4 Respuestas
11609 Vistas
Avatar
Community Question

From what I can see, attachments are designed to just have a small number per document.

They show like this:


After uploading, users need to hover over each attachment to see the Title and with the number we plan to use this will be too cumbersome.

Are there other users managing larger number of attachments for documents?

1
Avatar
Descartar
Ricardo Gross

Nice question, great Inputs and good answers, but why Odoo is limited to provide "Files Centralization" only for some apps? CRM among other important apps should have the possibility to have their files centralized by default!

Avatar
Ray Carnes (ray)
Mejor respuesta

You can create a Smart Button on the Opportunity if you need to manage more Attachments than would reasonably work in the Chatter.


Activate Developer Mode:

1. Create a Custom View to show attachments in a list and allow them to be created from the list:


<tree string="Attachments" editable="top" >
<field name="datas" widget="download_link" filename="name" string="File"/>
<field name="name" invisible="1"/>
<field name="company_id" groups="base.group_multi_company"/>
<field name="create_uid"/>
<field name="create_date"/>
</tree>



2. Create a Window Action to open attachments:


Note the Domain Value and Context Value field are both specific to the Document Model you want to find attachments for, in this case crm.lead.

[('res_id','=',active_id) ,  ('res_model','=','crm.lead')]
{'default_res_id': active_id, 'default_res_model': 'crm.lead'}


At the bottom of this Window Action, link it to the View you created in the first step:



Take note of the ID of this Window Action (found in the URL) as you will need it in the next step:




3. Create the Smart Button in your own Custom View on top of Opportunity.


Note that the Name of the button will the the ID of the Window Action you created.

<xpath expr="//button[@name='action_schedule_meeting']" position="after">
<button class="oe_stat_button" icon="fa-file-o" type="action" name="475" string="Attached"/>
</xpath>



Your Opportunity Form View will now look like this:



When users click, they will see:



When they click CREATE they will be able to upload a new Attachment inline:



6
Avatar
Descartar

Hi Ray, I would like to do something similar, a button to download all edi files from selected invoice in view list, any suugestion ?

Thanks

Ray Carnes (ray)

I would suggest posting a new question - this technique only allows you to see all attachments in a list - you still have to download each one individually - I think what your ask is customization that needs code (ie: a module).

Avatar
Levenez Morgan
Mejor respuesta

you can buy my module https://apps.odoo.com/apps/modules/13.0/attachments_manager
:)

1
Avatar
Descartar
Serge Mercado

Awesome module 👍

Avatar
dd
Mejor respuesta

Hello, do you know how to display attachment size on website next to a name?

0
Avatar
Descartar
Avatar
Mohammed Rida Yahla
Mejor respuesta

Hi

In case you want to edit the attachments names quickly and efficiently from the chatter attachment widget. 

Here's an app for V14+ :

https://apps.odoo.com/apps/modules/15.0/edit_attachment_chatter_name/

0
Avatar
Descartar
¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
Attachements
attachments
Avatar
0
dic 24
2262
how to remove the duplicate number of elements in list? Resuelto
list
Avatar
Avatar
Avatar
Avatar
Avatar
5
dic 23
19826
How to set attachments to public? Resuelto
attachments
Avatar
1
mar 23
7643
How to automatically change name of ir.attachment Resuelto
attachments
Avatar
Avatar
2
abr 22
5107
Remove product attachment without deleting the document
attachments
Avatar
0
oct 21
3262
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidad
  • Seguridad
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y estar totalmente integrado.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now