Skip to content

Commit

Permalink
Make Simplify Report Closure enabled by true (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwin1111 authored Mar 21, 2023
1 parent 5da8713 commit 3ff2bb4
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions apps/workspaces/migrations/0038_auto_20230321_0732.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.1.14 on 2023-03-21 07:32

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('workspaces', '0037_auto_20230125_0735'),
]

operations = [
migrations.AlterField(
model_name='workspacegeneralsettings',
name='is_simplify_report_closure_enabled',
field=models.BooleanField(default=True, help_text='Simplify report closure is enabled'),
),
]
2 changes: 1 addition & 1 deletion apps/workspaces/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class WorkspaceGeneralSettings(models.Model):
auto_create_merchants_as_vendors = models.BooleanField(default=False, help_text='Auto create Fyle Merchants as QBO vendors')
sync_fyle_to_qbo_payments = models.BooleanField(default=False, help_text='Auto Sync Payments from Fyle to QBO')
sync_qbo_to_fyle_payments = models.BooleanField(default=False, help_text='Auto Sync Payments from QBO to Fyle')
is_simplify_report_closure_enabled = models.BooleanField(default=False,
is_simplify_report_closure_enabled = models.BooleanField(default=True,
help_text='Simplify report closure is enabled')
category_sync_version = models.CharField(default='v2', max_length=50, help_text='Category sync version')
je_single_credit_line = models.BooleanField(default=False, help_text='Single Credit Line for Journal Entries')
Expand Down

0 comments on commit 3ff2bb4

Please sign in to comment.