fix new document json

This commit is contained in:
Cayo Puigdefabregas 2024-11-27 16:53:31 +01:00
parent e2078c7bde
commit 80b4c3b4ca

View file

@ -107,16 +107,18 @@ class PublicDeviceWebView(TemplateView):
# did=last_dpp.key, host=app.config.get('HOST')
# )
# data['url_last'] = url_last
# for c in self.dpp.snapshot.components:
# components.append({c.type: c.chid})
# return result
dpps = []
for d in self.device.dpps:
self.object.initial()
for d in self.object.evidences:
d.get_doc()
ev = json.dumps(d.doc)
rr = {
'dpp': d.key,
'document': d.snapshot.json_hw,
'document': ev,
'algorithm': ALGORITHM,
'manufacturer DPP': '',
}