From 3774e6a5a5b6698e4ab9f37d45cf8aeb31325c7f Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Fri, 9 Aug 2019 16:55:30 -0400 Subject: [PATCH] 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 --- .../app/staff/catalog/result/record.component.css | 8 ++-- .../app/staff/catalog/result/record.component.html | 44 +++++++++++++++++++--- 2 files changed, 42 insertions(+), 10 deletions(-) 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 @@ -
+
-- 2.11.0