add item share to transaction item

This commit is contained in:
2025-09-30 15:09:05 +03:30
parent 9da506c009
commit 246363826a
6 changed files with 55 additions and 1 deletions

View File

@@ -327,6 +327,7 @@ class POSFreeProducts(BaseModel):
)
balance = models.PositiveIntegerField(default=0)
price = models.PositiveIntegerField(default=0)
company_fee = models.IntegerField(default=0)
def __str__(self):
return f'{self.product.name}-{self.organization.name}'