Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions care/emr/api/viewsets/invoice.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ class InvoiceFilters(filters.FilterSet):
is_refund = filters.BooleanFilter()
payment_reconciliation_present = DummyBooleanFilter()
created_by = filters.UUIDFilter(field_name="created_by__external_id")
created_date = filters.DateTimeFromToRangeFilter(field_name="created_date")
Comment thread
nandkishorr marked this conversation as resolved.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need to explicitly state the field name if its the same as the filter name



class AttachChargeItemToInvoiceRequest(BaseModel):
Expand Down
Loading