models.py 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. import datetime
  4. import logging
  5. import uuid
  6. import re
  7. from decimal import Decimal
  8. from dateutil.relativedelta import relativedelta
  9. from django.conf import settings
  10. from django.db import models, transaction
  11. from django.utils import timezone
  12. from django.utils.encoding import python_2_unicode_compatible
  13. from django.dispatch import receiver
  14. from django.db.models.signals import post_save, post_delete
  15. from django.core.exceptions import ValidationError
  16. from django.core.urlresolvers import reverse
  17. from coin.offers.models import OfferSubscription
  18. from coin.members.models import Member
  19. from coin.html2pdf import render_as_pdf
  20. from coin.utils import private_files_storage, start_of_month, end_of_month, \
  21. postgresql_regexp, send_templated_email, \
  22. disable_for_loaddata
  23. from coin.isp_database.context_processors import branding
  24. from coin.isp_database.models import ISPInfo
  25. accounting_log = logging.getLogger("coin.billing")
  26. def invoice_pdf_filename(instance, filename):
  27. """Nom et chemin du fichier pdf à stocker pour les factures"""
  28. member_id = instance.member.id if instance.member else 0
  29. return 'invoices/%d_%s_%s.pdf' % (member_id,
  30. instance.number,
  31. uuid.uuid4())
  32. @python_2_unicode_compatible
  33. class InvoiceNumber:
  34. """ Logic and validation of invoice numbers
  35. Defines invoice numbers serie in a way that is legal in france.
  36. https://www.service-public.fr/professionnels-entreprises/vosdroits/F23208#fiche-item-3
  37. Our format is YYYY-MM-XXXXXX
  38. - YYYY the year of the bill
  39. - MM month of the bill
  40. - XXXXXX a per-month sequence
  41. """
  42. RE_INVOICE_NUMBER = re.compile(
  43. r'(?P<year>\d{4})-(?P<month>\d{2})-(?P<index>\d{6})')
  44. def __init__(self, date, index):
  45. self.date = date
  46. self.index = index
  47. def get_next(self):
  48. return InvoiceNumber(self.date, self.index + 1)
  49. def __str__(self):
  50. return '{:%Y-%m}-{:0>6}'.format(self.date, self.index)
  51. @classmethod
  52. def parse(cls, string):
  53. m = cls.RE_INVOICE_NUMBER.match(string)
  54. if not m:
  55. raise ValueError('Not a valid invoice number: "{}"'.format(string))
  56. return cls(
  57. datetime.date(
  58. year=int(m.group('year')),
  59. month=int(m.group('month')),
  60. day=1),
  61. int(m.group('index')))
  62. @staticmethod
  63. def time_sequence_filter(date, field_name='date'):
  64. """ Build queryset filter to be used to get the invoices from the
  65. numbering sequence of a given date.
  66. :param field_name: the invoice field name to filter on.
  67. :type date: datetime
  68. :rtype: dict
  69. """
  70. return {
  71. '{}__month'.format(field_name): date.month,
  72. '{}__year'.format(field_name): date.year
  73. }
  74. class InvoiceQuerySet(models.QuerySet):
  75. def get_next_invoice_number(self, date):
  76. last_invoice_number_str = self._get_last_invoice_number(date)
  77. if last_invoice_number_str is None:
  78. # It's the first bill of the month
  79. invoice_number = InvoiceNumber(date, 1)
  80. else:
  81. invoice_number = InvoiceNumber.parse(last_invoice_number_str).get_next()
  82. return str(invoice_number)
  83. def _get_last_invoice_number(self, date):
  84. same_seq_filter = InvoiceNumber.time_sequence_filter(date)
  85. return self.filter(**same_seq_filter).with_valid_number().aggregate(
  86. models.Max('number'))['number__max']
  87. def with_valid_number(self):
  88. """ Excludes previous numbering schemes or draft invoices
  89. """
  90. return self.filter(number__regex=postgresql_regexp(
  91. InvoiceNumber.RE_INVOICE_NUMBER))
  92. class Invoice(models.Model):
  93. INVOICES_STATUS_CHOICES = (
  94. ('open', 'À payer'),
  95. ('closed', 'Réglée'),
  96. ('trouble', 'Litige')
  97. )
  98. validated = models.BooleanField(default=False, verbose_name='validée',
  99. help_text='Once validated, a PDF is generated'
  100. ' and the invoice cannot be modified')
  101. number = models.CharField(max_length=25,
  102. unique=True,
  103. verbose_name='numéro')
  104. status = models.CharField(max_length=50, choices=INVOICES_STATUS_CHOICES,
  105. default='open',
  106. verbose_name='statut')
  107. date = models.DateField(
  108. default=datetime.date.today, null=True, verbose_name='date',
  109. help_text='Cette date sera définie à la date de validation dans la facture finale')
  110. date_due = models.DateField(
  111. null=True, blank=True,
  112. verbose_name="date d'échéance de paiement",
  113. help_text='Le délai de paiement sera fixé à {} jours à la validation si laissé vide'.format(settings.PAYMENT_DELAY))
  114. member = models.ForeignKey(Member, null=True, blank=True, default=None,
  115. related_name='invoices',
  116. verbose_name='membre',
  117. on_delete=models.SET_NULL)
  118. pdf = models.FileField(storage=private_files_storage,
  119. upload_to=invoice_pdf_filename,
  120. null=True, blank=True,
  121. verbose_name='PDF')
  122. date_last_reminder_email = models.DateTimeField(null=True, blank=True,
  123. verbose_name="Date du dernier email de relance envoyé")
  124. def save(self, *args, **kwargs):
  125. # First save to get a PK
  126. super(Invoice, self).save(*args, **kwargs)
  127. # Then use that pk to build draft invoice number
  128. if not self.validated and self.pk and not self.number:
  129. self.number = 'DRAFT-{}'.format(self.pk)
  130. self.save()
  131. def amount(self):
  132. """
  133. Calcul le montant de la facture
  134. en fonction des éléments de détails
  135. """
  136. total = Decimal('0.0')
  137. for detail in self.details.all():
  138. total += detail.total()
  139. return total.quantize(Decimal('0.01'))
  140. amount.short_description = 'Montant'
  141. def amount_before_tax(self):
  142. total = Decimal('0.0')
  143. for detail in self.details.all():
  144. total += detail.amount
  145. return total.quantize(Decimal('0.01'))
  146. amount_before_tax.short_description = 'Montant HT'
  147. def amount_paid(self):
  148. """
  149. Calcul le montant déjà payé à partir des allocations de paiements
  150. """
  151. return sum([a.amount for a in self.allocations.all()])
  152. amount_paid.short_description = 'Montant payé'
  153. def amount_remaining_to_pay(self):
  154. """
  155. Calcul le montant restant à payer
  156. """
  157. return self.amount() - self.amount_paid()
  158. amount_remaining_to_pay.short_description = 'Reste à payer'
  159. def has_owner(self, username):
  160. """
  161. Check if passed username (ex gmajax) is owner of the invoice
  162. """
  163. return (self.member and self.member.username == username)
  164. def generate_pdf(self):
  165. """
  166. Make and store a pdf file for the invoice
  167. """
  168. context = {"invoice": self}
  169. context.update(branding(None))
  170. pdf_file = render_as_pdf('billing/invoice_pdf.html', context)
  171. self.pdf.save('%s.pdf' % self.number, pdf_file)
  172. @transaction.atomic
  173. def validate(self):
  174. """
  175. Switch invoice to validate mode. This set to False the draft field
  176. and generate the pdf
  177. """
  178. self.date = datetime.date.today()
  179. if not self.date_due:
  180. self.date_due = self.date + datetime.timedelta(days=settings.PAYMENT_DELAY)
  181. old_number = self.number
  182. self.number = Invoice.objects.get_next_invoice_number(self.date)
  183. self.validated = True
  184. self.save()
  185. self.generate_pdf()
  186. accounting_log.info(
  187. "Draft invoice {} validated as invoice {}. ".format(
  188. old_number, self.number) +
  189. "(Total amount : {} ; Member : {})".format(
  190. self.amount(), self.member))
  191. assert self.pdf_exists()
  192. if self.member is not None:
  193. update_accounting_for_member(self.member)
  194. def pdf_exists(self):
  195. return (self.validated
  196. and bool(self.pdf)
  197. and private_files_storage.exists(self.pdf.name))
  198. def get_absolute_url(self):
  199. return reverse('billing:invoice', args=[self.number])
  200. def __unicode__(self):
  201. return '#{} {:0.2f}€ {}'.format(
  202. self.number, self.amount(), self.date_due)
  203. def reminder_needed(self):
  204. # If there's no member, there's nobody to be reminded
  205. if self.member is None:
  206. return False
  207. # If bill is close or not validated yet, nope
  208. if self.status != 'open' or not self.validated:
  209. return False
  210. # If bill is not at least one month old, nope
  211. if self.date_due >= timezone.now()+relativedelta(weeks=-4):
  212. return False
  213. # If a reminder has been recently sent, nope
  214. if (self.date_last_reminder_email
  215. and (self.date_last_reminder_email
  216. >= timezone.now() + relativedelta(weeks=-3))):
  217. return False
  218. return True
  219. def send_reminder(self, auto=False):
  220. """ Envoie un courrier pour rappeler à un abonné qu'une facture est
  221. en attente de paiement
  222. :param bill: id of the bill to remind
  223. :param auto: is it an auto email? (changes slightly template content)
  224. """
  225. if not self.reminder_needed():
  226. return False
  227. accounting_log.info(
  228. "Sending reminder email to {} to pay invoice {}".format(
  229. self.member, str(self.number)))
  230. isp_info = ISPInfo.objects.first()
  231. kwargs = {}
  232. # Il peut ne pas y avir d'ISPInfo, ou bien pas d'administrative_email
  233. if isp_info and isp_info.administrative_email:
  234. kwargs['from_email'] = isp_info.administrative_email
  235. # Si le dernier courriel de relance a été envoyé il y a moins de trois
  236. # semaines, n'envoi pas un nouveau courriel
  237. send_templated_email(
  238. to=self.member.email,
  239. subject_template='billing/emails/reminder_for_unpaid_bill.txt',
  240. body_template='billing/emails/reminder_for_unpaid_bill.html',
  241. context={'member': self.member, 'branding': isp_info,
  242. 'membership_info_url': settings.MEMBER_MEMBERSHIP_INFO_URL,
  243. 'today': datetime.date.today,
  244. 'auto_sent': auto},
  245. **kwargs)
  246. # Sauvegarde en base la date du dernier envoi de mail de relance
  247. self.date_last_reminder_email = timezone.now()
  248. self.save()
  249. return True
  250. class Meta:
  251. verbose_name = 'facture'
  252. objects = InvoiceQuerySet().as_manager()
  253. class InvoiceDetail(models.Model):
  254. label = models.CharField(max_length=100)
  255. amount = models.DecimalField(max_digits=5, decimal_places=2,
  256. verbose_name='montant')
  257. quantity = models.DecimalField(null=True, verbose_name='quantité',
  258. default=1.0, decimal_places=2, max_digits=4)
  259. tax = models.DecimalField(null=True, default=0.0, decimal_places=2,
  260. max_digits=4, verbose_name='TVA',
  261. help_text='en %')
  262. invoice = models.ForeignKey(Invoice, verbose_name='facture',
  263. related_name='details')
  264. offersubscription = models.ForeignKey(OfferSubscription, null=True,
  265. blank=True, default=None,
  266. verbose_name='abonnement')
  267. period_from = models.DateField(
  268. default=start_of_month,
  269. null=True,
  270. blank=True,
  271. verbose_name='début de période',
  272. help_text='Date de début de période sur laquelle est facturé cet item')
  273. period_to = models.DateField(
  274. default=end_of_month,
  275. null=True,
  276. blank=True,
  277. verbose_name='fin de période',
  278. help_text='Date de fin de période sur laquelle est facturé cet item')
  279. def __unicode__(self):
  280. return self.label
  281. def total(self):
  282. """Calcul le total"""
  283. return (self.amount * (self.tax / Decimal('100.0') +
  284. Decimal('1.0')) *
  285. self.quantity).quantize(Decimal('0.01'))
  286. class Meta:
  287. verbose_name = 'détail de facture'
  288. class Payment(models.Model):
  289. PAYMENT_MEAN_CHOICES = (
  290. ('cash', 'Espèces'),
  291. ('check', 'Chèque'),
  292. ('transfer', 'Virement'),
  293. ('other', 'Autre')
  294. )
  295. member = models.ForeignKey(Member, null=True, blank=True, default=None,
  296. related_name='payments',
  297. verbose_name='membre',
  298. on_delete=models.SET_NULL)
  299. payment_mean = models.CharField(max_length=100, null=True,
  300. default='transfer',
  301. choices=PAYMENT_MEAN_CHOICES,
  302. verbose_name='moyen de paiement')
  303. amount = models.DecimalField(max_digits=5, decimal_places=2, null=True,
  304. verbose_name='montant')
  305. date = models.DateField(default=datetime.date.today)
  306. invoice = models.ForeignKey(Invoice, verbose_name='facture associée', null=True,
  307. blank=True, related_name='payments')
  308. label = models.CharField(max_length=500,
  309. null=True, blank=True, default="",
  310. verbose_name='libellé')
  311. def save(self, *args, **kwargs):
  312. # Only if no amount already allocated...
  313. if self.amount_already_allocated() == 0:
  314. # If there's a linked invoice and no member defined
  315. if self.invoice and not self.member:
  316. # Automatically set member to invoice's member
  317. self.member = self.invoice.member
  318. super(Payment, self).save(*args, **kwargs)
  319. def clean(self):
  320. # Only if no amount already alloca ted...
  321. if self.amount_already_allocated() == 0:
  322. # If there's a linked invoice and this payment would pay more than
  323. # the remaining amount needed to pay the invoice...
  324. if self.invoice and self.amount > self.invoice.amount_remaining_to_pay():
  325. raise ValidationError("This payment would pay more than the invoice's remaining to pay")
  326. def amount_already_allocated(self):
  327. return sum([ a.amount for a in self.allocations.all() ])
  328. def amount_not_allocated(self):
  329. return self.amount - self.amount_already_allocated()
  330. @transaction.atomic
  331. def allocate_to_invoice(self, invoice):
  332. # FIXME - Add asserts about remaining amount > 0, unpaid amount > 0,
  333. # ...
  334. amount_can_pay = self.amount_not_allocated()
  335. amount_to_pay = invoice.amount_remaining_to_pay()
  336. amount_to_allocate = min(amount_can_pay, amount_to_pay)
  337. accounting_log.info(
  338. "Allocating {} from payment {} to invoice {}".format(
  339. amount_to_allocate, self.date, invoice.number))
  340. PaymentAllocation.objects.create(invoice=invoice,
  341. payment=self,
  342. amount=amount_to_allocate)
  343. # Close invoice if relevant
  344. if (invoice.amount_remaining_to_pay() <= 0) and (invoice.status == "open"):
  345. accounting_log.info(
  346. "Invoice {} has been paid and is now closed".format(
  347. invoice.number))
  348. invoice.status = "closed"
  349. invoice.save()
  350. self.save()
  351. def __unicode__(self):
  352. if self.member is not None:
  353. return 'Paiment de {:0.2f}€ le {} par {}'.format(
  354. self.amount, self.date, self.member)
  355. else:
  356. return 'Paiment de {:0.2f}€ le {}'.format(
  357. self.amount, self.date)
  358. class Meta:
  359. verbose_name = 'paiement'
  360. # This corresponds to a (possibly partial) allocation of a given payment to
  361. # a given invoice.
  362. # E.g. consider an invoice I with total 15€ and a payment P with 10€.
  363. # There can be for example an allocation of 3.14€ from P to I.
  364. class PaymentAllocation(models.Model):
  365. invoice = models.ForeignKey(Invoice, verbose_name='facture associée',
  366. null=False, blank=False,
  367. related_name='allocations')
  368. payment = models.ForeignKey(Payment, verbose_name='facture associée',
  369. null=False, blank=False,
  370. related_name='allocations')
  371. amount = models.DecimalField(max_digits=5, decimal_places=2, null=True,
  372. verbose_name='montant')
  373. def get_active_payment_and_invoices(member):
  374. # Fetch relevant and active payments / invoices
  375. # and sort then by chronological order : olders first, newers last.
  376. this_member_invoices = [i for i in member.invoices.filter(validated=True).order_by("date")]
  377. this_member_payments = [p for p in member.payments.order_by("date")]
  378. # TODO / FIXME ^^^ maybe also consider only 'opened' invoices (i.e. not
  379. # conflict / trouble invoices)
  380. active_payments = [p for p in this_member_payments if p.amount_not_allocated() > 0]
  381. active_invoices = [p for p in this_member_invoices if p.amount_remaining_to_pay() > 0]
  382. return active_payments, active_invoices
  383. def update_accounting_for_member(member):
  384. """
  385. Met à jour le status des factures, des paiements et le solde du compte
  386. d'un utilisateur
  387. """
  388. if not settings.HANDLE_BALANCE:
  389. return
  390. accounting_log.info("Updating accounting for member {} ...".format(member))
  391. accounting_log.info(
  392. "Member {} current balance is {} ...".format(member, member.balance))
  393. reconcile_invoices_and_payments(member)
  394. this_member_invoices = [i for i in member.invoices.filter(validated=True).order_by("date")]
  395. this_member_payments = [p for p in member.payments.order_by("date")]
  396. member.balance = compute_balance(this_member_invoices,
  397. this_member_payments)
  398. member.save()
  399. accounting_log.info("Member {} new balance is {:f}".format(
  400. member, member.balance))
  401. def reconcile_invoices_and_payments(member):
  402. """
  403. Rapproche des factures et des paiements qui sont actifs (paiement non alloué
  404. ou factures non entièrement payées) automatiquement.
  405. """
  406. active_payments, active_invoices = get_active_payment_and_invoices(member)
  407. if active_payments == []:
  408. accounting_log.info(
  409. "(No active payment for {}.".format(member)
  410. + " No invoice/payment reconciliation needed.).")
  411. return
  412. elif active_invoices == []:
  413. accounting_log.info(
  414. "(No active invoice for {}. No invoice/payment ".format(member) +
  415. "reconciliation needed.).")
  416. return
  417. accounting_log.info(
  418. "Initiating reconciliation between invoice and payments for {}".format(
  419. member))
  420. while active_payments != [] and active_invoices != []:
  421. # Only consider the oldest active payment and the oldest active invoice
  422. p = active_payments[0]
  423. # If this payment is to be allocated for a specific invoice...
  424. if p.invoice:
  425. # Assert that the invoice is still 'active'
  426. assert p.invoice in active_invoices
  427. i = p.invoice
  428. accounting_log.info(
  429. "Payment is to be allocated specifically to invoice {}".format(
  430. i.number))
  431. else:
  432. i = active_invoices[0]
  433. # TODO : should add an assert that the ammount not allocated / remaining to
  434. # pay is lower before and after calling the allocate_to_invoice
  435. p.allocate_to_invoice(i)
  436. active_payments, active_invoices = get_active_payment_and_invoices(member)
  437. if active_payments == []:
  438. accounting_log.info("No more active payment. Nothing to reconcile anymore.")
  439. elif active_invoices == []:
  440. accounting_log.info("No more active invoice. Nothing to reconcile anymore.")
  441. return
  442. def compute_balance(invoices, payments):
  443. active_payments = [p for p in payments if p.amount_not_allocated() > 0]
  444. active_invoices = [i for i in invoices if i.amount_remaining_to_pay() > 0]
  445. s = 0
  446. s -= sum([i.amount_remaining_to_pay() for i in active_invoices])
  447. s += sum([p.amount_not_allocated() for p in active_payments])
  448. return s
  449. @receiver(post_save, sender=Payment)
  450. @disable_for_loaddata
  451. def payment_changed(sender, instance, created, **kwargs):
  452. if created:
  453. accounting_log.info("Adding payment %s (Date: %s, Member: %s, Amount: %s, Label: %s)."
  454. % (instance.pk, instance.date, instance.member,
  455. instance.amount, instance.label))
  456. else:
  457. accounting_log.info("Updating payment %s (Date: %s, Member: %s, Amount: %s, Label: %s, Allocated: %s)."
  458. % (instance.pk, instance.date, instance.member,
  459. instance.amount, instance.label,
  460. instance.amount_already_allocated()))
  461. # If this payment is related to a member, update the accounting for
  462. # this member
  463. if (created or instance.amount_not_allocated() != 0) \
  464. and (instance.member is not None):
  465. update_accounting_for_member(instance.member)
  466. @receiver(post_save, sender=Invoice)
  467. @disable_for_loaddata
  468. def invoice_changed(sender, instance, created, **kwargs):
  469. if created:
  470. accounting_log.info(
  471. "Creating draft invoice DRAFT-{} (Member: {}).".format(
  472. instance.pk, instance.member))
  473. else:
  474. if not instance.validated:
  475. accounting_log.info(
  476. "Updating draft invoice DRAFT-{} (Member: {}).".format(
  477. instance.number, instance.member))
  478. else:
  479. accounting_log.info(
  480. "Updating invoice {} (Member: {}, Total amount: {}, Amount paid: {}).".format(
  481. instance.number, instance.member,
  482. instance.amount(), instance.amount_paid()))
  483. @receiver(post_delete, sender=PaymentAllocation)
  484. def paymentallocation_deleted(sender, instance, **kwargs):
  485. invoice = instance.invoice
  486. # Reopen invoice if relevant
  487. if (invoice.amount_remaining_to_pay() > 0) and (invoice.status == "closed"):
  488. accounting_log.info("Reopening invoice {} ...".format(invoice.number))
  489. invoice.status = "open"
  490. invoice.save()
  491. @receiver(post_delete, sender=Payment)
  492. def payment_deleted(sender, instance, **kwargs):
  493. accounting_log.info(
  494. "Deleted payment {} (Date: {}, Member: {}, Amount: {}, Label: {}).".forma(
  495. instance.pk, instance.date, instance.member, instance.amount, instance.label))
  496. member = instance.member
  497. if member is None:
  498. return
  499. this_member_invoices = [i for i in member.invoices.filter(validated=True).order_by("date")]
  500. this_member_payments = [p for p in member.payments.order_by("date")]
  501. member.balance = compute_balance(this_member_invoices,
  502. this_member_payments)
  503. member.save()