import - quota dashboard & some changes in product quota stat

This commit is contained in:
2025-12-07 15:50:35 +03:30
parent 3a768e8b13
commit 6491c53306
6 changed files with 224 additions and 128 deletions

View File

@@ -154,6 +154,12 @@ class ProductStats(BaseModel):
related_name='product_stats',
null=True
)
product_org_stat_type = models.CharField(
max_length=25,
null=True,
default='registerer',
help_text='registerer or distributioned' # noqa
)
quotas_number = models.PositiveBigIntegerField(default=0)
sale_unit = models.CharField(max_length=25, null=True)
active_quotas_weight = models.PositiveBigIntegerField(default=0)