mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-04 17:06:27 +00:00
Post save custom dans la fonction save, pour __original_valid
This commit is contained in:
parent
2dd410fedf
commit
d609bb6493
1 changed files with 7 additions and 5 deletions
|
@ -233,10 +233,14 @@ class Facture(BaseInvoice):
|
|||
}
|
||||
self.__original_valid = self.valid
|
||||
|
||||
def save(self, *args, **kwargs):
|
||||
super(Facture, self).save(*args, **kwargs)
|
||||
if not self.__original_valid and self.valid:
|
||||
send_mail_invoice(self)
|
||||
|
||||
def __str__(self):
|
||||
return str(self.user) + ' ' + str(self.date)
|
||||
|
||||
|
||||
@receiver(post_save, sender=Facture)
|
||||
def facture_post_save(**kwargs):
|
||||
"""
|
||||
|
@ -245,10 +249,8 @@ def facture_post_save(**kwargs):
|
|||
facture = kwargs['instance']
|
||||
if facture.valid:
|
||||
user = facture.user
|
||||
if not facture.__original_valid:
|
||||
user.set_active()
|
||||
send_mail_invoice(facture)
|
||||
user.ldap_sync(base=False, access_refresh=True, mac_refresh=False)
|
||||
user.set_active()
|
||||
user.ldap_sync(base=False, access_refresh=True, mac_refresh=False)
|
||||
|
||||
|
||||
@receiver(post_delete, sender=Facture)
|
||||
|
|
Loading…
Reference in a new issue