|
@@ -9,7 +9,7 @@ from django.test import TestCase, Client
|
|
|
from freezegun import freeze_time
|
|
|
from coin.members.tests import MemberTestsUtils
|
|
|
from coin.members.models import Member, LdapUser
|
|
|
-from coin.billing.models import Invoice, InvoiceQuerySet
|
|
|
+from coin.billing.models import Invoice, InvoiceQuerySet, InvoiceDetail, Payment
|
|
|
from coin.offers.models import Offer, OfferSubscription
|
|
|
from coin.billing.create_subscriptions_invoices import create_member_invoice_for_a_period
|
|
|
from coin.billing.create_subscriptions_invoices import create_all_members_invoices_for_a_period
|
|
@@ -264,3 +264,41 @@ class InvoiceQuerySetTests(TestCase):
|
|
|
bill.validate()
|
|
|
self.assertEqual(bill.date, datetime.date(2017, 1, 1))
|
|
|
self.assertEqual(bill.number, '2017-01-000001')
|
|
|
+
|
|
|
+
|
|
|
+class PaymentInvoiceAutoReconciliationTests(TestCase):
|
|
|
+
|
|
|
+ def test_accounting_update(self):
|
|
|
+
|
|
|
+ johndoe = Member.objects.create(username=MemberTestsUtils.get_random_username(),
|
|
|
+ first_name="John",
|
|
|
+ last_name="Doe",
|
|
|
+ email="johndoe@yolo.test")
|
|
|
+ johndoe.set_password("trololo")
|
|
|
+
|
|
|
+ # First facture
|
|
|
+ invoice = Invoice.objects.create(number="1337",
|
|
|
+ member=johndoe)
|
|
|
+ InvoiceDetail.objects.create(label="superservice",
|
|
|
+ amount="15.0",
|
|
|
+ invoice=invoice)
|
|
|
+ invoice.validate()
|
|
|
+
|
|
|
+ # Second facture
|
|
|
+ invoice2 = Invoice.objects.create(number="42",
|
|
|
+ member=johndoe)
|
|
|
+ InvoiceDetail.objects.create(label="superservice",
|
|
|
+ amount="42",
|
|
|
+ invoice=invoice2)
|
|
|
+ invoice2.validate()
|
|
|
+
|
|
|
+ # Payment
|
|
|
+ payment = Payment.objects.create(amount=20,
|
|
|
+ member=johndoe)
|
|
|
+
|
|
|
+ invoice.delete()
|
|
|
+ invoice2.delete()
|
|
|
+ payment.delete()
|
|
|
+ johndoe.delete()
|
|
|
+
|
|
|
+
|