Merge branch 'main' into streamline_reconciliation_jar_process_#69

This commit is contained in:
2024-12-28 17:07:18 -05:00
5 changed files with 91 additions and 56 deletions

View File

@@ -89,7 +89,7 @@ class ReconciliationJar(models.Model):
class Sale(models.Model):
customer = models.ForeignKey(Customer, on_delete=models.PROTECT)
date = models.DateField("Date")
date = models.DateTimeField("Date")
phone = models.CharField(max_length=13, null=True, blank=True)
description = models.CharField(max_length=255, null=True, blank=True)
payment_method = models.CharField(