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

I,m trying to add field in sale order
this is code of my class:
from odoo import models , fields,api,_
class SaleOrder(models.Model):
_name='sale.order'
_inherit = 'sale.order'
warehouse_id=fields.Many2one("stock.warehouse")

and i inherit the view by this code and i added the field: 

sale.order.inherit

sale.order

This error occurs:

Element '' cannot be located in parent view

View error context:
{'file': 'd:\\odoo16\\server\\odoo\\custom\\asmaa\\views\\sale_order.xml',
 'line': 2,
 'name': 'sale.order.inherit',
 'view': ir.ui.view(1622,),
 'view.model': 'sale.order',
 'view.parent': ir.ui.view(795,),
 'xmlid': 'view_sale_form_inherit'}


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

Hi,
Try this:
Define field in python level 


To make this field in sale order view, you need to create a new view that inherits from the original sale order form view and adds the new field. Here's an example of how to do that in XML:


Hope this will help you
Thanks

Аватар
Отменить
Related Posts Ответы Просмотры Активность
1
апр. 24
1957
3
нояб. 24
4148
2
июл. 23
3498
3
июн. 23
2386
3
апр. 24
4186