Skip to content
Snippets Groups Projects
Commit fa0f1d68 authored by Muhammed-Ali Demir's avatar Muhammed-Ali Demir :speech_balloon:
Browse files

Merge branch 'BugFix_ReportAmendedSubstituted_TypeOfChange' into 'master'

Bug fix report amended substituted type of change

See merge request !12
parents 9cb8f9f6 5095505d
No related branches found
No related tags found
1 merge request!12Bug fix report amended substituted type of change
Pipeline #27967 passed
{ {
"name": "@d-ptb/dcc-js", "name": "@d-ptb/dcc-js",
"version": "1.4.2", "version": "1.4.3",
"license": "EUPL-1.2", "license": "EUPL-1.2",
"contributors": [ "contributors": [
"Jan Loewe <jan.loewe@ptb.de>", "Jan Loewe <jan.loewe@ptb.de>",
......
...@@ -150,12 +150,12 @@ export class RefTypeDefinitionType extends DCCXMLElement { ...@@ -150,12 +150,12 @@ export class RefTypeDefinitionType extends DCCXMLElement {
export class ReportAmendedSubstitutedType extends DCCXMLElement { export class ReportAmendedSubstitutedType extends DCCXMLElement {
_attr: IIdAndRefTypeAttributes; _attr: IIdAndRefTypeAttributes;
typeOfChange: TextType; typeOfChange: DCCXMLElement;
replacedUniqueIdentifier: DCCXMLElement; replacedUniqueIdentifier: DCCXMLElement;
constructor(el: Partial<ReportAmendedSubstitutedType> = {}) { constructor(el: Partial<ReportAmendedSubstitutedType> = {}) {
super(el); super(el);
this.typeOfChange = new TextType(el.typeOfChange); this.typeOfChange = new DCCXMLElement(el.typeOfChange);
this.replacedUniqueIdentifier = new DCCXMLElement(el.replacedUniqueIdentifier); this.replacedUniqueIdentifier = new DCCXMLElement(el.replacedUniqueIdentifier);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment