Skip to content
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

expose year_of_audit in engagement views #391

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
4.7.15
----
* Exposed year_of_audit in two engagement views.

4.7.14
----
* Fix logic error extract_longitude function
Expand Down
2 changes: 1 addition & 1 deletion src/etools_datamart/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
NAME = "etools-datamart"
VERSION = __version__ = "4.7.14"
VERSION = __version__ = "4.7.15"
__author__ = ""
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ class Meta(DataMartSerializer.Meta):
"partner",
"agreement",
"po_item",
"year_of_audit",
)


Expand Down Expand Up @@ -121,6 +122,7 @@ class Meta(DataMartSerializer.Meta):
"action_points",
"status",
"audit_opinion",
"year_of_audit",
)

def get_partner(self, obj):
Expand Down