Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

ODOO 18.3 create vendor bill, upload vendor bill

Odebírat

Get notified when there's activity on this post

This question has been flagged
purchaseaccounting
2 Odpovědi
1029 Zobrazení
Avatar
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
Avatar
Zrušit
Avatar
Ray Carnes (ray)
Nejlepší odpověď

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
Avatar
Zrušit
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

Avatar
Cybrosys Techno Solutions Pvt.Ltd
Nejlepší odpověď

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
Avatar
Zrušit
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

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
Configuracion de odoo 18 para trabajar con anticipos de ordenes de compra (Localizacion USA)
purchase accounting
Avatar
0
lis 25
123
Can I allow user to enter line-item extended price for Vendor Bills? Odoo 19
purchase accounting
Avatar
Avatar
Avatar
2
lis 25
299
odoo18 down payment
purchase accounting
Avatar
Avatar
Avatar
3
říj 25
2781
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
Avatar
Avatar
Avatar
4
říj 25
1132
How can I manage Landed Costs in company currency?
purchase accounting
Avatar
Avatar
1
zář 25
859
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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