From 3ddeaf1085a6ad7260ab5b87ab47eeb3a957af72 Mon Sep 17 00:00:00 2001 From: anishfyle Date: Mon, 18 Nov 2024 08:07:44 +0530 Subject: [PATCH] feat: auto enable accounting period --- apps/workspaces/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/workspaces/models.py b/apps/workspaces/models.py index cbd027c6..95c4473e 100644 --- a/apps/workspaces/models.py +++ b/apps/workspaces/models.py @@ -104,7 +104,7 @@ class WorkspaceGeneralSettings(models.Model): import_items = models.BooleanField(default=False, help_text='Auto import Items to Fyle') import_projects = models.BooleanField(default=False, help_text='Auto import projects to Fyle') import_tax_codes = models.BooleanField(default=False, help_text='Auto import tax codes to Fyle', null=True) - change_accounting_period = models.BooleanField(default=False, help_text='Export Expense when accounting period is closed') + change_accounting_period = models.BooleanField(default=True, help_text='Export Expense when accounting period is closed') charts_of_accounts = ArrayField(base_field=models.CharField(max_length=100), default=get_default_chart_of_accounts, help_text='list of chart of account types to be imported into Fyle') memo_structure = ArrayField(base_field=models.CharField(max_length=100), default=get_default_memo_fields, help_text='list of system fields for creating custom memo') auto_map_employees = models.CharField(max_length=50, help_text='Auto Map Employees type from QBO to Fyle', null=True)