5 lines
194 B
Python
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) |