Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
2 Odgovori
10167 Prikazi

I want a datetime value to be inherited by default from other datetime value in the same view, but from other model.

Sale order lines will have a datetime field that, by default, take their value from a datetime field at sale_order model.

Anybody helping me?

I try adding _defaults when adding extra field as in:

class new_sale_order_line(osv.Model):

  
    _inherit = 'sale.order.line'
    _columns = {
        'date_finish': fields.datetime('Fecha fin'),
    }
    _defaults = {
        'date_finish' : 'inherited value????'

   }

Avatar
Opusti
Best Answer

Hello David,

You can do it with help of XML by assigning parent model field value to child as default value with the help of context.

Example:

<record id="view_order_form" model="ir.ui.view">
    <field name="name">sale.order.form</field>
    <field name="model">sale.order</field>
    <field name="arch" type="xml">
        <form string="Sales Order" version="7.0">
            <field name="name" />
            <field name="date_finish" />
            <field name="order_line" context="{'default_date_finish' : date_finish}">
                <form string="Sales Order Lines">
                    <field name="product_id" />
                    <field name="date_finish" />
                </form>
            </field>
        </form>
    </field>
</record>

Thanks.

 

Avatar
Opusti
Avtor Best Answer

Thanks Nishant, It works!!! Thank you very much!

Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
2
maj 23
2097
2
nov. 21
7848
1
mar. 17
8193
0
mar. 15
5145
1
nov. 24
3753