mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-23 20:03:11 +00:00
Le droit add_facture englobe buy_every_article et use_every_payment
This commit is contained in:
parent
899cd863eb
commit
2263b97d78
1 changed files with 4 additions and 2 deletions
|
@ -565,7 +565,8 @@ class Article(RevMixin, AclMixin, models.Model):
|
|||
"""
|
||||
return (
|
||||
self.available_for_everyone
|
||||
or user.has_perm('cotisations.buy_every_article'),
|
||||
or user.has_perm('cotisations.buy_every_article')
|
||||
or user.has_perm('cotisations.add_facture'),
|
||||
_("You cannot buy this Article.")
|
||||
)
|
||||
|
||||
|
@ -701,7 +702,8 @@ class Paiement(RevMixin, AclMixin, models.Model):
|
|||
"""
|
||||
return (
|
||||
self.available_for_everyone
|
||||
or user.has_perm('cotisations.use_every_payment'),
|
||||
or user.has_perm('cotisations.use_every_payment')
|
||||
or user.has_perm('cotisations.add_facture'),
|
||||
_("You cannot use this Payment.")
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue