Skip to content

Commit

Permalink
feat: Netsuite Tax Override
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Nov 11, 2024
1 parent 96c13db commit 9dac1c5
Show file tree
Hide file tree
Showing 3 changed files with 222 additions and 213 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.14 on 2024-11-04 10:38

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('mappings', '0014_auto_20240417_0807'),
]

operations = [
migrations.AddField(
model_name='generalmapping',
name='is_tax_balancing_enabled',
field=models.BooleanField(default=False, help_text='Is tax balancing enabled'),
),
]
1 change: 1 addition & 0 deletions apps/mappings/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ class GeneralMapping(models.Model):
)

override_tax_details = models.BooleanField(default=False, help_text='Override tax details')
is_tax_balancing_enabled = models.BooleanField(default=False, help_text='Is tax balancing enabled')

workspace = models.OneToOneField(Workspace, on_delete=models.PROTECT, help_text='Reference to Workspace model', related_name='general_mappings')
created_at = models.DateTimeField(auto_now_add=True, help_text='Created at datetime')
Expand Down
Loading

0 comments on commit 9dac1c5

Please sign in to comment.