Skip to content

Commit

Permalink
adding acctCorpCardExp key to expense report payload (#68)
Browse files Browse the repository at this point in the history
adding acctCorpCardExp key to expense report payload
  • Loading branch information
Sravanksk authored Oct 4, 2021
1 parent 30c499f commit c80c1cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions netsuitesdk/api/expense_reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ def post(self, data) -> OrderedDict:
if 'supervisorApproval' in data:
er['supervisorApproval'] = data['supervisorApproval']

if 'acctCorpCardExp' in data:
er['acctCorpCardExp'] = data['acctCorpCardExp']

if 'externalId' in data:
er['externalId'] = data['externalId']

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name='netsuitesdk',
version='2.6.0',
version='2.6.1',
author='Siva Narayanan',
author_email='[email protected]',
description='Python SDK for accessing the NetSuite SOAP webservice',
Expand Down

0 comments on commit c80c1cb

Please sign in to comment.