Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
2916 Lượt xem

Hi, I'd like to show intrastat_id field that is on product form in account move (when creating invoices)

I'm inheriting it like this


class ProductTemplate(models.Model):
_inherit = 'account.move.line'
 
product_template_id = fields.Many2one('product.template')
intra_stat = fields.Many2one(related="product_template_id.intrastat_id", string='Intrastat #')

It shows nothing - blank field in lines. What am I doing wrong? I double checked if Intrastat is set on product.

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hello @Matija

Did you set a value for product_template_id in your account_move_line?

Otherwise, I think you don't have to create a new field 'product_template_id', you just have to set intra_stat field as related to product_id of account.move.line.

intra_stat = fields.Many2one(related="product_id.intrastat_id", string='Intrastat #')

Ảnh đại diện
Huỷ bỏ
Tác giả

You're right Samuel, this related="product_id.intrastat_id" works. Thank you for your help!

Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 5 23
2203
0
thg 6 22
1405
1
thg 9 23
2172
2
thg 4 23
6201
3
thg 12 19
5795