Skip to content

Commit

Permalink
feat: auto enable accounting period
Browse files Browse the repository at this point in the history
  • Loading branch information
anishfyle committed Nov 18, 2024
1 parent 7ae5979 commit 3ddeaf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/workspaces/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 3ddeaf1

Please sign in to comment.