Skip to content

Commit

Permalink
URM-234831
Browse files Browse the repository at this point in the history
Cloud App: NACSIS-CAT: Correct separator between NACSIS-CAT’s PHYSP and PHYSI subfields from semicolon sign to colon sign.
  • Loading branch information
jawanbdarni authored and avichai.babo committed Feb 2, 2025
1 parent cfbbe95 commit bf92b63
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions cloudapp/src/app/catalog/results-types/monographs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,9 @@ export class MonographVOLG{
export class MonographXISBN{
XISBN: string = "";
}

export class MonographPUB{
``
export class
MonographPUB{
PUBP: string = "";
PUBL: string = "";
PUBDT: string = "";
Expand Down Expand Up @@ -346,6 +347,7 @@ export class MonographFullDisplay extends IDisplayLines {
fieldsArray.push(new ViewFieldBuilder().content(pub.PUBP).build());
fieldsArray.push(new ViewFieldBuilder().label(": ").content(pub.PUBL).build());
fieldsArray.push(new ViewFieldBuilder().label(", ").content(pub.PUBDT).build());
fieldsArray.push(new ViewFieldBuilder().label(", ").content(pub.PUBF).build());
if (pub.PUBF == "m") {
fieldsArray.push(new ViewFieldBuilder().label(")").build());
}
Expand All @@ -355,7 +357,7 @@ export class MonographFullDisplay extends IDisplayLines {
fieldsArray.push(new ViewFieldBuilder().content(this.record.PHYSP).build());
fieldsArray.push(new ViewFieldBuilder().content(this.record.PHYSI).build());
fieldsArray.push(new ViewFieldBuilder().content(this.record.PHYSS).build());
fieldsArray = this.setSeparator(fieldsArray, ";");
fieldsArray = this.setSeparator(fieldsArray, ":");
fieldsArray.push(new ViewFieldBuilder().label("+").content(this.record.PHYSA).build());
this.addLine(new ViewFieldBuilder().label("PHYS").build(), fieldsArray);
this.record.VT?.forEach(vt=>{
Expand Down

0 comments on commit bf92b63

Please sign in to comment.