[ADD] Configuration wizard : account_voucher,account_voucher_payment, hr_payroll...
authorVir (Open ERP) <vir@tinyerp.com>
Tue, 20 Jul 2010 08:17:58 +0000 (13:47 +0530)
committerVir (Open ERP) <vir@tinyerp.com>
Tue, 20 Jul 2010 08:17:58 +0000 (13:47 +0530)
bzr revid: vir@tinyerp.com-20100720081758-td84e1ykw0cgxb16

addons/account/account_installer.xml
addons/account/installer.py
addons/hr/hr_installer.xml
addons/hr/installer.py

index 0bce735..479f9bf 100644 (file)
@@ -60,6 +60,8 @@
                 <field name="account_payment"/>
                 <field name="account_followup"/>
                 <field name="account_asset"/>
+                <field name="account_voucher"/>
+                <field name="account_voucher_payment"/>
             </group>
           </group>
           </group>
index aec8203..2865b59 100644 (file)
@@ -67,6 +67,12 @@ class account_installer(osv.osv_memory):
         'account_asset':fields.boolean('Assets Management',
             help="Enables asset management in the accounting application, "
                  "including asset categories and usage periods."),
+        'account_voucher':fields.boolean('Voucher Management',
+            help="Account Voucher module includes all the basic requirements of "
+                 "Voucher Entries for Bank, Cash, Sales, Purchase, Expanse, Contra, etc... "),
+        'account_voucher_payment':fields.boolean('Voucher and Reconcile Management',
+            help="Extension Account Voucher module includes allows to link payment / receipt "
+                 "entries with voucher, also automatically reconcile during the payment and receipt entries."),
         'date_start': fields.date('Start Date', required=True),
         'date_stop': fields.date('End Date', required=True),
         'period':fields.selection([('month','Monthly'), ('3months','3 Monthly')],
index c0d3885..dc985f9 100644 (file)
@@ -29,6 +29,8 @@
             <field name="hr_contract"/>
             <field name="hr_evaluation"/>
             <field name="hr_attendance"/>
+            <field name="hr_payroll"/>
+            <field name="hr_payroll_account"/>
           </group>
           <xpath expr="//button[@string='Install Modules']" position="attributes">
               <attribute name="string">Configure</attribute>
index 277a315..2c300b0 100644 (file)
@@ -46,6 +46,10 @@ class hr_installer(osv.osv_memory):
                  "performance review of employees."),
         'hr_attendance': fields.boolean('Attendances (Sign In/Out)',
             help="Simplifies the management of employee attendances."),
+        'hr_payroll': fields.boolean('Payroll' ,
+            help="Generic Payroll system"),
+        'hr_payroll_account': fields.boolean('Payroll with Accounting',
+            help="Generic Payroll system Integrated with Accountings."),
         }
     _defaults = {
         'hr_holidays': True,