add - org quota stat to inventory_entry / inventory_balance to org_quota_stat
This commit is contained in:
@@ -31,6 +31,12 @@ class InventoryEntry(BaseModel):
|
||||
related_name="inventory",
|
||||
null=True
|
||||
)
|
||||
org_quota_stat = models.ForeignKey(
|
||||
product_models.OrganizationQuotaStats,
|
||||
on_delete=models.CASCADE,
|
||||
related_name='inventory_entry',
|
||||
null=True
|
||||
)
|
||||
weight = models.PositiveBigIntegerField(default=0)
|
||||
balance = models.PositiveBigIntegerField(default=0)
|
||||
lading_number = models.CharField(max_length=50, null=True)
|
||||
|
||||
Reference in New Issue
Block a user