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

Is it possible to relate Products and Vendors?

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
purchaseproductrelatedvendorefficiency
2 Odpowiedzi
7870 Widoki
Awatar
Ricardo Gross

Hi,

It is possible that when creating an RFQ and selecting a vendor, the list of products that can be added is limited to products related to that vendor, or if I add first the product I can only choose the vendor(s) related to this product?

Thanks,

Ricardo

3
Awatar
Odrzuć
Chris TRINGHAM

Can you use Supplier Price Lists (product.supplierinfo) for the linkage?

Awatar
Ray Carnes (ray)
Najlepsza odpowiedź

Adding this domain to the product_id field on the Request for Quotation Form View will do that:

 ['|',  ('seller_ids.name', '=', parent.partner_id),
        ('seller_ids.name.child_ids', '=', parent.partner_id),
        ('purchase_ok', '=', True)] 
2
Awatar
Odrzuć
Oscar Beltran

Hi Ray, thanks for your great Idea. I try to use your code in V13 last update. It seems that the code is changed a little.

I get this result:

["&","|",["seller_ids.name","=","parent.partner_id"],["seller_ids.name.child_ids","=","parent.partner_id"],["purchase_ok","=",True]]

However, I am doing something wrong, because I do not get any product. Can you please guide. Tks a lot.

Ray Carnes (ray)

Your domain is wrong. I posted an example tested with v13. You are asking Odoo to show you products where (1) the name of one of the Vendors is the same as the Vendor on the PO "and" (2) the name of one of the child records of the Vendors is the same as the Vendor on the PO "or" (3) the product can be purchased. (1) and (2) cannot be true at the same time.

Awatar
Antoine Huvelle (ahu)
Najlepsza odpowiedź

Some update for Odoo 16 as the datamodel changed slightly:

domain="[('seller_ids.partner_id','=',parent.partner_id),('purchase_ok', '=', True), '|', ('company_id', '=', False), ('company_id', '=', parent.company_id)]"

Seems to work in terms of limiting the access to only the product sold by this supplier.

1
Awatar
Odrzuć
Gulraiz Raza

Hello Ray & Antoine, hope you are keeping well.
I am new Odoo user, just wanted to say thanks for your help.
I was struggling with this for a long time and finally I got it today :)
I found clues to the problem in both of your answers and that is how it became possible for me. So yeah, thanks once again.

Here I would like to share how I did it! I thought this might be useful for new avid users.

First clue to the problem was knowing that you had to change the field domain code, in this case the product field domain code, Ray was explicit about it, as to where to find it. That was such a great help!!!!! That got me going. Secondly, notice he was also clear that the code had to be ADDED and not changed, (point that I completely missed :) and went about trying to changing the code, good luck with that!!! So, this is something really to watch out)

Time to jump to Antoine's code (because its applicable to current version), he got the code right (Thank you, Antoine) however, he was not explicit like Ray. So knowing that you need to ADD the code as an extension and not changing the already
existing code is the solution.

Finally here is my complete working domain code (the existing plus the Antoine's extension)
domain="[('purchase_ok', '=', True), '|', ('company_id', '=', False), ('company_id', '=', parent.company_id), ('seller_ids.partner_id','=',parent.partner_id),('purchase_ok', '=', True), '|', ('company_id', '=', False), ('company_id', '=', parent.company_id)]"/>

To edit the product form, here is step by step instructions;
>First enable the developers mode
> then go to the RFQ form page
> click on the developer mode mark next to chat
> on the pop up menu look for edit view form and click to open it
> a new window will open
> on the Architecture tab, scroll down to row 90 & 115 where you will find the required field: product_id
> scroll to the right further up the columns up you will find the domain code where it will say (domain=) this is where you copy paste the above code (remember to change on both row 90 and 115) > save and go back to RFQ > its done!

Still learning and hoping to progress! please correct if I am wrong!

Ricardo Gross
Autor

Hi Gulraiz, good explanation, but still incomplete, because if for some reason, you have to do an update of the purchase module or a base upgrade, your changes will be lost, so it would be important to add the steps:
- go to settings->technical->views
- open the view "purchase.order.form"
- in developer tools open -> view metadata and by clicking on top (false) change the value of No Update to "true (change)"
so your changes will not be lost in an update

Gulraiz Raza

Yes Ricardo, when I made the change, system did display a message window saying that this change will not last an update, it talked about making the changes in the inherit view but I did not know what to do. So I did what you said, and that makes sense. While I still don't fully appreciate the different views but I think I am beginning to understand some bit :) Thank you so much once again. Good day to all, Later.

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ść
Vendor tax access to users in products purchase tab
purchase product vendor taxes
Awatar
Awatar
2
sie 24
1538
How to apply Vendor discount for specific product in purchase side?
purchase product vendor Discount
Awatar
Awatar
Awatar
2
gru 23
2588
Vendor Pricelist on Products isn't opening in new window (v14.0)
purchase product vendor pricelist
Awatar
Awatar
2
mar 21
3466
V13 - How to see the products that a vendor sell to us, from the vendor view. Rozwiązane
product vendor
Awatar
Awatar
1
gru 22
3109
Assign vendor to purchase order (EE 14)
purchase vendor
Awatar
Awatar
1
gru 22
2850
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