我嘗試創建一個域過濾器應該是這樣的:Odoo域濾波不工作
(Followup date < today) AND (customer = TRUE OR user_id = user.id)
我做到了像以下:
[('follow_up_date', '<=', datetime.datetime.now().strftime('%Y-%m-%d 00:00:00')),['|', ('customer', '=', 'False'),('user_id', '=', 'user.id')]]
第一部分(時間過濾器)的偉大工程,如果它是獨立的,但是當我第二部分連接它像我的例子一樣上面它給了我這個錯誤:
File "/usr/lib/python2.7/dist-packages/openerp/osv/expression.py", line 308, in distribute_not
elif token in DOMAIN_OPERATORS_NEGATION:
TypeError: unhashable type: 'list'
出了什麼問題,我該如何表達我想要的域名過濾器?
感謝您對您的幫助提前:)