Skip to content
Snippets Groups Projects
Commit 327e19c2 authored by Thomas Bock's avatar Thomas Bock :speech_balloon:
Browse files

+dcc statements

parent 17464d8e
No related branches found
No related tags found
No related merge requests found
...@@ -214,7 +214,8 @@ class Trans: ...@@ -214,7 +214,8 @@ class Trans:
"respPerson":[utils.dcc_resp_person(cal_docs, maintainers), "respPerson":[utils.dcc_resp_person(cal_docs, maintainers),
utils.dcc_meas_maintainer(cal_docs, maintainers)]}, utils.dcc_meas_maintainer(cal_docs, maintainers)]},
"customer": utils.dcc_customer(cal_docs, countries), "customer": utils.dcc_customer(cal_docs, countries),
"dccSoftware":utils.dcc_software(cal_docs)}, "dccSoftware":utils.dcc_software(cal_docs),
"statements": utils.dcc_statements(cal_docs)},
"measurementResults":{ "measurementResults":{
"name":[{"lang":"de", "name":[{"lang":"de",
"content":["Ergebnis der Kalibrierung"]}, "content":["Ergebnis der Kalibrierung"]},
......
...@@ -474,6 +474,31 @@ def dcc_software(cal_docs): ...@@ -474,6 +474,31 @@ def dcc_software(cal_docs):
ret.append(res) ret.append(res)
return ret return ret
def dcc_statements(cal_docs):
return {"statement":[{"norm": "DIN EN ISO/IEC 17025:2018-03",
"reference": "7.8.2.1 l)",
"description":[{"lang":"de",
"content":"Die Ergebnisse beziehen sich nur auf den in diesem DCC beschriebenen Gegenstand."},
{"lang":"en",
"content":"The results refer only to the object calibrated in this DCC."}]},
{"norm": "DIN EN ISO/IEC 17025:2018-03",
"reference": "7.8.4.3",
"declaration":[{"lang":"de",
"content":"Die Ergebnisse gelten zum Zeitpunkt der Kalibrierung. Es obliegt dem Antragsteller, zu gegebener Zeit eine Rekalibrierung zu veranlassen."},
{"lang":"en",
"content":"The results refer only to the object calibrated in this DCC. The measurement results are valid at the time of calibration. The applicant is responsible for arranging a recalibration in due time."}]},
{"convention": "CIPM-MRA",
"valid":True},
{"convention": "Tracebility",
"traceable":True,
"declaration":[{"lang":"de",
"content":"Die Messung ist rückführbar."},
{"lang":"en",
"content":"The measurement is traceable."}]}]}
def dcc_analysis_software(cal_docs): def dcc_analysis_software(cal_docs):
doc = cal_docs[-1] doc = cal_docs[-1]
name, release = get_analysis_software(doc) name, release = get_analysis_software(doc)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment