Merge lp:~openerp-dev/openobject-addons/6.1-opw-580329-msh into lp:openobject-addons/6.1

Proposed by Mohammed Shekha(Open ERP)
Status: Approved
Approved by: Naresh(OpenERP)
Approved revision: 7027
Proposed branch: lp:~openerp-dev/openobject-addons/6.1-opw-580329-msh
Merge into: lp:openobject-addons/6.1
Diff against target: 12 lines (+1/-1)
1 file modified
hr_attendance/wizard/hr_attendance_bymonth_view.xml (+1/-1)
To merge this branch: bzr merge lp:~openerp-dev/openobject-addons/6.1-opw-580329-msh
Reviewer Review Type Date Requested Status
OpenERP Core Team Pending
Review via email: mp+129142@code.launchpad.net

Description of the change

Hello,

Fixed the usability issue in year field of view_hr_attendance_month wizard, field is integer and displaying year so set widget=char otherwise thousand and decimal seperator will applied on year.

Demo :- Human Resources -> Employee -> Attendance by Month, here you can see year value is thousand separated.

Thanks.

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

Hello,

This bug was qualified as Confirmed on Trunk (means still existing and reproducible). A Merge Proposal for trunk was created to fix it. Here is the link to follow the MP on Launchpad https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-opw-580329-port-mma/+merge/135066 and be informed once it's been merged in trunk: ... If this Merge Proposal could not be merged in v6.1 at the release of v7.0, it will be closed.

Thanks,
Naresh Soni

Unmerged revisions

7027. By Mohammed Shekha(Open ERP)

[FIX]Fixed the usability issue in year field of view_hr_attendance_month wizard, field is integer and displaying year so set widget=char otherwise thousand and decimal seperator will applied on year.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'hr_attendance/wizard/hr_attendance_bymonth_view.xml'
2--- hr_attendance/wizard/hr_attendance_bymonth_view.xml 2011-11-16 11:58:10 +0000
3+++ hr_attendance/wizard/hr_attendance_bymonth_view.xml 2012-10-11 10:23:21 +0000
4@@ -9,7 +9,7 @@
5 <field name="arch" type="xml">
6 <form string="Print Attendance Report Monthly">
7 <field name="month"/>
8- <field name="year"/>
9+ <field name="year" widget="char"/>
10 <newline/>
11 <separator colspan="4"/>
12 <button special="cancel" string="Cancel" icon='gtk-cancel'/>