Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
NileshPant1999 committed Dec 4, 2024
1 parent 5659af3 commit 974b24a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/xero/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def get_expense_purpose(workspace_id, lineitem, category, workspace_general_sett

details = {
'employee_email': lineitem.employee_email,
'merchant': '{} - '.format(lineitem.vendor) if lineitem.vendor else '',
'merchant': '{}'.format(lineitem.vendor) if lineitem.vendor else '',
'category': '{0}'.format(category) if lineitem.category else '',
'purpose': '{0}'.format(lineitem.purpose) if lineitem.purpose else '',
'report_number': '{0}'.format(lineitem.claim_number),
Expand Down

0 comments on commit 974b24a

Please sign in to comment.