fix - list of assigned_distribution & assigner_distributions of me
This commit is contained in:
@@ -4,7 +4,6 @@ from django.db import models
|
||||
from django.db.models import Sum, Q
|
||||
from django.db.models.signals import post_save, post_delete, post_init
|
||||
from django.dispatch import receiver
|
||||
from rest_framework import status
|
||||
|
||||
from apps.product.validators.quota_stats_validator import QuotaStatsValidator
|
||||
from apps.warehouse.models import (
|
||||
@@ -12,7 +11,6 @@ from apps.warehouse.models import (
|
||||
InventoryEntry
|
||||
)
|
||||
from common.helpers import get_organization_by_user
|
||||
from .exceptions import QuotaException
|
||||
from .models import (
|
||||
QuotaDistribution,
|
||||
Quota,
|
||||
@@ -328,7 +326,10 @@ def organization_quota_stats(sender, instance: Quota, created: bool, **kwargs):
|
||||
total=Sum('weight')
|
||||
)['total'] or 0
|
||||
org_quota_stat.remaining_amount = org_quota_stat.total_amount - org_quota_stat.total_distributed
|
||||
|
||||
# validate total_amount & distributed with remaining in update
|
||||
QuotaStatsValidator.validate_quota_weight_update(org_quota_stat.remaining_amount)
|
||||
|
||||
org_quota_stat.save(update_fields=['total_amount', 'total_distributed', 'sold_amount', 'remaining_amount'])
|
||||
|
||||
# delete quota
|
||||
|
||||
Reference in New Issue
Block a user