mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-04-30 19:02:38 +02:00
save
This commit is contained in:
parent
bcfb62e740
commit
4181588a3a
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ class Order(models.Model):
|
|||
author = models.ForeignKey(OrderAuthor, on_delete=models.CASCADE)
|
||||
articles_nb = models.PositiveIntegerField(default=0)
|
||||
price = models.DecimalField(max_digits=10, decimal_places=2, default=0)
|
||||
created_date = models.DateTimeField("Date de la commande", auto_now_add=True)
|
||||
created_date = models.DateTimeField("Date et heure de commande", auto_now_add=True)
|
||||
note = models.TextField(max_length=200, null=True, blank=True)
|
||||
|
||||
def compute_order_articles_nb(self):
|
||||
|
|
Loading…
Reference in a new issue