diff --git a/fyle_accounting_mappings/views.py b/fyle_accounting_mappings/views.py index d8bf3d8..8559570 100644 --- a/fyle_accounting_mappings/views.py +++ b/fyle_accounting_mappings/views.py @@ -253,7 +253,7 @@ def get(self, request, *args, **kwargs): source_category__value='Activity', workspace_id=self.kwargs['workspace_id']).first() else: activity_mapping = Mapping.objects.filter( - source_type='CATEGORY', source___value='Activity', workspace_id=self.kwargs['workspace_id']).first() + source_type='CATEGORY', source__value='Activity', workspace_id=self.kwargs['workspace_id']).first() if activity_attribute_count and not activity_mapping: mapped_attributes_count += activity_attribute_count diff --git a/setup.py b/setup.py index c7835ab..958fbc8 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name='fyle-accounting-mappings', - version='1.34.6', + version='1.34.7', author='Shwetabh Kumar', author_email='shwetabh.kumar@fyle.in', description='Django application to store the fyle accounting mappings in a generic manner',