Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

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

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

How to connect button with function?

Naroči se

Get notified when there's activity on this post

This question has been flagged
functionforminheritbutton
3 Odgovori
20899 Prikazi
Avatar
arcull

Hi everyone.

I'm trying to put a new button on sales invoice which will print my customized version of invoice. So I've created new addon"my" and now need to connect this button click with function in "my" module. Can you please suggest, how can I refernce function in my model when hitting my new print button. The "print_invoice_my" refers to account.invoice model, while it should refernce to "my" model. Therefore I get an error when trying to run, it says it can not find  "print_invoice_my" in account.invoice.Here is my xml:

<openerp>
<data>
<record id="invoice_form_my" model="ir.ui.view">
<field name="name">account.invoice.form.my</field>
<field name="model">account.invoice</field>
<field name="inherit_id" ref="account.invoice_form"/>
<field name="arch" type="xml">
<button name="invoice_print" position="after">
<button type="object" name="print_invoice_my" string="my Invoice"/>
</button>
</field>
</record>
</data>
</openerp>

Much thanks, Arcull

1
Avatar
Opusti
Avatar
Anil Kesariya
Best Answer

Hi Arcull,


Make sure you have the method or definition with this name print_invoice_my inside your account.invoice model,

When your button type="object" that means odoo framework will look for the method inside model provided on same view, with button name value.



Hope this might help


Regards,

Anil.

4
Avatar
Opusti
arcull
Avtor

Thanks Anil. I don't want to modify existing model. I will inherit account.invoice model, but don't know how will my xml for custom invoice then look like? I mean the tags:model and inherit_id. Thanks for your help.

Avatar
Temur
Best Answer

You've to define print_invoice_my python function in account.invoice model, because of name="print_invoice_my" the function with name print_invoice_my from the corresponding model (account.invoice in your case) is being called and as you have not defined it, you've got above error.



UPDATE:

if you're interested in changing view of report itself, or add additional fields to it, then you should inherit or change the report view defined here: https://github.com/odoo/odoo/blob/dc48744bf7438761e1f25d411ec61755f74c60df/addons/account/views/report_invoice.xml#L4


for example, if you add new field in account.invoice, named my_field, then something like this should do the trick:

<template id="report_invoice_document" inherit_id="account.report_invoice_document">

<xpath expr="//div/div/div/address" position="after">

<span t-field="o.my_field" /> 

</xpath> </template>

this way, "my_field" is added to the printed invoice.

0
Avatar
Opusti
arcull
Avtor

Thanks Temur, but the point is, that I don' want to adjust the original account.invoice model, I want to inherit it in my module and add the function there. How can I achieve that? Thanks again.

Temur

So mean I. It's correct, you must inherit account.invoice model in your module and define your function print_invoice_my in the inherited model, but you're actually extending the existing account.invoice model, and so defining function in it. I just skipped over the details in my answer

arcull
Avtor

Thanks Temur. Will do that, but how will my xml for custom invoice then look like? I guess account.invoice will change to my. What about the "inherit_id" tag? Thanks.

Temur

No, there is nothing to change in XML, account.invoice will stay same because you'll extend the account.invoice model by "Extension" inheritance, see documentation at https://www.odoo.com/documentation/8.0/reference/orm.html#inheritance-and-extension , there is explanation of a different inheritance approach, you'll need to apply the "Extension" one (scroll down a bit at the referred page); "inherit_id" refers to the XML record you're extending in your xml, it does not need to be changed either.

arcull
Avtor

Thank you Temur, will try to impelment this and report back.

arcull
Avtor

Unfortunatelly I can't make the inheritance to work. Please see my post at https://www.odoo.com/forum/help-1/question/cant-inherit-account-invoice-96458

Temur

Answered... We do not use _name or we use same _name as in a parent class in case of extension inheritance.

Temur

updated with view extension example... If you're going to customize invoice then it may halp.

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

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

Prijavi
Related Posts Odgovori Prikazi Aktivnost
module without fields?
function inherit column button
Avatar
Avatar
Avatar
2
mar. 15
5317
Inherit form view from a predefined module.
form inherit
Avatar
Avatar
1
mar. 15
4718
api request
function api button
Avatar
0
dec. 24
2031
How to Resolve the "Inherited view cannot have 'Groups' defined on the record" Error in Odoo?
form inherit odoo16
Avatar
Avatar
1
avg. 24
2888
Is it possible to choose the priority of an overload of a function ? Solved
function create inherit
Avatar
Avatar
2
jul. 25
5127
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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