-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixing dependent fields get function #80
Conversation
@@ -18,9 +18,13 @@ def __init__(self, version, role): | |||
super().__init__(version, role, ExpenseFields.EXPENSE_FIELDS) | |||
|
|||
|
|||
def get_dependent_expense_field_values(self): | |||
def get_dependent_expense_field_values(self, expense_field_id, parent_expense_field_id): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add type
|
||
|
||
class DependentFieldValues(ListResources, ListAllResources, PostResources, GetResources): | ||
"""Class for Expense Fields APIs.""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dependent Expense Fields APIs."""
@@ -25,6 +26,7 @@ | |||
employees = Employees(version, role) | |||
projects = Projects(version, role) | |||
expense_fields = ExpenseFields(version, role) | |||
dependent_field_values = DependentExpenseFieldValues(version, role) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dependent_expense_field_values
No description provided.