2025-05-05 14:54:39 +03:00

5 lines
194 B
Python

from inventory.models import VatRate
from decimal import Decimal
class Command:
def handle(self, *args, **kwargs):
VatRate.objects.get_or_create(rate=Decimal('0.15'), is_active=True)