add new management commands for finance and counterparty

This commit is contained in:
behruz-dev
2025-10-25 15:01:46 +05:00
parent 33d8f50ca2
commit 7ba54bfeb2
8 changed files with 12494 additions and 1 deletions

View File

@@ -41,7 +41,7 @@ class Counterparty(BaseModel):
district = models.ForeignKey(
District, on_delete=models.SET_NULL, null=True, blank=True, related_name='counterparties'
)
balance = models.PositiveBigIntegerField(null=True, blank=True)
balance = models.BigIntegerField(null=True, blank=True)
balance_currency = models.CharField(
max_length=3, choices=[('usd', 'usd'), ('uzs', 'uzs')], null=True, blank=True
)