[MERGE] merged fixes on yaml tests in hr_timesheet_invoice and hr_timesheet_sheet

bzr revid: qdp-launchpad@openerp.com-20110506112609-dtg5n9bfazywzkii
This commit is contained in:
Quentin (OpenERP) 2011-05-06 13:26:09 +02:00
commit b1829b7caa
2 changed files with 11 additions and 12 deletions

View File

@ -56,7 +56,7 @@
for invoice in invoice_id.invoice_line:
product = invoice.product_id.id
product_exp = data['product']
product_exp = data['product'][0]
assert product == product_exp
assert aline.invoice_id, "Invoice created, but analytic line wasn't updated."

View File

@ -27,7 +27,7 @@
gender: male
marital: hr.hr_employee_marital_status_single
name: Mark Johnson
user_id: base.user_root
user_id: base.user_demo
-
I create new Timesheet journal for employee.
@ -62,14 +62,13 @@
-
I create my current timesheet for "Mark Johnson".
-
-
!record {model: hr_timesheet_sheet.sheet, id: hr_timesheet_sheet_sheet_deddk0}:
date_current: !eval "'%s-05-26' %(datetime.now().year)"
date_from: !eval "'%s-05-01' %(datetime.now().year)"
date_to: !eval "'%s-05-31' %(datetime.now().year)"
name: !eval "'Week-22(%s)' %(datetime.now().year)"
date_current: !eval time.strftime('%Y-%m-%d')
date_from: !eval time.strftime('%Y-%m-01')
name: !eval time.strftime('%U')
state: new
user_id: base.user_root
user_id: base.user_demo
employee_id: 'hr_employee_employee0'
-
Now , at the time of login, I create Attendances and perform "Sign In" action.
@ -77,7 +76,7 @@
!record {model: hr.attendance, id: hr_attendance_0}:
action: sign_in
employee_id: 'hr_employee_employee0'
name: !eval "'%s-05-26 10:08:08' %(datetime.now().year)"
name: !eval time.strftime('%Y-%m-%d')+' '+'%s:%s:%s' %(datetime.now().hour,datetime.now().minute,datetime.now().second)
-
At the time of logout, I create attendance and perform "Sign Out".
@ -85,7 +84,7 @@
!record {model: hr.attendance, id: hr_attendance_1}:
action: sign_out
employee_id: 'hr_employee_employee0'
name: !eval "'%s-05-26 15:10:55' %(datetime.now().year)"
name: !eval time.strftime('%Y-%m-%d')+' '+'%s:%s:%s' %(datetime.now().hour+3,datetime.now().minute,datetime.now().second)
-
I create Timesheet Entry for time spend on today work.
@ -94,7 +93,7 @@
!record {model: hr_timesheet_sheet.sheet, id: hr_timesheet_sheet_sheet_deddk0}:
timesheet_ids:
- account_id: account.analytic_sednacom
date: !eval "'%s-05-26' %(datetime.now().year)"
date: !eval time.strftime('%Y-%m-%d')
name: 'Develop yaml for hr module'
unit_amount: 3.00
amount: -90.00
@ -125,7 +124,7 @@
!record {model: hr_timesheet_sheet.sheet, id: hr_timesheet_sheet_sheet_deddk0}:
timesheet_ids:
- account_id: account.analytic_sednacom
date: !eval "'%s-05-26' %(datetime.now().year)"
date: !eval time.strftime('%Y-%m-%d')
name: 'Develop yaml for hr module'
unit_amount: 2.0
amount: -90.00