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

I have a custom field in res.partner to indicate whether they like to get their invoices via E-Mail or via post. Now I want this information to show in the TreeView of the invoices as a new column. 


<tree colors="blue:state == 'draft';black:state in ('proforma','proforma2','open');gray:state == 'cancel'" string="Invoice">
<field name="partner_id" groups="base.group_user"/>
[...]
<field name="amount_total" sum="Total Amount"/> 
<field name="partner_id.x_invoice_by"/>
<field name="state"/>
</tree>

View account.invoice.tree


This results in an error (Field "partner_id.x_invoice_by" does not exist). I tried to include the information with a reference field with this selection: [('res.partner', 'partner_id.x_invoice_by')] , but had no luck either, the column appears, but is empty for all invoices.

EDIT: I'm using Odoo 8.0 if that matters


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

Hello,

you can use related="product_id.x_invoice_by" attribute, in the definition of a new field in the account.invoice

e.g:

your_name: fields.Char(related="product_id.x_invoice_by", string="Your Name")

then use this field in the tree view.

you can check Related fields section in this documentation 

Thanx

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
0
thg 6 22
612
0
thg 7 20
4509
0
thg 3 19
3496
0
thg 3 15
4423
2
thg 2 24
2607