]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/templates/default/opac/parts/misc_util.tt2
Merge branch 'master' of git.evergreen-ils.org:Evergreen into template-toolkit-opac
[working/Evergreen.git] / Open-ILS / web / templates / default / opac / parts / misc_util.tt2
1 [% 
2     # Extract MARC fields from XML
3     #   get_marc_attrs( { marc_xml => doc } )
4     BLOCK get_marc_attrs;
5         xml = args.marc_xml;
6         args.isbn = xml.findnodes('//*[@tag="020"]/*[@code="a"]').shift.textContent;
7         args.upc = xml.findnodes('//*[@tag="024"]/*[@code="a"]').textContent;
8         args.issn = xml.findnodes('//*[@tag="022"]/*[@code="a"]').textContent;
9         args.title = xml.findnodes('//*[@tag="245"]/*[@code="a"]').textContent;
10         args.author = xml.findnodes('//*[@tag="100"]/*[@code="a"]').textContent;
11         args.publisher = xml.findnodes('//*[@tag="260"]/*[@code="b"]').textContent;
12         args.pubdate = xml.findnodes('//*[@tag="260"]/*[@code="c"]').textContent;
13         args.edition = xml.findnodes('//*[@tag="250"]/*[@code="a"]').textContent ||
14             xml.findnodes('//*[@tag="534"]/*[@code="b"]').textContent ||
15             xml.findnodes('//*[@tag="775"]/*[@code="b"]').textContent;
16         phys = xml.findnodes(
17             '//*[@tag="300"]/*[@code="a" or @code="b" or @code="c" or @code="e"]'
18         );
19         phys_content = [];
20         FOR p IN phys; phys_content.push(p.textContent); END;
21         args.phys_desc = phys_content.join("");
22
23         # MARC Callnumber
24         args.marc_cn = xml.findnodes('//*[@tag="092" or @tag="099"]/*').textContent;
25
26         # clean up the ISBN
27         args.isbn_clean = args.isbn.replace('\ .*', '');
28
29         args.holdings = [];
30         FOR holding IN xml.findnodes('//*[local-name()="volumes"]/*[local-name()="volume"]');
31             args.holdings.push(
32                 holding.getAttribute('label')
33             );
34         END;
35
36         # Extract the copy count summary
37         count_type = (ctx.is_staff) ? 'staff' : 'public';
38         xpath = '//*[local-name()="counts"]/*[local-name()="count"][@type="' _ count_type _ '"]';
39         FOR node IN xml.findnodes(xpath);
40             args.copy_counts = {};
41             FOR attr IN ['count', 'available', 'unshadow', 'transcendant']; 
42                 args.copy_counts.$attr = node.getAttribute(attr);
43             END;
44         END;
45
46         # "mattype" == "custom marc format specifier"
47         FOR icon_style IN ['mattype', 'item_type']; 
48             node = xml.findnodes(
49                 '//*[local-name()="attributes"]/*[local-name()="field"][@name="' _ icon_style _ '"]');
50             IF node;
51                 args.format_label = node.getAttribute('coded-value')
52                 args.format_icon = ctx.media_prefix _ '/images/format_icons/' _ icon_style _ '/' _ node.textContent _ '.png';
53                 LAST;
54             END;
55         END;
56     END;
57
58     BLOCK get_hold_status;
59         IF hold.hold.status == 4;
60             l("Available");
61             IF ahr.shelf_expire_time;
62                 l('<br/>Expires [_1]', 
63                     date.format(ctx.parse_datetime(ahr.shelf_expire_time), DATE_FORMAT));
64             END;
65         ELSIF hold.hold.estimated_wait AND hold.hold.estimated_wait > 0;
66             # estimated wait is delivered as seconds.
67             SET hwait = POSIX.ceil(hold.hold.estimated_wait / 86400);
68             l("Estimated wait: [quant,_1,day,days]", hwait);
69         ELSIF hold.hold.status == 3;
70             l("In Transit");
71         ELSIF hold.hold.status < 3;
72             l("Waiting for copy");
73         END;
74     END;
75 %]