diff --git a/addons/account/account_installer.xml b/addons/account/account_installer.xml index 0bce735f1b3..479f9bf1c65 100644 --- a/addons/account/account_installer.xml +++ b/addons/account/account_installer.xml @@ -60,6 +60,8 @@ + + diff --git a/addons/account/installer.py b/addons/account/installer.py index aec82032e9a..2865b591df1 100644 --- a/addons/account/installer.py +++ b/addons/account/installer.py @@ -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')], diff --git a/addons/hr/hr_installer.xml b/addons/hr/hr_installer.xml index c0d388517eb..dc985f97d8a 100644 --- a/addons/hr/hr_installer.xml +++ b/addons/hr/hr_installer.xml @@ -29,6 +29,8 @@ + + Configure diff --git a/addons/hr/installer.py b/addons/hr/installer.py index 277a315edac..2c300b0496b 100644 --- a/addons/hr/installer.py +++ b/addons/hr/installer.py @@ -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,