diff --git a/api/__pycache__/settings.cpython-313.pyc b/api/__pycache__/settings.cpython-313.pyc index bc34bb7a..563beac7 100644 Binary files a/api/__pycache__/settings.cpython-313.pyc and b/api/__pycache__/settings.cpython-313.pyc differ diff --git a/app/__pycache__/models.cpython-313.pyc b/app/__pycache__/models.cpython-313.pyc index 53c2b673..8ec6c8f5 100644 Binary files a/app/__pycache__/models.cpython-313.pyc and b/app/__pycache__/models.cpython-313.pyc differ diff --git a/app/migrations/0353_remove_organization_tax_code.py b/app/migrations/0353_remove_organization_tax_code.py new file mode 100644 index 00000000..821479b1 --- /dev/null +++ b/app/migrations/0353_remove_organization_tax_code.py @@ -0,0 +1,17 @@ +# Generated by Django 5.1.7 on 2026-01-10 07:56 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('app', '0352_transaction_early_discount_amount'), + ] + + operations = [ + migrations.RemoveField( + model_name='organization', + name='tax_code', + ), + ] diff --git a/app/models.py b/app/models.py index 4945cabe..9cbdfedd 100644 --- a/app/models.py +++ b/app/models.py @@ -1326,7 +1326,6 @@ class Organization(models.Model): customer = models.ForeignKey(Customer, null=False, related_name='orgncust', on_delete=models.PROTECT) shortname = models.CharField(max_length=50, null=False) established_date = models.DateField() - tax_code = models.CharField(max_length=20, null=True) website = models.CharField(max_length=200, null=True) bank_account = models.CharField(max_length=50, null=True) bank_name = models.CharField(max_length=100, null=True)