Skip to Content
Odoo Menu
  • Prisijungti
  • Išbandykite nemokamai
  • Programėlės
    Finansai
    • Apskaita
    • Pateikimas apmokėjimui
    • Sąnaudos
    • Skaičiuoklė (BI)
    • Dokumentai
    • Pasirašymas
    Pardavimai
    • CRM
    • Pardavimai
    • Kasų sistema - Parduotuvė
    • Kasų sistema - Restoranas
    • Prenumeratos
    • Nuoma
    Svetainės
    • Svetainių kūrėjimo įrankis
    • El. Prekyba
    • Internetinis Tinklaraštis
    • Forumas
    • Tiesioginis pokalbis
    • eMokymasis
    Tiekimo grandinė
    • Atsarga
    • Gamyba
    • PLM
    • Įsigijimai
    • Priežiūra
    • Kokybė
    Žmogaus ištekliai
    • Darbuotojai
    • Įdarbinimas
    • Atostogos
    • Įvertinimai
    • Rekomendacijos
    • Transporto priemonės
    Rinkodara
    • Socialinė rinkodara
    • Rinkodara el. paštu
    • SMS rinkodara
    • Renginiai
    • Rinkodaros automatizavimas
    • Apklausos
    Paslaugos
    • Projektas
    • Darbo laiko žiniaraščiai
    • Priežiūros tarnyba
    • Pagalbos tarnyba
    • Planavimas
    • Rezervacijos
    Produktyvumas
    • Diskucija
    • Patvirtinimai
    • IoT
    • VoIP
    • Žinių biblioteka
    • WhatsApp
    Trečiųjų šalių programos Odoo Studija Odoo debesijos platforma
  • Pramonės šakos
    Mažmeninė prekyba
    • Knygynas
    • Drabužių parduotuvė
    • Baldų parduotuvė
    • Maisto prekių parduotuvė
    • Techninės įrangos parduotuvė
    • Žaislų parduotuvė
    Food & Hospitality
    • Barai ir pub'ai
    • Restoranas
    • Greitasis maistas
    • Guest House
    • Gėrimų platintojas
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architektūros įmonė
    • Konstrukcija
    • Estate Managament
    • Sodininkauti
    • Turto savininkų asociacija
    Consulting
    • Accounting Firm
    • Odoo Partneris
    • Marketing Agency
    • Teisinė firma
    • Talentų paieška
    • Auditai & sertifikavimas
    Gamyba
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Įmonių dovanos
    Sveikata & Fitnesas
    • Sporto klubas
    • Akinių parduotuvė
    • Fitneso Centras
    • Sveikatos praktikai
    • Vaistinė
    • Kirpėjas
    Trades
    • Handyman
    • IT įranga ir palaikymas
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Aplinkos agentūra
    • Reklaminių stendų nuoma
    • Fotografavimas
    • Dviračių nuoma
    • Programinės įrangos perpardavėjas
    Browse all Industries
  • Bendrija
    Mokykitės
    • Mokomosios medžiagos
    • Dokumentacija
    • Sertifikatai
    • Mokymai
    • Internetinis Tinklaraštis
    • Tinklalaidės
    Skatinkite švietinimą
    • Švietimo programa
    • Scale Up! Verslo žaidimas
    • Aplankykite Odoo
    Gaukite programinę įrangą
    • Atsisiųsti
    • Palyginkite versijas
    • Leidimai
    Bendradarbiauti
    • Github
    • Forumas
    • Renginiai
    • Vertimai
    • Tapkite partneriu
    • Services for Partners
    • Registruokite jūsų apskaitos įmonę
    Gaukite paslaugas
    • Susiraskite partnerį
    • Susirask buhalterį
    • Susitikti su konsultantu
    • Diegimo paslaugos
    • Klientų rekomendavimas
    • Palaikymas
    • Atnaujinimai
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Gaukite demo
  • Kainodara
  • Pagalba

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

  • CRM
  • e-Commerce
  • Apskaita
  • Atsarga
  • PoS
  • Projektas
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
Pagalba

How to _inherit properly?

Prenumeruoti

Get notified when there's activity on this post

This question has been flagged
purchaseinheritpurchase_order_inherits
4 Replies
8021 Rodiniai
Portretas
Ashok Kumar Sahoo

I am modifying Purchase module to add a new field in purchase order lines. I have successfully added the code to create model and view the custom field. But unable to add the custom field to total amount of the P.O. line.

class customPo(object):

    _inherit="purchase.order"
    _name = 'customPo'

    def _amount_all(self, cr, uid, ids, field_name, arg, context=None):
        res = {}
        cur_obj=self.pool.get('res.currency')
        for order in self.browse(cr, uid, ids, context=context):
            res[order.id] = {
                'amount_untaxed': 0.0,
                'amount_tax': 0.0,
                'amount_total': 0.0,
            }
            val = val1 = 0.0
            cur = order.pricelist_id.currency_id
            for line in order.order_line:
               # val1 += line.price_subtotal
               val1 = val1 + line.data + line.price_subtotal
               for c in self.pool.get('account.tax').compute_all(cr, uid, line.taxes_id, line.price_unit, line.product_qty, line.product_id, order.partner_id)['taxes']:
                    val += c.get('amount', 0.0)
            res[order.id]['amount_tax']=cur_obj.round(cr, uid, cur, 42.0)
            res[order.id]['amount_untaxed']=cur_obj.round(cr, uid, cur, val1)
            res[order.id]['amount_total']=res[order.id]['amount_untaxed'] + res[order.id]['amount_tax']
        return res

        _columns = {
            'order_line': fields.one2many('purchase.order.line', 'order_id', 'Order Lines', states={'approved':[('readonly',True)],'done':[('readonly',True)]}),
            'amount_untaxed': fields.function(_amount_all, digits_compute= dp.get_precision('Account'), string='Untaxed Amount',
                store={
                    'purchase.order.line': (_get_order, None, 10),
                }, multi="sums", help="The amount without tax", track_visibility='always'),
            'amount_tax': fields.function(_amount_all, digits_compute= dp.get_precision('Account'), string='Taxes',
                store={
                    'purchase.order.line': (_get_order, None, 10),
                }, multi="sums", help="The tax amount"),
            'amount_total': fields.function(_amount_all, digits_compute= dp.get_precision('Account'), string='Total',
                store={
                    'purchase.order.line': (_get_order, None, 10),
                }, multi="sums",help="The total amount"),
        }
customPo()

class customPol(osv.osv):
    _inherit = 'purchase.order.line'
    # _name = 'something.notpurchase'
    _columns = {
        'data': fields.float('Unit Price', required=True, digits_compute= dp.get_precision('Product Price')),
    }

customPol()

I have kept the tax static as 42 so, I can know when the overridden method is called but it never happens.

My view file is the following.

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
        <record id="custom_purchse_wa" model="ir.ui.view">
            <field name="name">Custom Field New</field>
            <field name="model">purchase.order</field>
            <field name="inherit_id" ref="purchase.purchase_order_form"/>
            <field name="arch" type="xml">
                <xpath expr="/form/sheet/notebook/page/field[@name='order_line']/tree/field[@name='price_unit']" position="after">
                <field name="data" string="Custom field"/>
                </xpath>
            </field>
        </record>
</data>
</openerp>
1
Portretas
Atmesti
David Brilliant

Ok, just some general things that need to be changed here: First of all _columns looks like its under the indentation of your _ammount_all function. this needs to be in the scope of the object, not the function. Its good form to declare these at the beginning of your class.

Portretas
Simplify it!
Best Answer

Change this:

class customPo(object):

_inherit="purchase.order"
_name = 'customPo'

And do this:

class customPo(osv.osv):

_inherit="purchase.order"
#_name = 'customPo'
1
Portretas
Atmesti
Ashok Kumar Sahoo
Autorius

wow I missed osv.osv! but after this edit it doesnt work, still the method from purchase.py is being called not my custom code.

David Brilliant

Ashok, how were you expecting the method to be called? Is this an override of an existing method? or is it called on change of some field?

Ashok Kumar Sahoo
Autorius

it is override of existing method in purchase module. it is being called by the view <field name="model">purchase.order</field>

Portretas
Ashok Kumar Sahoo
Autorius Best Answer

The _columns was indented to be inside the method which didnt made any columns therby breaking the method, fixed the indentation add one more dependent method and it worked.

0
Portretas
Atmesti
Portretas
Mohamed Habib Challouf
Best Answer
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
        <record id="custom_purchse_wa" model="ir.ui.view">
            <field name="name">Custom Field New</field>
            <field name="model">purchase.order</field>
            <field name="inherit_id" ref="purchase.purchase_order_form"/>
            <field name="arch" type="xml">
                <xpath expr="/form/sheet/notebook/page/field/tree[@string='Purchase Order Lines']/field[@name='price_unit']" position="after">
                <field name="data" string="Custom field"/>
            </xpath>
        </field>
    </record>

</data> </openerp>

0
Portretas
Atmesti
Ashok Kumar Sahoo
Autorius

still not working, in fact no changes at all..

AJ Schrafel Paper Corp

ddi you run "update module" from the settings menu for your module?

Ashok Kumar Sahoo
Autorius

issue solved, the _columns was indented inside of the function and the fuction :/

Portretas
Ashif Abdulrahman
Best Answer

use this

class purchase_order_line(osv.osv):
    _inherit = 'purchase.order.line'
    _columns = {
        'data': fields.float('Unit Price', required=True, digits_compute= dp.get_precision('Product Price')),
    }

purchase_order_line()

and add this in xml

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
        <record id="custom_purchse_module_inherit" model="ir.ui.view">
            <field name="name">purchase.order.form</field>
            <field name="model">purchase.order</field>
            <field name="inherit_id" ref="purchase.purchase_order_form"/>
            <field name="arch" type="xml">
                <xpath expr="/form/sheet/notebook/page/field[@name='order_line']/tree[@string='Purchase Order Lines']/field[@name='price_unit']" position="after">
                <field name="data" string="Custom field"/>
            </xpath>
        </field>
    </record>

</data> </openerp>
0
Portretas
Atmesti
Ashok Kumar Sahoo
Autorius

Do you think changing names and ids will work?

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

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

Registracija
Related Posts Replies Rodiniai Veikla
edit due date after creating partial purchase order
purchase purchase_order
Portretas
0
geg. 22
3333
Purchase prototype products; What´s your solution?
purchase purchase_order
Portretas
0
liep. 24
2438
How to enable Source Document (field label) Origin (field name) Solved
purchase purchase_order
Portretas
Portretas
1
lapkr. 20
5192
Configuring Purchase Order Form and Report Solved
purchase purchase_order
Portretas
Portretas
1
spal. 20
5683
Show product default code in purchase order line Solved
purchase purchase_order
Portretas
Portretas
Portretas
Portretas
3
bal. 18
7967
Bendrija
  • Mokomosios medžiagos
  • Dokumentacija
  • Forumas
Atvirasis kodas
  • Atsisiųsti
  • Github
  • Runbot
  • Vertimai
Paslaugos
  • Odoo.sh talpinimas
  • Palaikymas
  • Atnaujinti
  • Pritaikytas programavimo kūrimas
  • Švietimas
  • Susirask buhalterį
  • Susiraskite partnerį
  • Tapkite partneriu
Apie mus
  • Mūsų įmonė
  • Prekės ženklo turtas
  • Susisiekite su mumis
  • Darbo pasiūlymai
  • Renginiai
  • Tinklalaidės
  • Internetinis Tinklaraštis
  • Klientai
  • Teisinis • Privatumas
  • Saugumas
الْعَرَبيّة 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 yra atvirojo kodo verslo programų rinkinys, kuris apima visas įmonės poreikius: CRM, El. Prekybą, Apskaitą, Atsargų, Kasų sistemą, Projektų valdymą ir kt.

Unikali Odoo vertės pasiūla – būti tuo pačiu metu labai lengvai naudojama ir visiškai integruota sistema.

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