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

@@ -19,7 +19,7 @@ class ConfiaoTest(TestCase):
def test_create_sale(self):
sale = Sale()
sale.customer = self.customer
sale.date = "2024-06-22"
sale.date = "2024-06-22 12:05:00"
sale.phone = '666666666'
sale.description = "Description"
sale.save()
@@ -29,7 +29,7 @@ class ConfiaoTest(TestCase):
def test_can_create_sale_without_payment_method(self):
sale = Sale()
sale.customer = self.customer
sale.date = "2024-06-22"
sale.date = "2024-06-22 12:05:00"
sale.phone = '666666666'
sale.description = "Description"
sale.payment_method = ''