From bd7c3292143b92ccc231d45fc58d679ca13ad711 Mon Sep 17 00:00:00 2001 From: Nilesh Pant <58652823+NileshPant1999@users.noreply.github.com> Date: Tue, 9 Jan 2024 17:52:02 +0530 Subject: [PATCH] add sage 300 in the stats view (#96) --- 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 397c1c7..470f5d7 100644 --- a/fyle_accounting_mappings/views.py +++ b/fyle_accounting_mappings/views.py @@ -220,7 +220,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 == 'INTACCT': + elif source_type == 'CATEGORY' and app_name in ['INTACCT', 'Sage 300 CRE']: filters = {} if destination_type == 'ACCOUNT': diff --git a/setup.py b/setup.py index d6003e8..0cb7163 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name='fyle-accounting-mappings', - version='1.29.0', + version='1.29.1', author='Shwetabh Kumar', author_email='shwetabh.kumar@fyle.in', description='Django application to store the fyle accounting mappings in a generic manner',