Merge lp:~openerp-dev/openobject-addons/6.0-opw-573814-han into lp:openobject-addons/6.0

Proposed by Hardik Ansodariya (OpenERP)
Status: Approved
Approved by: Naresh(OpenERP)
Approved revision: 5174
Proposed branch: lp:~openerp-dev/openobject-addons/6.0-opw-573814-han
Merge into: lp:openobject-addons/6.0
Diff against target: 12 lines (+1/-1)
1 file modified
hr_timesheet_sheet/hr_timesheet_sheet.py (+1/-1)
To merge this branch: bzr merge lp:~openerp-dev/openobject-addons/6.0-opw-573814-han
Reviewer Review Type Date Requested Status
Naresh(OpenERP) (community) Approve
Review via email: mp+102273@code.launchpad.net

Description of the change

Hello,

I have removed readonly=True form attendance_ids field in hr_timesheet_sheet.py in order to make
attendance editable from timesheetby considering case-573814.

Thanks

To post a comment you must log in.
Revision history for this message
Naresh(OpenERP) (nch-openerp) :
review: Approve

Unmerged revisions

5174. By Hardik Ansodariya (OpenERP)

[Fixed] hr_timesheet_sheet: remove readonly=True from Attandenct_ids(MAintanace Case:573814)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'hr_timesheet_sheet/hr_timesheet_sheet.py'
2--- hr_timesheet_sheet/hr_timesheet_sheet.py 2011-11-23 09:52:46 +0000
3+++ hr_timesheet_sheet/hr_timesheet_sheet.py 2012-04-17 09:52:23 +0000
4@@ -269,7 +269,7 @@
5 'draft': [('readonly', False)],
6 'new': [('readonly', False)]}
7 ),
8- 'attendances_ids' : one2many_mod2('hr.attendance', 'sheet_id', 'Attendances', readonly=True,),
9+ 'attendances_ids' : one2many_mod2('hr.attendance', 'sheet_id', 'Attendances'),
10 'state' : fields.selection([
11 ('new', 'New'),
12 ('draft','Draft'),