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

I thought I had seen a post about making a field read only if a certain condition were true, but now I can't find that post.  This is what I'm trying:

<field name="price_unit" attrs="{'readonly': ['product_id.name_template','!=','Shipping']}"/>

(This is in the sale order lines tree.)  I'm getting this error:

Error: Unknown field S in domain ["product_id.name_template","!=","Shipping"]

Do I just have a syntax problem, or am I just going about this the wrong way?

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

You getting error because you've used dot notation to access other fields then actually presented in the view ( you can't use: ['product_id.name_template','!=','Shipping']  you can use only: ['product_id','!=','something'] ), as this is parsed at client side you can use only those fields taht are presented in the view. So in order to get it worked, you can add to the model a relational field that points to 'product_id.name_template' than add this field as invisible field to the view and you'll be able to to use this field in the condition like this: ['name_template_related','!=','Shipping']

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

Ah, knowing that it's client-side helps. Thanks!

Câu trả lời hay nhất

'name_template' : fields.related('product_id','name_template', type='char', string='Name Template',store=True),

Create this related field field in the sale.order.line  .py file and make the field as invisible in the view.

Just checks:

attrs="{readonly': [('name_template','!=','Shipping')]}"

( Note:

In v8 you can use this:

name_template= fields.Char(related='product_id.name_template', store=True, readonly=True) )

This can help you

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

Thanks. Looks like 'Char' shouldn't be capitalized for v8, though.

How can I make a field readonly in python code? I need to make one of the one2many field as readonly by condition

Câu trả lời hay nhất

Try this:

[('product_id.name_template','!=','Shipping')]

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

Well, I get a different error now, so I suppose that's progress. It's a field not found error, so I guess I just have to figure out how to get the product name from the sales order line. The product_id field links to the product.product table, so why can't it evaluate the name_template field value?

@Jeff, check @Temur's answer. The product_id field in this situation (which happens in javascript) will only provide you with the database ID and thus cannot be accessed using dot notation.

Tác giả

Got it working, thanks!

Bài viết liên quan Trả lời Lượt xem Hoạt động
3
thg 12 23
91195
3
thg 9 21
5194
1
thg 9 15
9012
4
thg 8 25
5542
3
thg 5 24
6100