Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
6 Ответы
53749 Представления

Hello. Is it possible to extend a model via _inherit and extend it with a further inheritance?

For instance, i have made a mixin AbstractModel for tracking and other functions. I'd like to extend sale.order so that it inherits my misc-in. Can this be done?

Аватар
Отменить
Лучший ответ

Yes it is possible to do what you're asking.

class MyMixedInSaleOrder(models.Model):
    _name = 'sale.order'
    _inherit = ['sale.order', 'my.mixin']


Аватар
Отменить
Лучший ответ

In Odoo/OpenERP we can inherit or use existing modules object/class/model and views. We can also inherit single field of existing modules. The question is why we need such inheritance.

The purpose of inheritance or why we need inheritance is given below:

  1. To change attributes of some fields which exists on existing/custom model (e.g. making fields readonly,invisible)

  2. To add/modify/delete old or new fields in existing/custom model (e.g. Product, Sales, HR, Fleet Management, Attendance modules model etc)

  3. We can also add buttons in already existing/custom model (form and tree) view by using inheritance

To model inheritance

class groups(models.Model):
 _inherit = 'res.groups'
 # we inherited res.groups model which is Odoo/OpenERP built in model and created two fields in that model.
 field_1 = fields.Char(required=True,string="Field One")
 field_2 = fields.Boolean(default=False,string="Field Two") 

To view inheritance

<openerp>
    <data>
        <record model="ir.ui.view" id="res_group_form_view_inherited">
            <field name="name">res.group.form.view.inherited</field>
            <field name="model">res.groups</field>
            <field name="inherit_id" ref="base.view_groups_form" />
            <!-- <field name="groups_id" eval="[(6, 0, [ref('obe_core.obe_coordinator')])]"/> -->
            <field name="priority" eval="15"/>
            <field name="arch" type="xml">

                <xpath expr="//field[@name='name']" position="after">
                    <field  name="field_1"/>
                </xpath>                
                
                <xpath expr="//field[@name='user_name']" position="after">
                    <field  name="field_2"/>
                </xpath>        

            </field>                               
        </record>
    </data>
</openerp> 

To understanding of code with description please visit: http://learnopenerp.blogspot.com/2018/01/inheritance-in-models-and-views.html

Аватар
Отменить
Лучший ответ

Nice post.

https://360digitmg.com/python-typeerror-nonetype-object-is-not-subsriptable

Аватар
Отменить
Лучший ответ

how can i add more fields to inherit model

Аватар
Отменить

Hi,

just proceed as Sehrish said above.

class MyModel(models.Model):

_inherit = 'inherited.model'

field_1 = fields.Char()

field_2 = fields.Char()

field_x = fields.Char()

...

Related Posts Ответы Просмотры Активность
1
дек. 19
3560
0
авг. 19
3453
2
июл. 24
14137
1
нояб. 22
3255
1
июл. 21
8344