Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
Ross Perry authored and Ross Perry committed Nov 21, 2024
1 parent 62fadab commit 7c04a45
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1004,7 +1004,6 @@ angular.module('SEED.controller.portfolio_summary', [])
enableSorting: false,
minRowsToShow: 1,
onRegisterApi: (gridApi) => {
console.log('registerd');
$scope.summaryGridApi = gridApi;
}
};
Expand Down
8 changes: 0 additions & 8 deletions seed/views/v3/goals.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,6 @@ def data(self, request, pk):
only_used=False,
include_related=False,
)
# need metric 1
# need metric 2
show_columns = list(Column.objects.filter(organization_id=org_id).values_list("id", flat=True))
key1, key2 = ("baseline", "current") if baseline_first else ("current", "baseline")

Expand Down Expand Up @@ -279,12 +277,6 @@ def data(self, request, pk):
property["eui_change"] = percentage(property["baseline_eui"], property["current_eui"])

properties.append(property)
# UNIT ERRORS, need to convert quantity to number
# not mine, but others. check taxlot property serialize unit conversion.
# SHOULD REALLY HAVE A SHORT LIST OF COLUMNS

# PAGINATION
# FILTERS

return JsonResponse(
{
Expand Down

0 comments on commit 7c04a45

Please sign in to comment.