Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何获取 openerp 服务器时间?我有一个调度程序来处理我确认的记录。但我只想确认确认日期加上5分钟小于当前openerp服务器时间的记录。因为我确认的记录应该只在 5 分钟后处理。
标准的 Python 方法是:
from datetime import datetime current_time = datetime.now()
查看标准 Python 文档,了解timedelta如何使用 5 分钟的差异轻松实现。
timedelta
尝试这个:
fields.datetime.now()