Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

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

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

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

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
listmanageattachments
4 Odpowiedzi
11622 Widoki
Awatar
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
Awatar
Odrzuć
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!

Awatar
Ray Carnes (ray)
Najlepsza odpowiedź

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
Awatar
Odrzuć

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).

Awatar
Levenez Morgan
Najlepsza odpowiedź

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

1
Awatar
Odrzuć
Serge Mercado

Awesome module 👍

Awatar
dd
Najlepsza odpowiedź

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

0
Awatar
Odrzuć
Awatar
Mohammed Rida Yahla
Najlepsza odpowiedź

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
Awatar
Odrzuć
Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
Attachements
attachments
Awatar
0
gru 24
2275
how to remove the duplicate number of elements in list? Rozwiązane
list
Awatar
Awatar
Awatar
Awatar
Awatar
5
gru 23
19831
How to set attachments to public? Rozwiązane
attachments
Awatar
1
mar 23
7651
How to automatically change name of ir.attachment Rozwiązane
attachments
Awatar
Awatar
2
kwi 22
5117
Remove product attachment without deleting the document
attachments
Awatar
0
paź 21
3266
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة 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 to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

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