Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
2317 Переглядів

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.

Аватар
Відмінити
Автор

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

Найкраща відповідь

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


Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
0
груд. 24
1279
1
черв. 23
12304
0
січ. 23
3005
2
вер. 20
3980
6
вер. 20
29401