change type
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user