This commit is contained in:
behruz-dev
2025-12-01 16:40:41 +05:00
parent 4332c0826a
commit 046ec09849
5 changed files with 86 additions and 3 deletions

View File

@@ -12,5 +12,5 @@ class Payment(BaseModel):
price = models.DecimalField(max_digits=15, decimal_places=2)
def __str__(self):
return self.price
return f'{self.price}'