Skip to content

Commit

Permalink
[MERGE] forward port of branch saas-5 up to 24c25f5
Browse files Browse the repository at this point in the history
  • Loading branch information
KangOl committed Aug 29, 2014
2 parents 53c88c7 + 24c25f5 commit 1d2fe33
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
3 changes: 1 addition & 2 deletions addons/account/account_invoice.py
Original file line number Diff line number Diff line change
Expand Up @@ -806,8 +806,7 @@ def action_move_create(self):
inv.check_tax_lines(compute_taxes)

# I disabled the check_total feature
group_check_total = self.env.ref('account.group_supplier_inv_check_total')
if self.env.user in group_check_total.users:
if self.env['res.users'].has_group('account.group_supplier_inv_check_total'):
if inv.type in ('in_invoice', 'in_refund') and abs(inv.check_total - inv.amount_total) >= (inv.currency_id.rounding / 2.0):
raise except_orm(_('Bad Total!'), _('Please verify the price of the invoice!\nThe encoded total does not match the computed total.'))

Expand Down
2 changes: 1 addition & 1 deletion addons/email_template/wizard/mail_compose_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def default_get(self, cr, uid, fields, context=None):
return res

_columns = {
'template_id': fields.many2one('email.template', 'Use template', select=True, groups="base.group_user"),
'template_id': fields.many2one('email.template', 'Use template', select=True),
}

def send_mail(self, cr, uid, ids, context=None):
Expand Down
6 changes: 3 additions & 3 deletions addons/hr_holidays/security/ir_rule.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@

<record id="property_rule_holidays_employee_write" model="ir.rule">
<field name="name">Employee Holidays Create, Write, Unlink</field>
<field model="ir.model" name="model_id" ref="model_hr_holidays"/>
<field name="model_id" ref="model_hr_holidays"/>
<field name="domain_force">[('employee_id.user_id','=',user.id), ('state', 'in', ['draft', 'confirm', 'cancel'])]</field>
<field name="perm_read" eval="False"/>
<field name="groups" eval="[(4,ref('base.group_user'))]"/>
</record>

<record id="property_rule_holidays_officer" model="ir.rule">
<field name="name">Holidays Officer</field>
<field name="model_id" ref="model_hr_holidays"/>
<field name="domain_force">[(1,'=',1)]</field>
<field name="groups" eval="[(4,ref('base.group_hr_user'))]"/>
</record>

<record id="resource_leaves_officer" model="ir.rule">
<field name="name">Leaves Officer</field>
<field name="model_id" ref="model_resource_calendar_leaves"/>
Expand Down
3 changes: 2 additions & 1 deletion addons/website_hr/security/ir.model.access.csv
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_hr_employee_public,hr.employee.public,hr.model_hr_employee,base.group_public,1,0,0,0
access_hr_employee_public,hr.employee.public,hr.model_hr_employee,base.group_public,1,0,0,0
access_resource_public,resource.resource.public,resource.model_resource_resource,base.group_public,1,0,0,0
1 change: 1 addition & 0 deletions openerp/addons/base/security/ir.model.access.csv
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"access_res_currency_group_system","res_currency group_system","model_res_currency","group_system",1,1,1,1
"access_res_currency_rate_group_system","res_currency_rate group_system","model_res_currency_rate","group_system",1,1,1,1
"access_res_groups_group_erp_manager","res_groups group_erp_manager","model_res_groups","group_erp_manager",1,1,1,1
"access_res_groups_group_user","res_groups group_user","model_res_groups",group_user,1,0,0,0
"access_res_lang_group_all","res_lang group_all","model_res_lang",,1,0,0,0
"access_res_lang_group_user","res_lang group_user","model_res_lang","group_system",1,1,1,1
"access_res_partner_public","res_partner group_public","model_res_partner","group_public",1,0,0,0
Expand Down

0 comments on commit 1d2fe33

Please sign in to comment.