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

Add Import Export to Audit Template #4215

Merged
merged 79 commits into from
Sep 27, 2023
Merged

Add Import Export to Audit Template #4215

merged 79 commits into from
Sep 27, 2023

Conversation

perryr16
Copy link
Contributor

@perryr16 perryr16 commented Sep 6, 2023

Any background context you want to provide?

SEED currently has functionality to update an individual property with Audit Template building data. The function leverages the Audit Template API endpoint GET /api/v2/building_sync/download/rp/buildings/:id. The returned XML is used to create a new PropertyState and associate it with the current PropertyView.

What's this PR do?

Import Features


Adds the ability to batch update properties with data from audit template.

From the Data page, a user may now import Audit Template Buildings via the Add Data Files button. A request is sent to the linked Audit Template account to get all buildings associated with the account details at GET /api/v2/rp/buildings. Backend logic determines which audit tempatae buildings match existing properties for the selected cycle. Matching is solely based on the PropertyState field audit_template_building_id. The results are displayed to the user where they may sort/filter results and select which properties to continue to update. Selected properties are looped through and XML files are fetched from the Audit Template API endpoint GET /api/v2/building_sync/download/rp/buildings/:id. PropertyViews are updated with the corresponding XMLs.

All Audit Template requests are made within the seed_celery container.

The current implementation can lead to very long wait times. For example, a request to get a building xml for a single building takes ~ 5 seconds. Updating 1000 properties would take about an hour and a half to complete.

The only property that exists in both the PropertyState and the Audit Template Tool is audit_template_building_id (id on Audit Template). This requires SEED properties to be updated with correct audit_tempalte_building_ids which can be time consuming.

If the matching criteria were to change, the audit template get_buildings response must be updated to include properties like pm_property_id, ubid, or custom_id. Below is the current response structure.

GET /api/v2/rp/buildings
[{
    "id": 369,
    "name": "New Buildng",
    "owner": {
        "id": 877,  "email": "[test](mailto:test@nrel.gov)", "first_name": "test",
        "last_name": "test",  "organization": { "id": 9, 
        "name": "National Renewable Energy Laboratory - SEED Project" }, 
        "site_admin": false,  "type": "User" 
     },
    "report": {
      "id": 2, "name": "New York City Energy Efficiency Report",
      "city": { "id": 2, "name": "New York", "state": "NY" }
    },
   "status": "Editing",
   "submissions": [],
   "created_at": "2018-08-22T12:21:43.519-07:00",
   "updated_at": "2023-04-04T12:31:04.100-07:00",
   "html_url": "<html_url>",
   "submission_history_html_url": "<history_url>",
   "xml_url":  "<xml_url>"
  },
   ….
]

Export Features


From the inventory list a selection of properties can be exported to the linked Audit Template account. Properties that already have an Audit Template Building ID will be skipped as Audit Template does not have an update feature and will result in duplicates. For valid properties, an XML file will be created for each. Because of Audit Template import requirements, XML's will be limited to the following fields: address_line_1, city, gross_floor_area, postal_code, property_name, state, year_built, and report type (set as an organization setting). Properties that do not meet the requirements will be skipped.

The Organization settings have a new "Audit Template" tab where a user can select the organization-wide report type from an accepted list of valid report types.

This process is initiated from the inventory list actions. A new Export to AT modal directs users through the export process showing a confirmation, a status bar, and results.

Next Steps

Currently, the export process only applies the hardcoded to the fields listed above. Investigate what it would take to have a more dynamic property to xml process. This would be loosely the inverse of the /building_sync/mappings.py BASE_MAPPING_V2

Known issues

  • In the import modal, filtering the Audit template buildings only supports exact matches at the moment, not '<10', '>20'

  • The report type "New York City Energy Efficiency Report" fails to export to Audit Template and it has been removed from the selectable report types.

How should this be manually tested?

1. Export a stub to Audit Template

Inventory List > Select a number of properties > Actions > Export to Audit Template and go through the prompts
Test with 3 different property scenarios

  • Valid properties: properties that have address_line_1, city, gross_floor_area, postal_code, property_name, state, year_built and no audit_template_building_id
  • Existing properties: properties that have already been uploaded to AT or imported from AT. These are any property that already has an audit_template_building_id
  • Invalid properties: properties that are missing any of the above fields.

2. Update values on Audit Template

Log into your audit template account and make a change to the property, ex: change gross floor area

3. Import audit template data

Data > Add Data Files > Import Audit Template Buildings > Confirm > select properties > Update
The inventory should reflect the changes made on Audit Template

What are the relevant tickets?

#3770

Screenshots (if appropriate)

Export

Screenshot 2023-09-07 at 4 18 22 PM
Screenshot 2023-09-07 at 4 18 30 PM
Screenshot 2023-09-07 at 4 19 09 PM

Screenshot 2023-09-08 at 11 39 04 AM
Screenshot 2023-09-08 at 11 39 09 AM

Import

Screenshot 2023-07-26 at 9 41 18 AM
Screenshot 2023-07-26 at 9 41 23 AM
Screenshot 2023-07-26 at 9 41 34 AM

Screenshot 2023-07-26 at 9 43 03 AM
Screenshot 2023-07-26 at 9 43 13 AM
Screenshot 2023-07-26 at 9 43 24 AM

Copy link
Contributor

@kflemin kflemin left a comment

Choose a reason for hiding this comment

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

apart from the minor tweaks we discussed, this is great!🏆

@perryr16
Copy link
Contributor Author

Updates based on feedback from @kflemin:

  • Imported AT XMLs were overwriting the SEED column "Property Name" with a "Building ID". The mapping has been removed and existing Property Names will not be overwritten.
  • Added inventory detail action "Export to Audit Template"
  • The "Only show populated columns" action failed to show "Audit Template Updated". The action uses property state history to determine which columns to show. "Audit Template Updated" needed to be appended to the PropertyState associated with the xml BuildingFile
  • Export modal results table styling
    Screenshot 2023-09-15 at 2 33 49 PM

@kflemin kflemin self-requested a review September 20, 2023 20:50
Copy link
Contributor

@kflemin kflemin left a comment

Choose a reason for hiding this comment

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

🏆

@kflemin
Copy link
Contributor

kflemin commented Sep 20, 2023

@perryr16, can you get this PR updated w/ develop. once that's done I think it's ready for @axelstudios's final review and merge!

@perryr16 perryr16 changed the title Add Export to Audit Template Add Import Export to Audit Template Sep 22, 2023
# Conflicts:
#	seed/models/scenarios.py
#	seed/tests/test_account_views.py
@axelstudios axelstudios merged commit 55031b6 into develop Sep 27, 2023
4 of 7 checks passed
@axelstudios axelstudios deleted the 3770-batch-AT-export branch September 27, 2023 20:37
nllong added a commit that referenced this pull request Oct 1, 2023
* Remove Deprecated APIs (#4049)

* Remove deprecated endpoints

* Update tests

* Remove additional code related to API v2

* Add ubid_threshold to expected org response

* Lock `google-chrome` to v114 (#4165)

Lock chrome version to webdriver version

* Bump word-wrap from 1.2.3 to 1.2.4 (#4154)

Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.4.
- [Release notes](https://github.com/jonschlinkert/word-wrap/releases)
- [Commits](jonschlinkert/word-wrap@1.2.3...1.2.4)

---
updated-dependencies:
- dependency-name: word-wrap
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>

* Fix a few code-formatting issues (#4172)

* run autopep to cleanup a few straggling issues

* Run precommit against migrations

* Cleanup unnecessary logging

---------

Co-authored-by: Alex Swindler <Alex.Swindler@nrel.gov>

* Add Open Street Map to CSP rules (#4169)

* add error handling for sf edge case (#4159)

add error handldling for sf edge case

Co-authored-by: Hannah Eslinger <heslinge@nrel.gov>
Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>

* Remove ID from inventory document display name (#4125)

remove id from inventory doc on inv det

* Set the MEDIA_ROOT path back to original value during test (#4174)

* set the mediaroot path back to where it started

* naming

* Optimize list analyses endpoint (#4206)

* Optimize list analyses endpoint

* Add outputfiles back in

* Fix

* Make it even faster

* Move analyses endpoint (#4210)

* Add new `create_property` and `update_with_espm` endpoint (#4012)

* 179d create_property endpoint

* precommit

* adding property id, state id, and view id to create response

* Partial fixes for handling bad data

* Verify property exists and belongs to org

* start of new serializer and controlling extra_data fields for 179d

* fix property create endpoint

* Formatting

* fix org_id on column views

* add report_format to PM download so spreadsheet can be downloaded

* updating BAE and small tweak since assets are now typed

* update BAE processing in reader

* updating BAE to v0.1.14

* remove uneeded view

* Add ESPM download for single property (via API) (#4158)

* add single property download method

* add viewset for downloading single espm report

* fix BAE migration and update swagger schema

* rename pm report single to download

* update lokalise notes and pull from latest from website

* initial commit with a new update with ESPM function. need to get the backend method finished

* enable udpate_with_espm

* add test and column mapping profile helper to load in the data

* fix example file that was downloaded from espm

* fix comment formats

* file paths

* style espm modal and fix both upload methods

* put tmp files into the projects media dir

* add column mapping profile param to update_with_espm

* put tmp files into the projects media dir

* add status to dresponse for pyseed

* do not save in media_root

* precommit

* allow different urls for better and at during testing

* return the mapping profile object when creating from file

* add tests to ensure read_only fields are protected

* Update models.py

* Update models.py

* - Removed broken `property_id` option
- Fixed extra_data columns to only ones that actually apply
- Changed `merge_state` from 0 to 1
- Added ValueError handling

* Small fixes

* Fix 179d ESPM update endpoint to run in foreground with Celery enabled (#4211)

* Fixed bae object accessors

* create two new methods for running save_raw and map to the foreground

* fix type

---------

Co-authored-by: Alex Swindler <Alex.Swindler@nrel.gov>

---------

Co-authored-by: Nicholas Long <1907354+nllong@users.noreply.github.com>
Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>
Co-authored-by: Nicholas Long <nicholas.long@nrel.gov>

* Fix display name (#4223)

* Fix refresh_metadata (#4221)

* Fix refresh_metadata

* Rename

* Bump uwsgi from 2.0.17.1 to 2.0.22 in /requirements (#4209)

Bumps [uwsgi](https://github.com/unbit/uwsgi-docs) from 2.0.17.1 to 2.0.22.
- [Commits](https://github.com/unbit/uwsgi-docs/commits)

---
updated-dependencies:
- dependency-name: uwsgi
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>

* Remove Beta label from text of analysis button  (#4225)

remove beta from analysis

Co-authored-by: Nicholas Long <1907354+nllong@users.noreply.github.com>

* Fix Meters Without `source_id` (#4229)

Fix showing meter readings for meters without `source_id`

* Fix performance for fetching analyses and force user email to lowercase (#4213)

* Set username to lowercase when updating user info

* Removed unnecessary prefetch from analyses retrieval

---------

Co-authored-by: Hannah Eslinger <heslinge@nrel.gov>
Co-authored-by: Nicholas Long <1907354+nllong@users.noreply.github.com>

* EEEJ Analysis Functionality (#4208)

* eeej analysis

* precommit

* precommit

* add EJScreen

* update eeej analysis to link to EJScreen report

* adding analysis description for eeej

* Fix display name

* fix for analysis reruns

* cleanup

* fix eeej tests

* cleanup

* fix searching for string in a NoneType

* set manual geocoding

* fix geocode tests and add census to geocode summary

* fix typos

* geocode with lat/lng over address if available

* add copyright text

* small doc formatting cleanup

* cleanup

* oops, missed this formatting

---------

Co-authored-by: Nicholas Long <1907354+nllong@users.noreply.github.com>
Co-authored-by: Hannah Eslinger <heslinge@nrel.gov>
Co-authored-by: Nicholas Long <nicholas.long@nrel.gov>

* Show Analysis `debug_message` If Available (#4198)

Show analysis debug_message if available

Co-authored-by: Katherine Fleming <2205659+kflemin@users.noreply.github.com>

* Use display name in custom reports legend (#4060)

* Use display name in custom reports legend

* Fix docker compose

* Fix Tests

* Address comment

* Clean

---------

Co-authored-by: Katherine Fleming <2205659+kflemin@users.noreply.github.com>

* Allow analysis property view related properties to be null (#4227)

* update ondelete buildingfile > event > scenarios

* update relationhsip to null when a property is deleted

* add warning triangle

* remove checkbox to delete analyses with properties

* precommit

* reorder migrations

* reset

* remove commit from outside branch

* add warning to analyses page

* styles

* Update migrations

---------

Co-authored-by: Hannah Eslinger <heslinge@nrel.gov>

* Add more API documentation for meter and meter readings (#4237)

* add more api doc info on meter and meter reading endpoints

* Improved nested documentation, added swagger support for enums, sorted meter readings

---------

Co-authored-by: Alex Swindler <Alex.Swindler@nrel.gov>

* Update inventory selection to include current inventory type only (#3862)

filter selection by current invetory type and return its length

Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>

* Update default meter range selection for BETTER analysis (#3819)

* Show all navs in org

* reverse the default better meter selection

* Allow analysis to be by range or cycle

* html updates to add cycle to BETTER

* revert to allow merge

* select cycle for better

* update docker-dev better api endpoint

* modify valid meter data to accept cycle start and end dates

* precommit

* formatting

* remove console and updat better url

* merge conflicts

* order

* default current cycle to eui and better on select_cycle

* Simplified

---------

Co-authored-by: Hannah Eslinger <heslinge@nrel.gov>
Co-authored-by: Alex Chapin <a.n.chapin@gmail.com>
Co-authored-by: Ryo <kyle.schulz@devetry.com>
Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>

* Delete BuildingFiles and Related Events on PropertyState delete (#4217)

* update ondelete buildingfile > event > scenarios

* precommit

* delete scenario if event is deleted

* cascade over nothing

* Renumber migration

---------

Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>

* Fixed Issues with Scenario/Measure CRUD Operations (#4240)

Fixed issues with scenario/measure CRUD operations, cherry-picked from a640926

* Add a cycle indicator to the analysis modal and filter analyses for current cycle (#3837)

* expose current cycle on new analysis modal

* display analysis associated with cycle

* refactor help text

* add cycle indicator to analysis_card

* syntax

* refactor for clarity

* add cycle_name to analysis display tables

* add cycle dropdown to inventory detail analyses page

* find analyses relavent to current cycle

* precommit

* formatting

* remove debug logs

* clarifying note

* consistency

* Fixed ui-router navigation

---------

Co-authored-by: Alex Swindler <Alex.Swindler@nrel.gov>

* Disable ability to remove matching criteria fields once inventory is added (#4222)

* update ondelete buildingfile > event > scenarios

* base for locked matching criteria

* refactor for clarity

* remove matching preview from frontend

* remove matching preview from backend

* translations

* precommit

* remove unrelated migration

* revert

* update tests

---------

Co-authored-by: Hannah Eslinger <heslinge@nrel.gov>
Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>

* Add smaller EEEJ data files for testing (#4243)

add smaller EEEJ data files for testing

* Add Uniformat Table (#4238)

* Add uniformat

* Minor fixes

---------

Co-authored-by: Nicholas Long <1907354+nllong@users.noreply.github.com>

* Fix Meter Overwrites (#4250)

* add test to make sure meter readings do not overwrite

* Fixed major bug where inserting a single meter reading would delete any existing readings for any meter with the same start time
- Added the ability for inserting bulk meter readings to update existing data
- Sanitized sql inputs in `copy_readings`

* Simplification

* EEEJ test fix

* add test to test overwrite of bulk meter import

---------

Co-authored-by: Nicholas Long <nicholas.long@nrel.gov>
Co-authored-by: Nicholas Long <1907354+nllong@users.noreply.github.com>

* Fix filter group dropdown bugs (#4249)

Fix for filter group dropdown issues

Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>

* Add Import Export to Audit Template (#4215)

* base for at get buildings

* base batch at import functional from frontend button

* frontend confirm before upating with at

* frontend triggers backend batch update

* functional but missing real time progress updates

* functional with progress

progress is moving, but cant get back to frontend

properties updating, progress bar only 50%

functional with progress

* cleanup

* precommit

* summary and date formatting

* bad credentials guards

* test for full at import and property update

* precommit

* sample buildingsync xml file

* swagger documentation

* request validation

* precommit

* comment cleanup

* comment cleanup

* improve tests and disable update until selection

* translate

* lokalise translations

* function description

* update view permissions

* clarify error message logic

* precommit

* add name to at building summary

* add at_updated_at to pstate on at import, prevent duplicate uploads

* create column on at import to display and compare

* include translation

* update tests

* precommit

* precommit

* remove translation

* build bsync xml from pstate

* multiple iterations for xml export

* base for batch export to at

* add audit_template_report_type to org model

* test cleanup

* add audit_template_report_type to org model

* add at report type to org settings

* update batch test

* toggle at password visibility

* move batch export to celery

* export properties to at from inv list actions

* backfill org audit_template_report_type

* mock tests for export to audit template

* phrasing

* refactor export results

* build out export results table

* precommit

* revert

* precommit

* download current lokalise files

* add default display field to failed exports

* incorporate audit template report type in test

* request body to be a dict not list

* add translations

* update ondelete buildingfile > event > scenarios

* remove property name from inventory and expand modal

* update states to reflect at_updated

* add export to at from inv det actions

* precommit

* merge develop

* migration conflict

* Renumber migrations

* Small fixes

* Privilege enforcement

---------

Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>

* Fix EEEJ analysis errors when there are no lat/long or address (#4247)

* fix eeej analysis errors

* add eeej to tasks and fix for non-eager celery

* Fix for dict key types changing based on ALWAYS_EAGER

* fixes!

* Simplification

---------

Co-authored-by: Nicholas Long <1907354+nllong@users.noreply.github.com>
Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>

* Add envvar to specify loading test EEEJ dataset (#4254)

* add envvar to specify loading test EEEJ dataset

* slight mod to support strings as boolean values

---------

Co-authored-by: Nicholas Long <1907354+nllong@users.noreply.github.com>

* Default to excluding Address Line 1 as a matching criteria (#4256)

* Default to excluding Address Line 1 for matching

* [WIP] Fix some tests

* update tests for address_line_1 default matching criteria removal

---------

Co-authored-by: Nicholas Long <1907354+nllong@users.noreply.github.com>
Co-authored-by: Hannah Eslinger <heslinge@nrel.gov>
Co-authored-by: Nicholas Long <nicholas.long@nrel.gov>

* Bump version (#4259)

* bump versions

* current change log

* add remaining two PRs before release

* Refactor map page for functionality and performance (#4260)

* Major map/eeej/layout improvements

* Added tract shading, database indices

* Fix test failure

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Katherine Fleming <2205659+kflemin@users.noreply.github.com>
Co-authored-by: Hannah Eslinger <heslinge@nrel.gov>
Co-authored-by: Ross Perry <perryr16@gmail.com>
Co-authored-by: ebeers-png <53191386+ebeers-png@users.noreply.github.com>
Co-authored-by: Alex Chapin <a.n.chapin@gmail.com>
Co-authored-by: Ryo <kyle.schulz@devetry.com>
nllong added a commit that referenced this pull request Oct 6, 2023
* Remove Deprecated APIs (#4049)

* Remove deprecated endpoints

* Update tests

* Remove additional code related to API v2

* Add ubid_threshold to expected org response

* Lock `google-chrome` to v114 (#4165)

Lock chrome version to webdriver version

* Bump word-wrap from 1.2.3 to 1.2.4 (#4154)

Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.4.
- [Release notes](https://github.com/jonschlinkert/word-wrap/releases)
- [Commits](jonschlinkert/word-wrap@1.2.3...1.2.4)

---
updated-dependencies:
- dependency-name: word-wrap
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>

* Fix a few code-formatting issues (#4172)

* run autopep to cleanup a few straggling issues

* Run precommit against migrations

* Cleanup unnecessary logging

---------

Co-authored-by: Alex Swindler <Alex.Swindler@nrel.gov>

* Add Open Street Map to CSP rules (#4169)

* add error handling for sf edge case (#4159)

add error handldling for sf edge case

Co-authored-by: Hannah Eslinger <heslinge@nrel.gov>
Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>

* Remove ID from inventory document display name (#4125)

remove id from inventory doc on inv det

* Set the MEDIA_ROOT path back to original value during test (#4174)

* set the mediaroot path back to where it started

* naming

* Optimize list analyses endpoint (#4206)

* Optimize list analyses endpoint

* Add outputfiles back in

* Fix

* Make it even faster

* Move analyses endpoint (#4210)

* Add new `create_property` and `update_with_espm` endpoint (#4012)

* 179d create_property endpoint

* precommit

* adding property id, state id, and view id to create response

* Partial fixes for handling bad data

* Verify property exists and belongs to org

* start of new serializer and controlling extra_data fields for 179d

* fix property create endpoint

* Formatting

* fix org_id on column views

* add report_format to PM download so spreadsheet can be downloaded

* updating BAE and small tweak since assets are now typed

* update BAE processing in reader

* updating BAE to v0.1.14

* remove uneeded view

* Add ESPM download for single property (via API) (#4158)

* add single property download method

* add viewset for downloading single espm report

* fix BAE migration and update swagger schema

* rename pm report single to download

* update lokalise notes and pull from latest from website

* initial commit with a new update with ESPM function. need to get the backend method finished

* enable udpate_with_espm

* add test and column mapping profile helper to load in the data

* fix example file that was downloaded from espm

* fix comment formats

* file paths

* style espm modal and fix both upload methods

* put tmp files into the projects media dir

* add column mapping profile param to update_with_espm

* put tmp files into the projects media dir

* add status to dresponse for pyseed

* do not save in media_root

* precommit

* allow different urls for better and at during testing

* return the mapping profile object when creating from file

* add tests to ensure read_only fields are protected

* Update models.py

* Update models.py

* - Removed broken `property_id` option
- Fixed extra_data columns to only ones that actually apply
- Changed `merge_state` from 0 to 1
- Added ValueError handling

* Small fixes

* Fix 179d ESPM update endpoint to run in foreground with Celery enabled (#4211)

* Fixed bae object accessors

* create two new methods for running save_raw and map to the foreground

* fix type

---------

Co-authored-by: Alex Swindler <Alex.Swindler@nrel.gov>

---------

Co-authored-by: Nicholas Long <1907354+nllong@users.noreply.github.com>
Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>
Co-authored-by: Nicholas Long <nicholas.long@nrel.gov>

* Fix display name (#4223)

* Fix refresh_metadata (#4221)

* Fix refresh_metadata

* Rename

* Bump uwsgi from 2.0.17.1 to 2.0.22 in /requirements (#4209)

Bumps [uwsgi](https://github.com/unbit/uwsgi-docs) from 2.0.17.1 to 2.0.22.
- [Commits](https://github.com/unbit/uwsgi-docs/commits)

---
updated-dependencies:
- dependency-name: uwsgi
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>

* Remove Beta label from text of analysis button  (#4225)

remove beta from analysis

Co-authored-by: Nicholas Long <1907354+nllong@users.noreply.github.com>

* Fix Meters Without `source_id` (#4229)

Fix showing meter readings for meters without `source_id`

* Fix performance for fetching analyses and force user email to lowercase (#4213)

* Set username to lowercase when updating user info

* Removed unnecessary prefetch from analyses retrieval

---------

Co-authored-by: Hannah Eslinger <heslinge@nrel.gov>
Co-authored-by: Nicholas Long <1907354+nllong@users.noreply.github.com>

* EEEJ Analysis Functionality (#4208)

* eeej analysis

* precommit

* precommit

* add EJScreen

* update eeej analysis to link to EJScreen report

* adding analysis description for eeej

* Fix display name

* fix for analysis reruns

* cleanup

* fix eeej tests

* cleanup

* fix searching for string in a NoneType

* set manual geocoding

* fix geocode tests and add census to geocode summary

* fix typos

* geocode with lat/lng over address if available

* add copyright text

* small doc formatting cleanup

* cleanup

* oops, missed this formatting

---------

Co-authored-by: Nicholas Long <1907354+nllong@users.noreply.github.com>
Co-authored-by: Hannah Eslinger <heslinge@nrel.gov>
Co-authored-by: Nicholas Long <nicholas.long@nrel.gov>

* Show Analysis `debug_message` If Available (#4198)

Show analysis debug_message if available

Co-authored-by: Katherine Fleming <2205659+kflemin@users.noreply.github.com>

* Use display name in custom reports legend (#4060)

* Use display name in custom reports legend

* Fix docker compose

* Fix Tests

* Address comment

* Clean

---------

Co-authored-by: Katherine Fleming <2205659+kflemin@users.noreply.github.com>

* Allow analysis property view related properties to be null (#4227)

* update ondelete buildingfile > event > scenarios

* update relationhsip to null when a property is deleted

* add warning triangle

* remove checkbox to delete analyses with properties

* precommit

* reorder migrations

* reset

* remove commit from outside branch

* add warning to analyses page

* styles

* Update migrations

---------

Co-authored-by: Hannah Eslinger <heslinge@nrel.gov>

* Add more API documentation for meter and meter readings (#4237)

* add more api doc info on meter and meter reading endpoints

* Improved nested documentation, added swagger support for enums, sorted meter readings

---------

Co-authored-by: Alex Swindler <Alex.Swindler@nrel.gov>

* Update inventory selection to include current inventory type only (#3862)

filter selection by current invetory type and return its length

Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>

* Update default meter range selection for BETTER analysis (#3819)

* Show all navs in org

* reverse the default better meter selection

* Allow analysis to be by range or cycle

* html updates to add cycle to BETTER

* revert to allow merge

* select cycle for better

* update docker-dev better api endpoint

* modify valid meter data to accept cycle start and end dates

* precommit

* formatting

* remove console and updat better url

* merge conflicts

* order

* default current cycle to eui and better on select_cycle

* Simplified

---------

Co-authored-by: Hannah Eslinger <heslinge@nrel.gov>
Co-authored-by: Alex Chapin <a.n.chapin@gmail.com>
Co-authored-by: Ryo <kyle.schulz@devetry.com>
Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>

* Delete BuildingFiles and Related Events on PropertyState delete (#4217)

* update ondelete buildingfile > event > scenarios

* precommit

* delete scenario if event is deleted

* cascade over nothing

* Renumber migration

---------

Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>

* Fixed Issues with Scenario/Measure CRUD Operations (#4240)

Fixed issues with scenario/measure CRUD operations, cherry-picked from a640926

* Add a cycle indicator to the analysis modal and filter analyses for current cycle (#3837)

* expose current cycle on new analysis modal

* display analysis associated with cycle

* refactor help text

* add cycle indicator to analysis_card

* syntax

* refactor for clarity

* add cycle_name to analysis display tables

* add cycle dropdown to inventory detail analyses page

* find analyses relavent to current cycle

* precommit

* formatting

* remove debug logs

* clarifying note

* consistency

* Fixed ui-router navigation

---------

Co-authored-by: Alex Swindler <Alex.Swindler@nrel.gov>

* Disable ability to remove matching criteria fields once inventory is added (#4222)

* update ondelete buildingfile > event > scenarios

* base for locked matching criteria

* refactor for clarity

* remove matching preview from frontend

* remove matching preview from backend

* translations

* precommit

* remove unrelated migration

* revert

* update tests

---------

Co-authored-by: Hannah Eslinger <heslinge@nrel.gov>
Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>

* Add smaller EEEJ data files for testing (#4243)

add smaller EEEJ data files for testing

* Add Uniformat Table (#4238)

* Add uniformat

* Minor fixes

---------

Co-authored-by: Nicholas Long <1907354+nllong@users.noreply.github.com>

* Fix Meter Overwrites (#4250)

* add test to make sure meter readings do not overwrite

* Fixed major bug where inserting a single meter reading would delete any existing readings for any meter with the same start time
- Added the ability for inserting bulk meter readings to update existing data
- Sanitized sql inputs in `copy_readings`

* Simplification

* EEEJ test fix

* add test to test overwrite of bulk meter import

---------

Co-authored-by: Nicholas Long <nicholas.long@nrel.gov>
Co-authored-by: Nicholas Long <1907354+nllong@users.noreply.github.com>

* Fix filter group dropdown bugs (#4249)

Fix for filter group dropdown issues

Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>

* Add Import Export to Audit Template (#4215)

* base for at get buildings

* base batch at import functional from frontend button

* frontend confirm before upating with at

* frontend triggers backend batch update

* functional but missing real time progress updates

* functional with progress

progress is moving, but cant get back to frontend

properties updating, progress bar only 50%

functional with progress

* cleanup

* precommit

* summary and date formatting

* bad credentials guards

* test for full at import and property update

* precommit

* sample buildingsync xml file

* swagger documentation

* request validation

* precommit

* comment cleanup

* comment cleanup

* improve tests and disable update until selection

* translate

* lokalise translations

* function description

* update view permissions

* clarify error message logic

* precommit

* add name to at building summary

* add at_updated_at to pstate on at import, prevent duplicate uploads

* create column on at import to display and compare

* include translation

* update tests

* precommit

* precommit

* remove translation

* build bsync xml from pstate

* multiple iterations for xml export

* base for batch export to at

* add audit_template_report_type to org model

* test cleanup

* add audit_template_report_type to org model

* add at report type to org settings

* update batch test

* toggle at password visibility

* move batch export to celery

* export properties to at from inv list actions

* backfill org audit_template_report_type

* mock tests for export to audit template

* phrasing

* refactor export results

* build out export results table

* precommit

* revert

* precommit

* download current lokalise files

* add default display field to failed exports

* incorporate audit template report type in test

* request body to be a dict not list

* add translations

* update ondelete buildingfile > event > scenarios

* remove property name from inventory and expand modal

* update states to reflect at_updated

* add export to at from inv det actions

* precommit

* merge develop

* migration conflict

* Renumber migrations

* Small fixes

* Privilege enforcement

---------

Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>

* Fix EEEJ analysis errors when there are no lat/long or address (#4247)

* fix eeej analysis errors

* add eeej to tasks and fix for non-eager celery

* Fix for dict key types changing based on ALWAYS_EAGER

* fixes!

* Simplification

---------

Co-authored-by: Nicholas Long <1907354+nllong@users.noreply.github.com>
Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>

* Add envvar to specify loading test EEEJ dataset (#4254)

* add envvar to specify loading test EEEJ dataset

* slight mod to support strings as boolean values

---------

Co-authored-by: Nicholas Long <1907354+nllong@users.noreply.github.com>

* Default to excluding Address Line 1 as a matching criteria (#4256)

* Default to excluding Address Line 1 for matching

* [WIP] Fix some tests

* update tests for address_line_1 default matching criteria removal

---------

Co-authored-by: Nicholas Long <1907354+nllong@users.noreply.github.com>
Co-authored-by: Hannah Eslinger <heslinge@nrel.gov>
Co-authored-by: Nicholas Long <nicholas.long@nrel.gov>

* Bump version (#4259)

* bump versions

* current change log

* add remaining two PRs before release

* Refactor map page for functionality and performance (#4260)

* Major map/eeej/layout improvements

* Added tract shading, database indices

* Fix test failure

* Release 2.20.0 (#4262)

Merge main release commit into develop.

* Fix the items in the 2.20.0 changelog  (#4263)

put the latest PRs in the right place

* ArcGIS CSP rule (#4265)

Add ArcGIS CSP rule

* Add documentation for cleaning up conflicting column names during migration (#4264)

* add more documentation around cleaning up columns

* Update docs/source/migrations.rst

Co-authored-by: Katherine Fleming <2205659+kflemin@users.noreply.github.com>

* Update docs/source/migrations.rst

Co-authored-by: Katherine Fleming <2205659+kflemin@users.noreply.github.com>

---------

Co-authored-by: Katherine Fleming <2205659+kflemin@users.noreply.github.com>

* Update changelog for 2.20.0 (#4268)

add 2 remaining items for release

* Fix edge case for map label filtering (#4270)

Fix ids that are used for map filtering

* Update changelog (#4272)

one more entry

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Alex Swindler <alex.swindler@nrel.gov>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Katherine Fleming <2205659+kflemin@users.noreply.github.com>
Co-authored-by: Hannah Eslinger <heslinge@nrel.gov>
Co-authored-by: Ross Perry <perryr16@gmail.com>
Co-authored-by: ebeers-png <53191386+ebeers-png@users.noreply.github.com>
Co-authored-by: Alex Chapin <a.n.chapin@gmail.com>
Co-authored-by: Ryo <kyle.schulz@devetry.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Audit Template Feature Add this label to new features. This will be reflected in the change log when generated.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants