in Payment value is amount, in Bill_line amount is quantity

This commit is contained in:
docteur_mucus 2019-05-27 22:30:55 +02:00
parent 10cdd51e44
commit 373a1133de
1 changed files with 7 additions and 7 deletions

View File

@ -61,11 +61,11 @@ class Payment(models.Model):
num =
date = models.DateTimeField('date published')
pay_type =
value =
amount =
class Bill_line(models.Model):
service =
amount =
quantity =
class Service(models.Model):
service_type =