From 4e1bcd16f91ee7648a28e914459139870d010c3d Mon Sep 17 00:00:00 2001 From: Fabien Pinckaers Date: Fri, 19 Aug 2011 15:36:07 +0200 Subject: [PATCH] [FIX] hr_recruitment access rules bzr revid: fp@tinyerp.com-20110819133607-wgap1frd1knnhz55 --- addons/account/account.py | 12 ++++++------ addons/hr_recruitment/security/ir.model.access.csv | 2 ++ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/addons/account/account.py b/addons/account/account.py index 8c7c20f9b0b..74ff01a7c9d 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -146,7 +146,7 @@ class account_account_type(osv.osv): ('expense','Profit & Loss (Expense Accounts)'), ('asset','Balance Sheet (Assets Accounts)'), ('liability','Balance Sheet (Liability Accounts)') - ],'P&L / BS Category', select=True, readonly=False, help="According value related accounts will be display on respective reports (Balance Sheet Profit & Loss Account)", required=True), + ],'P&L / BS Category', select=True, readonly=False, help="This field is used to generate legal reports: profit and loss, balance sheet.", required=True), 'note': fields.text('Description'), } _defaults = { @@ -604,11 +604,11 @@ class account_journal(osv.osv): 'name': fields.char('Journal Name', size=64, required=True), 'code': fields.char('Code', size=5, required=True, help="The code will be displayed on reports."), 'type': fields.selection([('sale', 'Sale'),('sale_refund','Sale Refund'), ('purchase', 'Purchase'), ('purchase_refund','Purchase Refund'), ('cash', 'Cash'), ('bank', 'Bank and Cheques'), ('general', 'General'), ('situation', 'Opening/Closing Situation')], 'Type', size=32, required=True, - help="Select 'Sale' for Sale journal to be used at the time of making invoice."\ - " Select 'Purchase' for Purchase Journal to be used at the time of approving purchase order."\ - " Select 'Cash' to be used at the time of making payment."\ - " Select 'General' for miscellaneous operations."\ - " Select 'Opening/Closing Situation' to be used at the time of new fiscal year creation or end of year entries generation."), + help="Select 'Sale' for customer invoices journals."\ + " Select 'Purchase' for supplier invoices journals."\ + " Select 'Cash' or 'Bank' for journals that are used in customer or supplier payments."\ + " Select 'General' for miscellaneous operations journals."\ + " Select 'Opening/Closing Situation' for entries generated for new fiscal years."), 'type_control_ids': fields.many2many('account.account.type', 'account_journal_type_rel', 'journal_id','type_id', 'Type Controls', domain=[('code','<>','view'), ('code', '<>', 'closed')]), 'account_control_ids': fields.many2many('account.account', 'account_account_type_rel', 'journal_id','account_id', 'Account', domain=[('type','<>','view'), ('type', '<>', 'closed')]), 'view_id': fields.many2one('account.journal.view', 'Display Mode', required=True, help="Gives the view used when writing or browsing entries in this journal. The view tells OpenERP which fields should be visible, required or readonly and in which order. You can create your own view for a faster encoding in each journal."), diff --git a/addons/hr_recruitment/security/ir.model.access.csv b/addons/hr_recruitment/security/ir.model.access.csv index 948c0aa0c47..2907b96fd81 100644 --- a/addons/hr_recruitment/security/ir.model.access.csv +++ b/addons/hr_recruitment/security/ir.model.access.csv @@ -9,3 +9,5 @@ "access_survey_hr_user","survey.hr.user","survey.model_survey","base.group_hr_user",1,1,1,0 "access_crm_phonecall_hruser","crm.phonecall hruser","crm.model_crm_phonecall","base.group_hr_user",1,1,1,1 "access_crm_meeting_hruser","crm.meeting.hruser","crm.model_crm_meeting","base.group_hr_user",1,1,1,1 +"access_hr_recruitment_source_hr_officer","hr.recruitment.source","model_hr_recruitment_source","base.group_hr_user",1,1,1,1 +"access_hr_recruitment_source_all","hr.recruitment.source","model_hr_recruitment_source",,1,0,0,0