change type

This commit is contained in:
behruz-dev
2025-10-08 14:28:28 +05:00
parent b78d7d38c7
commit f74999177a
2 changed files with 2 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ class Order(BaseModel):
)
date = models.DateField(null=True, blank=True)
quantity = models.PositiveBigIntegerField(default=1)
quantity = models.FloatField(default=1)
status = models.CharField(max_length=20, choices=STATUS, default="NEW")
unit_amount = models.PositiveBigIntegerField(default=0, null=True, blank=True)
currency = models.CharField(