Parcourir la source

Comminit initial Module de facturaton (Billing) pour Illyse

tonton Sieur de la Virlouette il y a 11 ans
Parent
commit
ab88b4a349
6 fichiers modifiés avec 48 ajouts et 0 suppressions
  1. 3 0
      .gitignore
  2. 0 0
      coin/billing/__init__.py
  3. 3 0
      coin/billing/admin.py
  4. 36 0
      coin/billing/models.py
  5. 3 0
      coin/billing/tests.py
  6. 3 0
      coin/billing/views.py

+ 3 - 0
.gitignore

@@ -4,3 +4,6 @@
 .svn
 coin/settings_local.py
 .DS_Store
+.project
+.pydevproject
+.settings/*

+ 0 - 0
coin/billing/__init__.py


+ 3 - 0
coin/billing/admin.py

@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.

+ 36 - 0
coin/billing/models.py

@@ -0,0 +1,36 @@
+from django.db import models
+
+# Create your models here.
+
+    
+class Invoces_Detail(models.Model):
+
+    label= models.CharField(max_length=100)
+    amount = models.DecimalField( max_digits=5, decimal_places=2)
+    quantity = models.IntegerField(null=True)
+    tax = models.IntegerField( null=True)
+    def __unicode__(self):
+        return self.label
+
+class Invoces(models.Model):
+
+    INVOICES_STATUS_CHOICES = (
+        ('open', 'A payer'),
+        ('Closed', 'regler'),
+        ('trouble', "litige"),
+    )
+    status= models.CharField(max_length=50, choices=INVOICES_STATUS_CHOICES,default='open')
+    detail = models.ForeignKey(Invoces_Detail)
+    amount = models.DecimalField( max_digits=5, decimal_places=2)
+    date = models.DateField (auto_now_add=True, null=True)
+    period_from=models.DateField (auto_now_add=False, null=True)
+    period_to=models.DateField (auto_now_add=False, null=True)
+    date_due=models.DateField (auto_now_add=False, null=True)
+
+    
+        
+class Payments(models.Model):
+    payment_means =models.CharField(max_length=100, null=True)
+    amount=  models.DecimalField( max_digits=7, decimal_places=2, null=True)
+    date=models.DateField(auto_now_add=True)
+    invoce =models.ForeignKey(Invoces)

+ 3 - 0
coin/billing/tests.py

@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.

+ 3 - 0
coin/billing/views.py

@@ -0,0 +1,3 @@
+from django.shortcuts import render
+
+# Create your views here.