Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
1555 Vizualizări

I am attempting to pull data from one Field named date_order (in Model sale.order) into Model sale.order.line.

Below is the current code from the view as it exists.

Is it possible to pull in the Field named date_order from Model sale.order into this view?


I have tried different ways to get my example code in here, but have been unsuccesful.

It is either blank when I save it or deemed Forbidden when I paste it in.

Imagine profil
Abandonează
Autor

Cybrosys Techno Solutions...
Your solution solved my issue. But I don't have enough Karma to mark it as solved.

Cel mai bun răspuns

Hi,

I think you are trying pass the sale.order date to another model sale.order.line to achieve this use related:

from odoo import models, fields

class SaleOrderLine(models.Model):
    _inherit = 'sale.order.line'

order_date = fields.Datetime(related='order_id.date_order', string='Order Date')


In the XML View:

<record model="ir.ui.view" id="sale_order_line_view_inherit">
<field name="name">sale.order.line.view.inherit</field>
<field name="model">sale.order.line</field>
<field name="inherit_id" ref="sale.view_order_line_tree"/>

    <field name="arch" type="xml">
<xpath expr="field[@name='price_unit']" position="after">
            <field name="order_date"/> </xpath>
    </field>
</record>



Hope it helps


Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
0
dec. 24
655
1
iun. 23
11590
0
ian. 23
2347
2
sept. 20
3133
6
sept. 20
28661