Skip to content

Commit

Permalink
URM-170545 section 16
Browse files Browse the repository at this point in the history
  • Loading branch information
Dor-Karni authored and avichai-exlibris committed Jan 1, 2023
1 parent 2b36b89 commit 716ce94
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cloudapp/src/app/catalog/results-types/monographs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ export class MonographFull{
CLS: MonographCLS[];
SH: MonographSH[];
IDENT: MonographIDENT[];
REM: string = "";
}

export class MonographVOLG{
Expand Down Expand Up @@ -411,10 +412,11 @@ export class MonographFullDisplay extends IDisplayLines {
fieldsArray.push(new ViewFieldBuilder().content(ident.IDENT).build());
this.addLine(new ViewFieldBuilder().label("IDENT").build(), fieldsArray);
});
fieldsArray = new Array<ViewField>()
fieldsArray.push(new ViewFieldBuilder().content(this.record.REM).build());
this.addLine(new ViewFieldBuilder().label("REM").build(), fieldsArray);

return this.viewLines;


}


Expand Down
4 changes: 4 additions & 0 deletions cloudapp/src/app/catalog/results-types/name.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export class NameFull{
SF: NameSF[];
SAF: NameSAF[];
NOTE: NameNOTE[];
REM: string = "";
}

export class NameHDNG {
Expand Down Expand Up @@ -154,6 +155,9 @@ export class NameFullDisplay extends IDisplayLines {
fieldsArray.push(new ViewFieldBuilder().content(note.NOTE).build());
this.addLine(new ViewFieldBuilder().label("NOTE").build(), fieldsArray);
});
fieldsArray = new Array<ViewField>()
fieldsArray.push(new ViewFieldBuilder().content(this.record.REM).build());
this.addLine(new ViewFieldBuilder().label("REM").build(), fieldsArray);

return this.viewLines;
}
Expand Down
5 changes: 5 additions & 0 deletions cloudapp/src/app/catalog/results-types/serials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ export class SerialFull{
SH: SerialSH[];
// IDENT
IDENT: SerialIDENT[];
REM: string = "";
}

export class SerialPUB{
Expand Down Expand Up @@ -350,6 +351,10 @@ export class SerialFullDisplay extends IDisplayLines {
fieldsArray.push(new ViewFieldBuilder().content(ident.IDENT).build());
this.addLine(new ViewFieldBuilder().label("IDENT").build(), fieldsArray);
});
fieldsArray = new Array<ViewField>()
fieldsArray.push(new ViewFieldBuilder().content(this.record.REM).build());
this.addLine(new ViewFieldBuilder().label("REM").build(), fieldsArray);

return this.viewLines;
}

Expand Down
5 changes: 5 additions & 0 deletions cloudapp/src/app/catalog/results-types/uniformTitle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ export class UniformTitleFull{
SAF: UniformTitleSAF[];
// NOTE
NOTE: UniformTitleNOTE[];
// REM
REM: string = "";
}

export class UniformTitleHDNG {
Expand Down Expand Up @@ -149,6 +151,9 @@ export class UniformTitleFullDisplay extends IDisplayLines {
fieldsArray.push(new ViewFieldBuilder().content(note.NOTE).build());
this.addLine(new ViewFieldBuilder().label("NOTE").build(), fieldsArray);
});
fieldsArray = new Array<ViewField>()
fieldsArray.push(new ViewFieldBuilder().content(this.record.REM).build());
this.addLine(new ViewFieldBuilder().label("REM").build(), fieldsArray);

return this.viewLines;
}
Expand Down

0 comments on commit 716ce94

Please sign in to comment.