콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
1559 화면

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


아바타
취소
관련 게시물 답글 화면 활동
0
12월 24
658
1
6월 23
11598
0
1월 23
2348
2
9월 20
3135
6
9월 20
28667