Skip to content
Snippets Groups Projects
Verified Commit 528a53ee authored by Jan Loewe's avatar Jan Loewe :speech_balloon:
Browse files

fix(namespace): fix namespaces

parent 8fc3189e
No related branches found
No related tags found
No related merge requests found
...@@ -11,16 +11,16 @@ export class DigitalCalibrationCertificate extends XMLElement { ...@@ -11,16 +11,16 @@ export class DigitalCalibrationCertificate extends XMLElement {
this._attr = { this._attr = {
"xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"xsi:schemaLocation": "https://intranet.ptb.de/fileadmin/dokumente/intranet/abteilungen/abteilung_1/Digitaler_Kalibrierschein/DCC dcc.xsd", "xsi:schemaLocation": "https://ptb.de/dcc https://ptb.de/dcc/v2.1.0/dcc.xsd",
"xmlns:dcc": "https://intranet.ptb.de/fileadmin/dokumente/intranet/abteilungen/abteilung_1/Digitaler_Kalibrierschein/DCC", "xmlns:dcc": "https://ptb.de/dcc",
"xmlns:si": "https://intranet.ptb.de/fileadmin/dokumente/intranet/abteilungen/abteilung_1/Digitaler_Kalibrierschein/SI", "xmlns:si": "https://ptb.de/si/smartcom/d-si/v1_0_1",
...options._attr, ...options._attr,
}; };
this.administrativeData = new AdministrativeData(options.administrativeData); this.administrativeData = new AdministrativeData(options.administrativeData);
this.measurementResults = options.measurementResults; this.measurementResults = options.measurementResults;
if (this.comments) if (options.comments)
this.comments = new XMLElement(options.comments); this.comments = new XMLElement(options.comments);
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment