[IMP] analytic: When creating new contract, select the Template and dates Start and are now adapted accordingly to current time

bzr revid: qdp-launchpad@openerp.com-20121129142428-zpdy567efax0s5qb
This commit is contained in:
Quentin (OpenERP) 2012-11-29 15:24:28 +01:00
parent b75fde3773
commit 574f096fce
1 changed files with 7 additions and 2 deletions

View File

@ -20,8 +20,10 @@
##############################################################################
import time
from datetime import datetime
from osv import fields, osv
import tools
from tools.translate import _
import decimal_precision as dp
@ -199,8 +201,11 @@ class account_analytic_account(osv.osv):
return {}
res = {'value':{}}
template = self.browse(cr, uid, template_id, context=context)
res['value']['date_start'] = template.date_start
res['value']['date'] = template.date
from_dt = datetime.strptime(template.date_start, tools.DEFAULT_SERVER_DATE_FORMAT)
to_dt = datetime.strptime(template.date, tools.DEFAULT_SERVER_DATE_FORMAT)
timedelta = to_dt - from_dt
res['value']['date_start'] = fields.date.today()
res['value']['date'] = datetime.strftime(datetime.now() + timedelta, tools.DEFAULT_SERVER_DATE_FORMAT)
res['value']['quantity_max'] = template.quantity_max
res['value']['description'] = template.description
return res