[IMP] use tools.DEFAULT_SERVER_DATETIME_FORMAT

bzr revid: abo@openerp.com-20121105170318-fmq31jsjf1xriqnh
This commit is contained in:
Antonin Bourguignon 2012-11-05 18:03:18 +01:00
parent cf4f0a1021
commit 88f06c467c
1 changed files with 2 additions and 2 deletions

View File

@ -27,6 +27,7 @@ from operator import itemgetter
import math
import netsvc
import tools
from osv import fields, osv
from tools.translate import _
@ -217,11 +218,10 @@ class hr_holidays(osv.osv):
raise osv.except_osv(_('Warning!'),_('The start date must be anterior to the end date.'))
result = {'value': {}}
DATETIME_FORMAT = "%Y-%m-%d %H:%M:%S"
# No date_to set so far: automatically compute one 8 hours later
if date_from and not date_to:
date_to_with_delta = datetime.datetime.strptime(date_from, DATETIME_FORMAT) + datetime.timedelta(hours=8)
date_to_with_delta = datetime.datetime.strptime(date_from, tools.DEFAULT_SERVER_DATETIME_FORMAT) + datetime.timedelta(hours=8)
result['value']['date_to'] = str(date_to_with_delta)
# Compute and update the number of days