Mayur Maheshwari(OpenERP) has proposed merging 
lp:~openerp-dev/openobject-addons/trunk-addons_issue_hr-mma into 
lp:openobject-addons.

Requested reviews:
  OpenERP Core Team (openerp)

For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-addons_issue_hr-mma/+merge/116408

Hello,

I have fixes the following addons issue related hr* module 

1].menu appraisal>Interview Request>  two times "Print Survey Button"
2].Create leave request and save it. then go to more and click "leave meeting" 
wizard it gives traceback.
3].Payslip >> Employee Payslip click on the "payslip computation button" gives 
traceback
4].Employee form view click on "payslip" button give traceback.
5].Open employee form view in Personal Information Tab add bank account number 
give traceback
6].menu configuration>payroll>salary rule open any rule gives traceback
7].hr_recruitment: Application form view click on Schedule Interview button 
create new Interview meeting save and then click on done button give traceback.
8].create meetings and save it gives traceback [date]

Thanks.
Mayur
-- 
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-addons_issue_hr-mma/+merge/116408
Your team OpenERP R&D Team is subscribed to branch 
lp:~openerp-dev/openobject-addons/trunk-addons_issue_hr-mma.
=== modified file 'base_calendar/__openerp__.py'
--- base_calendar/__openerp__.py	2012-07-20 12:12:46 +0000
+++ base_calendar/__openerp__.py	2012-07-24 06:47:34 +0000
@@ -22,7 +22,7 @@
 {
     "name": "Calendar Layer",
     "version": "1.0",
-    "depends": ["base", "base_status", "mail"],
+    "depends": ["base", "base_status", "mail", "base_action_rule"],
     'description': """
 This is a full-featured calendar system.
 ========================================

=== modified file 'base_calendar/base_calendar.py'
--- base_calendar/base_calendar.py	2012-07-19 12:03:34 +0000
+++ base_calendar/base_calendar.py	2012-07-24 06:47:34 +0000
@@ -1025,8 +1025,8 @@
         'id': fields.integer('ID', readonly=True),
         'sequence': fields.integer('Sequence'),
         'name': fields.char('Description', size=64, required=False, states={'done': [('readonly', True)]}),
-        'date': fields.datetime('Date', states={'done': [('readonly', True)]}),
-        'date_deadline': fields.datetime('Deadline', states={'done': [('readonly', True)]}),
+        'date': fields.datetime('Date', states={'done': [('readonly', True)]}, required=True,),
+        'date_deadline': fields.datetime('Deadline', states={'done': [('readonly', True)]}, required=True,),
         'create_date': fields.datetime('Created', readonly=True),
         'duration': fields.float('Duration', states={'done': [('readonly', True)]}),
         'description': fields.text('Description', states={'done': [('readonly', True)]}),

=== modified file 'hr_contract/hr_contract_view.xml'
--- hr_contract/hr_contract_view.xml	2012-07-06 14:40:19 +0000
+++ hr_contract/hr_contract_view.xml	2012-07-24 06:47:34 +0000
@@ -28,7 +28,7 @@
                         <field name="place_of_birth"/>
                     </field>
                     <field name="bank_account_id" position="replace">
-                        <field name="bank_account_id" context="{'display_partner':True, 'partner_id':partner_id}"/>
+                        <field name="bank_account_id" context="{'display_partner':True}"/>
                     </field>
                 </data>
             </field>

=== modified file 'hr_evaluation/hr_evaluation_view.xml'
--- hr_evaluation/hr_evaluation_view.xml	2012-07-05 09:29:21 +0000
+++ hr_evaluation/hr_evaluation_view.xml	2012-07-24 06:47:34 +0000
@@ -281,7 +281,6 @@
                         <button string="Cancel" name="survey_req_cancel" states="draft,waiting_answer" type="object" icon="gtk-cancel"/>
                         <button name="%(survey.action_view_survey_question_message)d" string="Answer Survey" type="action" states="waiting_answer,done,cancel" icon="gtk-execute" context="{'survey_id': survey_id, 'response_id': [response], 'response_no':0, 'active' : response,'request' : True, 'object' : 'hr.evaluation.interview', 'cur_id' : active_id}" attrs="{'readonly':[('survey_id','=',False)]}" class="oe_highlight"/>
                         <button name="action_print_survey" string="Print Survey" type="object" states="draft" icon="gtk-print" context="{'survey_id': survey_id, 'response_id': [response], 'response_no':0}" attrs="{'readonly':[('survey_id','=',False)]}" class="oe_highlight"/>
-                        <button name="action_print_survey" string="Print Survey" type="object" icon="gtk-print" context="{'survey_id': survey_id, 'response_id': [response], 'response_no':0}" attrs="{'readonly':[('survey_id','=',False)]}" class="oe_highlight"/>
                         <button string="Send Reminder Email" name="%(mail.action_email_compose_message_wizard)d" icon="terp-mail-message-new" type="action" states="waiting_answer" class="oe_highlight"/>
                         <field name="state" widget="statusbar" statusbar_visible="waiting_answer,done"/>
                     </header>

=== modified file 'hr_holidays/hr_holidays_view.xml'
--- hr_holidays/hr_holidays_view.xml	2012-07-13 14:26:22 +0000
+++ hr_holidays/hr_holidays_view.xml	2012-07-24 06:47:34 +0000
@@ -579,7 +579,6 @@
             name="Leave Meetings"
             src_model="hr.holidays"
             res_model="crm.meeting"
-            domain="[('leave_id', '=', active_id)]"
             view_mode="tree,form,calendar,gantt"
             view_type="form"/>
 

=== modified file 'hr_payroll/hr_payroll_view.xml'
--- hr_payroll/hr_payroll_view.xml	2012-07-05 09:29:21 +0000
+++ hr_payroll/hr_payroll_view.xml	2012-07-24 06:47:34 +0000
@@ -634,7 +634,7 @@
                            <field name="child_ids"/>
                         </page>
                            <page string="Inputs">
-                                <field name="input_ids" mode="tree, form">
+                                <field name="input_ids" mode="tree">
                                     <tree string="Input Data" editable="bottom">
                                         <field name="name"/>
                                         <field name="code"/>
@@ -767,22 +767,6 @@
 
         <!--  Shortcuts -->
 
-        <act_window name="Payslips"
-            domain="[('employee_id', '=', active_id)]"
-            context="{'search_default_employee_id': [active_id], 'default_employee_id': active_id}"
-            res_model="hr.payslip"
-            src_model="hr.employee"
-            view_id ="view_hr_payslip_tree"
-            id="act_hr_employee_payslip_list"
-            groups="base.group_hr_manager"/>
-
-        <act_window name="Payslip Computation Details"
-            domain="[('slip_id', '=', active_id)]"
-            context="{'default_slip_id': active_id}"
-            res_model="hr.payslip.line"
-            src_model="hr.payslip"
-            id="act_payslip_lines"/>
-
         <act_window name="Payslip Lines"
             domain="[('register_id', '=', active_id)]"
             context="{'default_register_id': active_id, 'search_default_register_id': 1}"

_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help   : https://help.launchpad.net/ListHelp

Reply via email to