Skip to content
Merged
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
8 changes: 4 additions & 4 deletions packages/control/chargelog/chargelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,13 +313,13 @@ def get_log_data(request: Dict):
)
continue
if (
"rfid" in request["filter"]["vehicle"] and
len(request["filter"]["vehicle"]["rfid"]) > 0 and
entry["vehicle"]["rfid"] not in request["filter"]["vehicle"]["rfid"]
"tag" in request["filter"]["vehicle"] and
len(request["filter"]["vehicle"]["tag"]) > 0 and
entry["vehicle"]["rfid"] not in request["filter"]["vehicle"]["tag"]
):
log.debug(
"Verwerfe Eintrag wegen ID Tag: %s != %s" %
(str(entry["vehicle"]["rfid"]), str(request["filter"]["vehicle"]["rfid"]))
(str(entry["vehicle"]["rfid"]), str(request["filter"]["vehicle"]["tag"]))
)
continue
if (
Expand Down
8 changes: 4 additions & 4 deletions packages/modules/web_themes/standard_legacy/web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1088,12 +1088,12 @@ <h4 class="modal-title">
updatePriceChart();
});

$('#maxPriceCancel').click(function () {
clearPriceForm();
});

$('#maxPriceOk').click(function () {
submitPriceForm();
// clearPriceForm();
});

$('#maxPriceModal').on('hidden.bs.modal', function (event) {
clearPriceForm();
});

Expand Down