From 5bcca832ee1bc720374eb0cc33268a9631dd77a7 Mon Sep 17 00:00:00 2001 From: Ashwin Thanaraj <37061471+ashwin1111@users.noreply.github.com> Date: Thu, 9 May 2024 17:17:40 +0530 Subject: [PATCH] Fix netsuite mapping stats (#107) --- fyle_accounting_mappings/views.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fyle_accounting_mappings/views.py b/fyle_accounting_mappings/views.py index c70468b..1112d18 100644 --- a/fyle_accounting_mappings/views.py +++ b/fyle_accounting_mappings/views.py @@ -219,7 +219,7 @@ def get(self, request, *args, **kwargs): mapped_attributes_count = EmployeeMapping.objects.filter( **filters, workspace_id=self.kwargs['workspace_id'] ).count() - elif source_type == 'CATEGORY' and app_name in ['INTACCT', 'Sage 300 CRE', 'Dynamics 365 Business Central']: + elif source_type == 'CATEGORY' and app_name in ['INTACCT', 'Sage 300 CRE', 'Dynamics 365 Business Central', 'NetSuite']: filters = {} if destination_type == 'ACCOUNT': diff --git a/setup.py b/setup.py index 79ede74..eb6cf9c 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name='fyle-accounting-mappings', - version='1.32.1', + version='1.32.2', author='Shwetabh Kumar', author_email='shwetabh.kumar@fyle.in', description='Django application to store the fyle accounting mappings in a generic manner',