Skip to content

Commit

Permalink
Enable Tax Override (#648)
Browse files Browse the repository at this point in the history
* Enable Tax Override

* Add migrations

---------

Co-authored-by: GitHub Actions <[email protected]>
  • Loading branch information
ruuushhh and GitHub Actions authored Jul 16, 2024
1 parent b3b0ac9 commit db4aa4e
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 2024-07-16 04:16

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('workspaces', '0044_workspacegeneralsettings_is_tax_override_enabled'),
]

operations = [
migrations.AlterField(
model_name='workspacegeneralsettings',
name='is_tax_override_enabled',
field=models.BooleanField(default=True, help_text='Tax Override Enabled'),
),
]
2 changes: 1 addition & 1 deletion apps/workspaces/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class WorkspaceGeneralSettings(models.Model):
skip_cards_mapping = models.BooleanField(default=False, help_text='Skip cards mapping')
import_vendors_as_merchants = models.BooleanField(default=False, help_text='Auto import vendors from qbo as merchants to Fyle')
is_multi_currency_allowed = models.BooleanField(default=False, help_text='Multi Currency Allowed')
is_tax_override_enabled = models.BooleanField(default=False, help_text='Tax Override Enabled')
is_tax_override_enabled = models.BooleanField(default=True, help_text='Tax Override Enabled')
name_in_journal_entry = models.CharField(
max_length=100,
help_text='Name in journal entry for ccc expense only',
Expand Down

0 comments on commit db4aa4e

Please sign in to comment.