объект datetime.datetime не вызывается
в этом случае возникла проблема с датами. Я пытаюсь выполнить некоторые вычисления даты на основе дат начала и окончания, но по какой-то причине эти ошибки продолжают вызывать проблемы
Ошибка трассировки:
Error:
Odoo Server Error
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/odoo/src/odoo/odoo/http.py", line 639, in _handle_exception
return super(JsonRequest, self)._handle_exception(exception)
File "/home/odoo/src/odoo/odoo/http.py", line 315, in _handle_exception
raise exception.with_traceback(None) from new_cause
ValueError: <class 'TypeError'>: "'datetime.datetime' object is not callable" while evaluating
'action=model.update_all_project_history()'
Код:
if not date_start() > role.date_start.date() and role[index + 1] != False:
date_end = role.date_start - timedelta(days=1)
Я верю
if not
это может быть причиной этой проблемы.