Merge PR #765 into 16.0

Signed-off-by thomaspaulb
This commit is contained in:
OCA-git-bot
2023-07-02 19:30:13 +00:00

View File

@@ -3,7 +3,7 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
import logging
from datetime import datetime
from datetime import datetime, timedelta
from psycopg2 import ProgrammingError
@@ -400,7 +400,7 @@ class BiSQLView(models.Model):
"numbercall": -1,
"interval_number": 1,
"interval_type": "days",
"nextcall": datetime(now.year, now.month, now.day + 1),
"nextcall": now + timedelta(days=1),
"active": True,
}