Skip to content

Commit

Permalink
set-tax-balancing-true (#692)
Browse files Browse the repository at this point in the history
Co-authored-by: GitHub Actions <[email protected]>
  • Loading branch information
ruuushhh and GitHub Actions authored Jan 3, 2025
1 parent ab14da1 commit ed2ac2f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.14 on 2025-01-03 07:48

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('mappings', '0016_auto_20241226_0929'),
]

operations = [
migrations.AlterField(
model_name='generalmapping',
name='is_tax_balancing_enabled',
field=models.BooleanField(default=True, help_text='Is tax balancing enabled'),
),
]
2 changes: 1 addition & 1 deletion apps/mappings/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class GeneralMapping(AutoAddCreateUpdateInfoMixin, 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')
is_tax_balancing_enabled = models.BooleanField(default=True, 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

0 comments on commit ed2ac2f

Please sign in to comment.