跳至内容
菜单
此问题已终结
1 回复
4949 查看

I want to make a field required, but to not break the workflow from before the field was required. I want to make it required only after a specific date.

<field name="create_date" invisible="1"/>
<field name="customer_answer" nolabel="1" attrs="{'required': [('create_date', '&gt;', '2019-11-18 8:00:00')]}"/>

I've tried it with the above example and with one with '>' but it doesn't work. Can I even do this?


形象
丢弃
最佳答案

If I'm not mistaken 'datetime' is not passed to form views (only to search views). So, the simpliest way to achieve your goal is to calculate the criteria in Python. Something like:

def _compute_hide_answer(self):
 to_compare_date = fields.Datetime.from_string('2019-11-18 8:00:00') # date might have different formar
for record in self:
record.hide_answer = record.create_date < to_compare_date

hide_answer = fields.Boolean(compute=_compute_hide_answer,)


<field name="hide_answer" invisible="1"/>
<field name="customer_answer" nolabel="1" attrs="{'required': [('hide_answer', '=', False)]}"/>


形象
丢弃
编写者

yeah... I know that I can make it this way, but I didn't want to change the python code/model. Wanted to do it in the view.

I'm afraid it is not possible in that way. In search view you can use datetime.strftime, but it form view it is not available (If I'm not mistaken - otherwise something like [('create_date', '&gt;', datetime.strftime('2019-11-18 8:00:00'))] should work.

编写者

Yeah... you're right. I've to do it in python.

相关帖文 回复 查看 活动
0
6月 19
3316
1
4月 19
4163
2
11月 18
5183
1
7月 17
14529
1
12月 16
7857