[FIX] project_mrp yaml test case fix for procurment date vs date_deadline

bzr revid: jam@tinyerp.com-20130326195400-pphgliizzzkfcruk
This commit is contained in:
Jigar Amin 2013-03-27 01:24:00 +05:30
parent e5f8921f5f
commit 78a8766861
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
assert (not project and not account) or project.analytic_account_id == account, "Project does not correspond."
planned_hours = self._convert_qty_company_hours(cr, uid, procurement, context=context)
assert task.planned_hours == planned_hours, 'Planned Hours do not correspond.'
assert datetime.strptime(task.date_deadline, '%Y-%m-%d') == datetime.strptime(procurement.date_planned, '%Y-%m-%d %H:%M:%S'), 'Deadline does not correspond.'
assert datetime.strptime(task.date_deadline, '%Y-%m-%d') == datetime.strptime(procurement.date_planned[:10], '%Y-%m-%d'), 'Deadline does not correspond.'
if procurement.product_id.product_manager:
assert task.user_id.id == procurement.product_id.product_manager.id, 'Allocated Person does not correspond with Service Product Manager.'
-