This commit is contained in:
ismail 2025-05-05 15:03:04 +03:00
parent 1e67402f71
commit c053ec82fa

View File

@ -1,5 +1,6 @@
from django.core.management.base import BaseCommand
from inventory.models import VatRate
from decimal import Decimal
class Command:
class Command(BaseCommand):
def handle(self, *args, **kwargs):
VatRate.objects.get_or_create(rate=Decimal('0.15'), is_active=True)