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

ODOO 18.3 create vendor bill, upload vendor bill

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
purchaseaccounting
2 Odpowiedzi
1026 Widoki
Awatar
Ettore Alberto Pietro Lampertico

Vendor Bill can nomore be created by the purhcase app,

this for me is an important regression and move from a lean approach to a silos approach.

the purchase office is the responsible with relation with supplier.

It interacts with the supplier in handling all the aspect. Including price, quantity and payment

if the draft vendor bill is created by the buyer, it can reflect all those interactions.

when the real bill arrives, typically to accounting, the accounting can match it with the draft.

if the vendor bill is created by accounting then we retuns to have accounting people asking to the buyer explanation on differences.

Another point is that with exception of very small organization the vendor bill are sent to the accounting office or are left to logistic and not sent to buyer. So, the upload vendor bill button is not where it is needed.

there si any way to restore the create vendor bill button in purhcase order?

0
Awatar
Odrzuć
Awatar
Ray Carnes (ray)
Najlepsza odpowiedź

UPDATE: This is no longer necessary, simply select the Purchase Order in List View and use the Create Bills button:




ORIGINAL ANSWER:

Via Odoo Studio, you can add a button to the Purchase Order that creates the Bill.


1. Create the following Server Action:

# code updated to add Vendor (which will add Payment Terms)

bill = env['account.move'].create({
    'move_type': 'in_invoice',
'partner_id': record.partner_id.id,
})

bill._add_purchase_order_lines(record.order_line)

action = {
        "type": "ir.actions.act_window",
        "res_model": "account.move",
        "res_id": bill.id,       
        "view_mode": "form",       
        "target": "current",     
    }


2. Add a New Button to the Purchase Order Form View:



Your Odoo Consultant or Odoo Partner can help you if you need support with this customization.

0
Awatar
Odrzuć
Ettore Alberto Pietro Lampertico
Autor

Thank you.
I hilight again this point to ODOO team, It is a sustantial change in the workflow,
the change on the workflow have to be an option, and the previous way have to be kept as default, at least in the update of the release.

Ettore Alberto Pietro Lampertico
Autor

I have tested your code,
it does not autofill the following fields
Referece, payment reference, and most important payment terms.

Ray Carnes (ray)

I updated the code to add the Vendor, which will also bring over the Payment Terms. Reference and Payment Reference are not set by the Odoo 18.0 Create Bill button - these normally come from the Vendor. You are free to extend this example to add more information on the Bill.

Ettore Alberto Pietro Lampertico
Autor

Thank you, unfortunately seems that it is fetching the payment terms from the vendor. they can be different on the specifc purchase order

Ray Carnes (ray)

Please see my updated answer, use the CREATE BILLS button from the List instead

Ettore Alberto Pietro Lampertico
Autor

Thank you Ray,
it is something and is good in some cases having a batch creation, It would be great to have a status that tell that there is something to invoice
But Buyers are responsible, they have to create and view the invoice, they may have something to add on it expecially in case of delay, anticipation or non conformity

Awatar
Cybrosys Techno Solutions Pvt.Ltd
Najlepsza odpowiedź

Hi,


You’ve highlighted what feels like a regression in Odoo’s workflow: in recent versions, vendor bills can no longer be created directly from the Purchase app. Traditionally, buyers—who manage the supplier relationship, prices, and quantities—could draft the vendor bill themselves. This allowed accounting to later validate the bill against what was agreed with the supplier, reducing back-and-forth.


Now, with vendor bills created only by the accounting team, it shifts responsibility away from the buyers and creates inefficiency. Accounting staff may have to chase buyers to resolve discrepancies, which undermines the lean, end-to-end approach where purchase officers managed the whole supplier process.


You also point out a practical issue: in most organizations, vendor bills are received directly by the accounting office (or sometimes logistics), not by buyers. Yet the “Upload Vendor Bill” function is located where the buyer doesn’t typically work. This creates friction, as the functionality isn’t aligned with the real-life flow of documents between departments.


In short: the change moves Odoo from a lean, integrated workflow to a more siloed approach, where purchase and accounting are less connected, creating unnecessary inefficiencies.


Hope it helps


0
Awatar
Odrzuć
Ettore Alberto Pietro Lampertico
Autor

Thanks to highlight properly.

I strongly suggestvto make pressure on ODOO to review this responsability shift.

I will suggest my partner not to move to 18.3 or 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ść
Configuracion de odoo 18 para trabajar con anticipos de ordenes de compra (Localizacion USA)
purchase accounting
Awatar
0
lis 25
96
Can I allow user to enter line-item extended price for Vendor Bills? Odoo 19
purchase accounting
Awatar
Awatar
Awatar
2
lis 25
296
odoo18 down payment
purchase accounting
Awatar
Awatar
Awatar
3
paź 25
2774
how to restrict the Employee from viewing the customer and vendor bill and payments and they only can do is they can genrate and create the new bills
purchase accounting
Awatar
Awatar
Awatar
4
paź 25
1131
How can I manage Landed Costs in company currency?
purchase accounting
Awatar
Awatar
1
wrz 25
856
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