コンテンツへスキップ
メニュー
この質問にフラグが付けられました
2 返信
6834 ビュー

If you too hate the display of this forum, please refer:
https://gist.github.com/blaggacao/459255636f8abd8afe20

domain = ('foofield', 'operator', barvalue)

  • In my case barvalue IS a list.
  • I want foofield to be a list. More specifically, I want foofield to contain the values (as a list) of the many2many field 'foofield'
  • I want operator do define foofield as an entire subset of barvalue. (best guess: 'in')

I know this is probably not possible, so workaround, conceptual help would be nice...

アバター
破棄
著作者

Part of the Answer: https://github.com/odoo-colombia/odoo_advanced_tax_engine/blob/89b71c7ec836e69fb5eabdb24bc0491a93b60096/account_fiscal_allocation_rule/models/fiscal_allocation_rule.py#L147-L168 Still open: https://github.com/odoo-colombia/odoo_advanced_tax_engine/blob/89b71c7ec836e69fb5eabdb24bc0491a93b60096/account_fiscal_allocation_rule/models/fiscal_allocation_rule.py#L182-L184

著作者

Hope with this rewrite of the question, it is more understandable... :) Thanks.

最善の回答

David,

The domain you wrote should simply work because the [(field, operator, value)] in your case is [] in [] and for many2many fields, this should suffice.

Do you face any errors, warnings?

Thanks.

アバター
破棄
著作者 最善の回答

Actually, https://github.com/odoo/odoo/blob/1f20f61ab4f6acf79f4db6ba9a17c1282014ef5f/openerp/osv/expression.py#L932-L971 supports your answer very well.

Errors might raise from different sources while debugging. I somehow was prone to believe this doesn't work because documentation (https://doc.openerp.com/v6.0/developer/2_5_Objects_Fields_Methods/methods.html/) states: 

field_name must be a valid name of field of the object model, possibly following many-to-one relationships using dot-notation, e.g 'street' or 'partner_id.country' are valid values

 

(explicitely states many2one but doesn't mention many2many )

アバター
破棄
関連投稿 返信 ビュー 活動
0
2月 25
18
1
3月 15
3725
0
3月 15
3778
3
5月 24
5342
1
12月 20
3283