add: add filter for party list

This commit is contained in:
behruz-dev
2025-09-29 14:49:23 +05:00
parent 1538fc1b19
commit c7e3a8d266
4 changed files with 58 additions and 5 deletions

View File

@@ -50,7 +50,7 @@ class Party(BaseModel):
null=True, blank=True
)
audit_comment = models.TextField(null=True, blank=True)
discount = models.PositiveBigIntegerField(default=0, null=True, blank=True)
discount = models.PositiveBigIntegerField(null=True, blank=True)
discount_currency = models.CharField(
max_length=3, choices=[('uzs', 'uzs'), ('usd', 'usd')], default='uzs', null=True, blank=True
)