From: Bill Erickson Date: Fri, 9 Aug 2019 20:55:30 +0000 (-0400) Subject: LP1839670 Angular catalog more result page info X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=80d0f64d2eb6df832a1b2123cc2614394453adc2;p=working%2FEvergreen.git LP1839670 Angular catalog more result page info Adds physical description, isbn, issn, upc, and publisher information to the record result list page. Given the extra vertical space allowed by the new data, also increase the size of the jacket images. Signed-off-by: Bill Erickson Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.css b/Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.css index 3077d9ac93..3d753f4e42 100644 --- a/Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.css +++ b/Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.css @@ -5,11 +5,11 @@ * render the correct aspect ratio. */ .record-jacket-div { - width: 68px; + width: 120px; } .record-jacket-div img { - height: 100%; - max-height:80px; - max-width: 54px; + height: 100%; + max-height: 158px; + max-width: 100px; } diff --git a/Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.html b/Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.html index 5ddf94e000..a27c1bdf34 100644 --- a/Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.html +++ b/Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.html @@ -10,7 +10,7 @@ -
+
@@ -81,8 +81,40 @@ - {{summary.display.edition}} - {{summary.display.pubdate}} +
+ +
+
+ + +
Phys. Desc.: + {{[].concat(summary.display.physical_description).join(', ')}} +
+
+ +
Edition: {{summary.display.edition}}
+
+ + + +
Publisher: {{summary.display.publisher}}
+
+ +
Pub Date: {{summary.display.pubdate}}
+
+
+ +
ISBN: + {{[].concat(summary.display.isbn).join(', ')}}
+
+ +
UPC: + {{[].concat(summary.display.upc).join(', ')}}
+
+ +
ISSN: + {{[].concat(summary.display.issn).join(', ')}}
+
@@ -114,7 +146,7 @@ -
+