enju_trunk_ill 0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +40 -0
  4. data/app/assets/javascripts/enju_trunk_ill/application.js +15 -0
  5. data/app/assets/stylesheets/enju_trunk_ill/application.css +13 -0
  6. data/app/controllers/enju_trunk_ill/application_controller.rb +4 -0
  7. data/app/controllers/inter_library_loans_controller.rb +310 -0
  8. data/app/helpers/enju_trunk_ill/application_helper.rb +4 -0
  9. data/app/models/inter_library_loan.rb +250 -0
  10. data/app/views/inter_library_loans/_accept_item.html.erb +5 -0
  11. data/app/views/inter_library_loans/accept.html.erb +57 -0
  12. data/app/views/inter_library_loans/edit.html.erb +92 -0
  13. data/app/views/inter_library_loans/export_loan_lists.html.erb +50 -0
  14. data/app/views/inter_library_loans/index.atom.builder +11 -0
  15. data/app/views/inter_library_loans/index.html.erb +116 -0
  16. data/app/views/inter_library_loans/index.rss.builder +31 -0
  17. data/app/views/inter_library_loans/loan_list.tlf +1 -0
  18. data/app/views/inter_library_loans/move_item.tlf +1 -0
  19. data/app/views/inter_library_loans/new.html.erb +52 -0
  20. data/app/views/inter_library_loans/pickup.html.erb +35 -0
  21. data/app/views/inter_library_loans/show.html.erb +61 -0
  22. data/app/views/layouts/enju_trunk_ill/application.html.erb +14 -0
  23. data/config/routes.rb +2 -0
  24. data/lib/enju_trunk_ill.rb +4 -0
  25. data/lib/enju_trunk_ill/engine.rb +5 -0
  26. data/lib/enju_trunk_ill/version.rb +3 -0
  27. data/lib/tasks/enju_trunk_ill_tasks.rake +4 -0
  28. data/test/dummy/README.rdoc +261 -0
  29. data/test/dummy/Rakefile +7 -0
  30. data/test/dummy/app/assets/javascripts/application.js +15 -0
  31. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  32. data/test/dummy/app/controllers/application_controller.rb +3 -0
  33. data/test/dummy/app/helpers/application_helper.rb +2 -0
  34. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  35. data/test/dummy/config.ru +4 -0
  36. data/test/dummy/config/application.rb +59 -0
  37. data/test/dummy/config/boot.rb +10 -0
  38. data/test/dummy/config/database.yml +25 -0
  39. data/test/dummy/config/environment.rb +5 -0
  40. data/test/dummy/config/environments/development.rb +37 -0
  41. data/test/dummy/config/environments/production.rb +67 -0
  42. data/test/dummy/config/environments/test.rb +37 -0
  43. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  44. data/test/dummy/config/initializers/inflections.rb +15 -0
  45. data/test/dummy/config/initializers/mime_types.rb +5 -0
  46. data/test/dummy/config/initializers/secret_token.rb +7 -0
  47. data/test/dummy/config/initializers/session_store.rb +8 -0
  48. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  49. data/test/dummy/config/locales/en.yml +5 -0
  50. data/test/dummy/config/routes.rb +4 -0
  51. data/test/dummy/public/404.html +26 -0
  52. data/test/dummy/public/422.html +26 -0
  53. data/test/dummy/public/500.html +25 -0
  54. data/test/dummy/public/favicon.ico +0 -0
  55. data/test/dummy/script/rails +6 -0
  56. data/test/enju_trunk_ill_test.rb +7 -0
  57. data/test/integration/navigation_test.rb +10 -0
  58. data/test/test_helper.rb +15 -0
  59. metadata +172 -0
@@ -0,0 +1,5 @@
1
+ <tr id="item_<%= @item.id -%>" class="line<%= cycle("0", "1") -%>">
2
+ <td><%= render 'manifestations/show_index', :manifestation => @item.manifestation -%></td>
3
+ <td><%= link_to @item.item_identifier, @item -%></td>
4
+ <td><%= @item.note -%></td>
5
+ </tr>
@@ -0,0 +1,57 @@
1
+ <script>
2
+ function accept_item(){
3
+ var item_identifier = $("#item_identifier").val().replace(/^\s+|\s+$/g, "");
4
+ $.ajax({
5
+ type: "GET",
6
+ url: "<%= url_for(:controller => :inter_library_loans, :action => :accept_item) -%>",
7
+ data: {"item_identifier": item_identifier},
8
+ error: function(error){
9
+ $("#item_identifier").val("");
10
+ $("p#notice").html("#{t('inter_library_loan.failed_accept')}");
11
+ },
12
+ success: function(obj){
13
+ if(obj.success){
14
+ $("#accept_item_list").append(obj.html);
15
+ $("#item_identifier").val("");
16
+ $("p#notice").html(obj["message"]);
17
+ return true;
18
+ }
19
+ $("#item_identifier").val("");
20
+ $("p#notice").html(obj.error);
21
+ }
22
+ });
23
+ return false;
24
+ }
25
+ </script>
26
+
27
+ <div id="content_detail" class="ui-corner-all">
28
+ <h1 class="title"><%= t('inter_library_loan.accept_item') -%></h1>
29
+ <div id="content_list">
30
+ <p id="notice"><%= notice %></p>
31
+ <div>
32
+ <div style="color: red" id="message"></div>
33
+ <%= form_for :inter_library_loan, :url => {:controller => 'inter_library_loans', :action => :accept_item}, :html => {:onsubmit => "accept_item(); return false;"} do -%>
34
+ <p>
35
+ <%= t('activerecord.attributes.item.item_identifier') -%>: <%= text_field_tag :item_identifier -%>
36
+ <%= submit_tag t('page.read'), {:type => 'button', :onclick => "accept_item();"} -%>
37
+ </p>
38
+ <%- end -%>
39
+ <%= javascript_tag("$('#item_identifier').focus()") -%>
40
+
41
+ <table id="accept_item_list" class="index">
42
+ <tr>
43
+ <th><%= t('page.title') -%></th>
44
+ <th><%= t('activerecord.attributes.item.item_identifier') -%></th>
45
+ <th><%= t('activerecord.attributes.item.note') -%></th>
46
+ </tr>
47
+ <%= render :partial => "accept_item", :collection => @items -%>
48
+ </table>
49
+ </div>
50
+ </div>
51
+ </div>
52
+
53
+ <div id="submenu" class="ui-corner-all">
54
+ <ul>
55
+ <li><%= link_to t('page.back'), inter_library_loans_path -%></li>
56
+ </ul>
57
+ </div>
@@ -0,0 +1,92 @@
1
+ <div id="content_detail" class="ui-corner-all">
2
+ <h1 class="title"><%= t('page.editing', :model => t('activerecord.models.inter_library_loan')) -%></h1>
3
+ <div id="content_list">
4
+
5
+ <%= form_for(@inter_library_loan) do |f| -%>
6
+ <%= f.error_messages -%>
7
+
8
+ <div class="field">
9
+ <%= f.label :from_library -%><br />
10
+ <%= f.select(:from_library_id, @libraries.collect{|l| [l.display_name.localize, l.id]}, :selected => @inter_library_loan.from_library_id) -%>
11
+ </div>
12
+
13
+ <div class="field">
14
+ <%= f.label :to_library -%><br />
15
+ <%= f.select(:to_library_id, @libraries.collect{|l| [l.display_name.localize, l.id]}, :selected => @inter_library_loan.to_library_id) -%>
16
+ </div>
17
+
18
+ <div class="field">
19
+ <%= f.label :reason -%><br />
20
+ <%= f.select(:reason, @reasons.collect{|r| [r[0], r[1]]}, :selected => @inter_library_loan.reason) -%>
21
+ </div>
22
+
23
+ <div class="field">
24
+ <%= f.label t('activerecord.models.item') -%><br />
25
+ <%= link_to @inter_library_loan.item.shelf.library.display_name.localize, @inter_library_loan.item.shelf.library -%>
26
+ <%= link_to @inter_library_loan.item.item_identifier, @inter_library_loan.item -%>
27
+ (<%= link_to @inter_library_loan.item.manifestation.original_title, @inter_library_loan.item.manifestation -%>)
28
+ <%= f.hidden_field :item_id -%>
29
+ </div>
30
+
31
+ <%- case @inter_library_loan.state
32
+ when 'requested' -%>
33
+ <div class="field">
34
+ <%= f.label :requested_at -%><br />
35
+ <%=l @inter_library_loan.requested_at if @inter_library_loan.requested_at %>
36
+ </div>
37
+ <%- if @inter_library_loan.item.hold?(current_user.library) -%>
38
+ <div class="field">
39
+ <%= f.label :shipped_at -%><br />
40
+ <%= f.datetime_select :shipped_at -%>
41
+ </div>
42
+ <%- end -%>
43
+ <%- when 'shipped' -%>
44
+ <div class="field">
45
+ <%= f.label :requested_at -%><br />
46
+ <%=l @inter_library_loan.requested_at if @inter_library_loan.requested_at %>
47
+ </div>
48
+
49
+ <div class="field">
50
+ <%= f.label :shipped_at -%><br />
51
+ <%=l @inter_library_loan.shipped_at if @inter_library_loan.shipped_at %>
52
+ </div>
53
+
54
+ <%- if !@inter_library_loan.item.hold?(current_user.library) -%>
55
+ <div class="field">
56
+ <%= f.label :received_at -%><br />
57
+ <%= f.datetime_select :received_at -%>
58
+ </div>
59
+ <div class="actions">
60
+ <%= f.submit :confirm => t('page.inter_library_loans_confirm') -%>
61
+ </div>
62
+ <%- end -%>
63
+ <%- when 'received' -%>
64
+ <div class="field">
65
+ <%= f.label :requested_at -%><br />
66
+ <%=l @inter_library_loan.requested_at if @inter_library_loan.requested_at %>
67
+ </div>
68
+
69
+ <div class="field">
70
+ <%= f.label :shipped_at -%><br />
71
+ <%=l @inter_library_loan.shipped_at if @inter_library_loan.shipped_at %>
72
+ </div>
73
+
74
+ <div class="field">
75
+ <%= f.label :received_at -%><br />
76
+ <%=l @inter_library_loan.received_at if @inter_library_loan.received_at %>
77
+ </div>
78
+ <%- end -%>
79
+ <div class="actions">
80
+ <%= f.submit :confirm => t('page.inter_library_loans_confirm') -%>
81
+ </div>
82
+ <%- end -%>
83
+
84
+ </div>
85
+ </div>
86
+
87
+ <div id="submenu" class="ui-corner-all">
88
+ <ul>
89
+ <li><%= link_to t('page.show'), @inter_library_loan -%></li>
90
+ <li><%= link_to t('page.back'), inter_library_loans_path -%></li>
91
+ </ul>
92
+ </div>
@@ -0,0 +1,50 @@
1
+ <script>
2
+ $(document).ready(function() {
3
+ // checked
4
+ var $tgt_parent = $("input.check-parent");
5
+ var $tgt_child = $("input.check-child");
6
+
7
+ $tgt_parent.click(function(){
8
+ $(this).parents("div.parent").find('input.check-child').attr('checked', this.checked);
9
+ });
10
+
11
+ $tgt_child.click(function(){
12
+ var checkNum = $(this).parents("div.parent").find('input.check-child:checked').length;
13
+ var listNum = $(this).parents("div.parent").find('input.check-child').length;
14
+
15
+ if(checkNum < listNum)
16
+ $(this).parents("div.parent").find("input.check-parent").attr('checked', false);
17
+ if(checkNum == listNum)
18
+ $(this).parents("div.parent").find("input.check-parent").attr('checked', true);
19
+ });
20
+ });
21
+ </script>
22
+
23
+ <div id="content_detail" class="ui-corner-all">
24
+ <h1 class="title"><%= t('page.output', :model => t('inter_library_loan.loan_lists')) -%></h1>
25
+ <div id="content_list">
26
+ <div style="color: green"><%= flash[:message] -%></div>
27
+ <%= form_for(:inter_library_loan, :url => {:controller => 'inter_library_loans', :action => :get_loan_lists}, :html => {:multipart => true, :method => 'post'}) do |f| -%>
28
+ <div class="field">
29
+ <%= label :library, t('inter_library_loan.original_library') -%>:<br />
30
+ <div class="parent">
31
+ <%= check_box_tag "all_library", true, @selected_library.size == @libraries.size ? true : false, :class=>'check-parent' -%><%= t('advanced_search.all', :model=>t('activerecord.attributes.reserve.receipt_library')) -%><br />
32
+ <%- @libraries.each do |library| -%>
33
+ &nbsp;&nbsp;<%= check_box_tag "library[]", library.id, (@selected_library.index(library.id.to_s) or @selected_library.index(library.id.to_i))? true : false, :class => 'check-child' -%><%= library.display_name -%><br />
34
+ <%- end -%>
35
+ </div>
36
+ </div>
37
+
38
+ <div class="actions">
39
+ <%= f.submit t('page.output', :model => t('inter_library_loan.loan_lists')) %>
40
+ </div>
41
+ <%- end -%>
42
+ </div>
43
+ </div>
44
+
45
+ <div id="submenu" class="ui-corner-all">
46
+ <ul>
47
+ <li><%= link_to t('page.back'), inter_library_loans_path -%></li>
48
+ <li><%= link_to t('inter_library_loan.pickup_item'), {:action => :pickup}, {:method => :post} -%></li>
49
+ </ul>
50
+ </div>
@@ -0,0 +1,11 @@
1
+ atom_feed(:url => inter_library_loans_url(:format => :atom)) do |feed|
2
+ feed.title t('inter_library_loan.library_group_inter_library_loan', :library_group_name => @library_group.display_name.localize)
3
+ feed.updated(@inter_library_loans.first ? @inter_library_loans.first.created_at : Time.zone.now)
4
+
5
+ @inter_library_loans.each do |inter_library_loan|
6
+ feed.entry(inter_library_loan) do |entry|
7
+ entry.title inter_library_loan.item.manifestation.original_title
8
+ entry.author(@library_group.display_name.localize)
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,116 @@
1
+ <script>
2
+ $(document).ready(function() {
3
+ // checked
4
+ var $tgt_parent = $("input.check-parent");
5
+ var $tgt_child = $("input.check-child");
6
+
7
+ $tgt_parent.click(function(){
8
+ $(this).parents("div.parent").find('input.check-child').attr('checked', this.checked);
9
+ });
10
+
11
+ $tgt_child.click(function(){
12
+ var checkNum = $(this).parents("div.parent").find('input.check-child:checked').length;
13
+ var listNum = $(this).parents("div.parent").find('input.check-child').length;
14
+
15
+ if(checkNum < listNum)
16
+ $(this).parents("div.parent").find("input.check-parent").attr('checked', false);
17
+ if(checkNum == listNum)
18
+ $(this).parents("div.parent").find("input.check-parent").attr('checked', true);
19
+ });
20
+ });
21
+ </script>
22
+
23
+ <div id="content_detail" class="ui-corner-all">
24
+ <h1 class="title"><%= t('page.listing', :model => t('activerecord.models.inter_library_loan')) -%></h1>
25
+ <div id="content_list">
26
+ <p id="notice"><%= raw flash[:notice] -%></p>
27
+ <%= form_for :inter_library_loan, :url => inter_library_loans_path, :html => {:method => :get} do -%>
28
+ <%= label :list_condition, t('activerecord.attributes.item_list.list_condition') -%>:<br />
29
+ <div class="field">
30
+ <div id="list_condition_200" class="parent">
31
+ <%= check_box_tag "all_from_library", true, @from_library.size == @selected_from_library.size ? true : false, :class=>'check-parent' -%>
32
+ <%= t('advanced_search.all', :model=>t('activerecord.attributes.inter_library_loan.from_library')) -%><br />
33
+ <%- @from_library.each do |library| -%>
34
+ &nbsp;&nbsp;<%= check_box_tag "from_library[]", library.id, @selected_from_library.index(library.id) ? true : false, :class=>'check-child' -%><%= library.display_name -%><br />
35
+ <%- end -%>
36
+ </div>
37
+ <div id="list_condition_200" class="parent">
38
+ <%= check_box_tag "all_to_library", true, @to_library.size == @selected_to_library.size ? true : false, :class=>'check-parent' -%>
39
+ <%= t('advanced_search.all', :model=>t('activerecord.attributes.inter_library_loan.to_library')) -%><br />
40
+ <%- @to_library.each do |library| -%>
41
+ &nbsp;&nbsp;<%= check_box_tag "to_library[]", library.id, @selected_to_library.index(library.id) ? true : false, :class=>'check-child' -%><%= library.display_name -%><br />
42
+ <%- end -%>
43
+ </div>
44
+ <div id="list_condition_150" class="parent">
45
+ <%= check_box_tag "all_reason", true, @reasons.size == @selected_reason.size ? true : false, :class=>'check-parent' -%>
46
+ <%= t('advanced_search.all', :model=>t('activerecord.attributes.inter_library_loan.reason')) -%><br />
47
+ <%- @reasons.each do |reason| -%>
48
+ &nbsp;&nbsp;<%= check_box_tag "reason[]", reason[1], @selected_reason.index(reason[1]) ? true : false, :class=>'check-child' -%><%= reason[0] -%><br />
49
+ <%- end -%>
50
+ </div>
51
+ <br style="clear:both;"/>
52
+ </div>
53
+ <div>
54
+ <%= t('page.search_term') -%>: <%= search_field_tag 'query', h(@query), {:id => 'search_form_top', :class => 'search_form', :placeholder => t('page.search_term')} -%>
55
+ </div>
56
+ <div class="actions">
57
+ <%= submit_tag t('page.search') %>
58
+ </div>
59
+ <%- end -%>
60
+
61
+ <table class="index">
62
+ <tr>
63
+ <th><%= t('activerecord.models.item') -%></th>
64
+ <th><%= t('activerecord.attributes.inter_library_loan.from_library') -%></th>
65
+ <th><%= t('activerecord.attributes.inter_library_loan.to_library') -%></th>
66
+ <th><%= t('activerecord.attributes.inter_library_loan.reason') -%></th>
67
+ <th>
68
+ <%= t('activerecord.attributes.inter_library_loan.shipped_at') -%> /
69
+ <%= t('activerecord.attributes.inter_library_loan.received_at') -%>
70
+ </th>
71
+ <th></th>
72
+ </tr>
73
+
74
+ <%- @inter_library_loans.each do |inter_library_loan| -%>
75
+ <tr class="line<%= cycle("0", "1") -%>">
76
+ <td>
77
+ <%= link_to inter_library_loan.item.item_identifier, inter_library_loan.item -%>
78
+ <br />
79
+ (<%= link_to inter_library_loan.item.manifestation.original_title, inter_library_loan.item.manifestation -%>)
80
+ </td>
81
+ <td><%= link_to inter_library_loan.from_library.display_name.localize, inter_library_loan.from_library -%></td>
82
+ <td><%= link_to inter_library_loan.to_library.display_name.localize, inter_library_loan.to_library -%></td>
83
+ <%- if inter_library_loan.reason == 1 -%>
84
+ <td><%= t('inter_library_loan.checkout') -%></td>
85
+ <%- else -%>
86
+ <td><%= t('inter_library_loan.checkin') -%></td>
87
+ <%- end -%>
88
+ <td>
89
+ <%= l(inter_library_loan.shipped_at) if inter_library_loan.shipped_at -%><br />
90
+ <%= l(inter_library_loan.received_at) if inter_library_loan.received_at -%>
91
+ </td>
92
+ <td>
93
+ <%= link_to t('page.show'), inter_library_loan -%>
94
+ <%- if can? :destroy, inter_library_loan -%>
95
+ <%= link_to t('page.edit'), edit_inter_library_loan_path(inter_library_loan) -%>
96
+ <%= link_to t('page.destroy'), inter_library_loan, :confirm => t('page.are_you_sure'), :method => :delete -%>
97
+ <%- end -%>
98
+ </td>
99
+ </tr>
100
+ <%- end -%>
101
+ </table>
102
+
103
+ <%= paginate(@inter_library_loans) -%>
104
+ </div>
105
+ </div>
106
+
107
+ <div id="submenu" class="ui-corner-all">
108
+ <ul>
109
+ <%- if can? :create, InterLibraryLoan -%>
110
+ <li><%= link_to t('page.new', :model => t('activerecord.models.inter_library_loan')), new_inter_library_loan_path -%></li>
111
+ <%- end -%>
112
+ <li><%= link_to t('page.output', :model => t('inter_library_loan.loan_lists')), {:action => :export_loan_lists}, {:method => :post} -%></li>
113
+ <li><%= link_to t('inter_library_loan.pickup_item'), {:action => :pickup}, {:method => :post} -%></li>
114
+ <li><%= link_to t('inter_library_loan.accept_item'), {:action => :accept}, {:method => :post} -%></li>
115
+ </ul>
116
+ </div>
@@ -0,0 +1,31 @@
1
+ xml.instruct! :xml, :version=>"1.0"
2
+ xml.rss('version' => "2.0",
3
+ 'xmlns:opensearch' => "http://a9.com/-/spec/opensearch/1.1/",
4
+ 'xmlns:atom' => "http://www.w3.org/2005/Atom"){
5
+ xml.channel{
6
+ xml.title t('inter_library_loan.library_group_inter_library_loan', :library_group_name => @library_group.display_name.localize)
7
+ xml.link inter_library_loans_url
8
+ xml.description "Next-L Enju, an open source integrated library system developed by Project Next-L"
9
+ xml.language @locale.to_s
10
+ xml.ttl "60"
11
+ xml.tag! "atom:link", :rel => 'self', :href => inter_library_loans_url(:format => :rss)
12
+ xml.tag! "atom:link", :rel => 'alternate', :href => inter_library_loans_url
13
+ #xml.tag! "atom:link", :rel => 'search', :type => 'application/opensearchdescription+xml', :href => "http://#{request.host_with_port}/page/opensearch"
14
+ #unless params[:query].blank?
15
+ # xml.tag! "opensearch:totalResults", @count[:query_result]
16
+ # xml.tag! "opensearch:startIndex", @inter_library_loans.offset + 1
17
+ # xml.tag! "opensearch:itemsPerPage", @inter_library_loans.per_page
18
+ #xml.tag! "opensearch:Query", :role => 'request', :searchTerms => params[:query], :startPage => (params[:page] || 1)
19
+ #end
20
+ @inter_library_loans.each do |inter_library_loan|
21
+ xml.item do
22
+ xml.title inter_library_loan.item.manifestation.original_title
23
+ #xml.description(inter_library_loan.title)
24
+ # rfc822
25
+ xml.pubDate inter_library_loan.created_at.utc.rfc822
26
+ xml.link inter_library_loan_url(inter_library_loan)
27
+ xml.guid inter_library_loan_url(inter_library_loan), :isPermaLink => "true"
28
+ end
29
+ end
30
+ }
31
+ }
@@ -0,0 +1 @@
1
+ {"version":"0.7.0","finger-print":-566682534,"config":{"title":"Item List","option":{},"page":{"paper-type":"A4","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"595.2\" height=\"841.8\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 595.2 841.8\"><g class=\"canvas\"><!--SHAPE{\"type\":\"s-list\",\"id\":\"list\",\"display\":\"true\",\"desc\":null,\"footer\":{},\"footer-enabled\":\"false\",\"page-footer\":{},\"page-footer-enabled\":\"false\",\"detail\":{\"height\":20,\"svg\":{\"tag\":\"g\",\"content\":\"<rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#FFFFFF\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"530\\\" height=\\\"20\\\" x=\\\"20\\\" y=\\\"199.1\\\"></rect><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x1=\\\"130\\\" x2=\\\"130\\\" y1=\\\"199.6\\\" y2=\\\"219.1\\\"></line><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x1=\\\"220\\\" x2=\\\"220\\\" y1=\\\"199.6\\\" y2=\\\"219.1\\\"></line><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x1=\\\"320\\\" x2=\\\"320\\\" y1=\\\"199.6\\\" y2=\\\"219.1\\\"></line><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"shelf\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"true\\\",\\\"valign\\\":\\\"center\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":132.3,\\\"y\\\":200.5,\\\"width\\\":85.6,\\\"height\\\":18.6},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"textArea\\\",\\\"attrs\\\":{\\\"x\\\":132.3,\\\"y\\\":200.5,\\\"width\\\":85.6,\\\"height\\\":18.6,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"10\\\",\\\"font-family\\\":\\\"IPAGothic\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-anchor\\\":\\\"middle\\\",\\\"text-decoration\\\":\\\"none\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"item_identifier\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"true\\\",\\\"valign\\\":\\\"center\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":67.7,\\\"y\\\":201.4,\\\"width\\\":59.3,\\\"height\\\":16.6},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"textArea\\\",\\\"attrs\\\":{\\\"x\\\":67.7,\\\"y\\\":201.4,\\\"width\\\":59.3,\\\"height\\\":16.6,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"10\\\",\\\"font-family\\\":\\\"IPAGothic\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-anchor\\\":\\\"middle\\\",\\\"text-decoration\\\":\\\"none\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"title\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"true\\\",\\\"valign\\\":\\\"center\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":325.7,\\\"y\\\":199.9,\\\"width\\\":220.2,\\\"height\\\":18.6},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"textArea\\\",\\\"attrs\\\":{\\\"x\\\":325.7,\\\"y\\\":199.9,\\\"width\\\":220.2,\\\"height\\\":18.6,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"10\\\",\\\"font-family\\\":\\\"IPAGothic\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-anchor\\\":\\\"start\\\",\\\"text-decoration\\\":\\\"none\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"call_number\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"true\\\",\\\"valign\\\":\\\"center\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":224.8,\\\"y\\\":200.2,\\\"width\\\":92.4,\\\"height\\\":18},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"textArea\\\",\\\"attrs\\\":{\\\"x\\\":224.8,\\\"y\\\":200.2,\\\"width\\\":92.4,\\\"height\\\":18,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"10\\\",\\\"font-family\\\":\\\"IPAGothic\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-anchor\\\":\\\"middle\\\",\\\"text-decoration\\\":\\\"none\\\"}}}SHAPE---><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x1=\\\"65\\\" x2=\\\"65\\\" y1=\\\"199.1\\\" y2=\\\"219.1\\\"></line><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"reason\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"true\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":22,\\\"y\\\":202.6,\\\"width\\\":40.1,\\\"height\\\":14.6},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"textArea\\\",\\\"attrs\\\":{\\\"x\\\":22,\\\"y\\\":202.6,\\\"width\\\":40.1,\\\"height\\\":14.6,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"10\\\",\\\"font-family\\\":\\\"IPAGothic\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-anchor\\\":\\\"middle\\\",\\\"text-decoration\\\":\\\"none\\\"}}}SHAPE--->\"},\"translate\":{\"x\":0,\"y\":-101.7}},\"header\":{\"height\":20.4,\"svg\":{\"tag\":\"g\",\"content\":\"<rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#FFFFFF\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"530\\\" height=\\\"20\\\" x=\\\"20\\\" y=\\\"49.4\\\"></rect><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x1=\\\"130\\\" x2=\\\"130\\\" y1=\\\"50\\\" y2=\\\"69\\\"></line><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x1=\\\"220\\\" x2=\\\"220\\\" y1=\\\"49\\\" y2=\\\"69\\\"></line><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" font-size=\\\"10\\\" font-family=\\\"IPAGothic\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"90\\\" x-height=\\\"20\\\" x-left=\\\"129.6\\\" x-top=\\\"49\\\" x-valign=\\\"center\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"90\\\" height=\\\"20\\\" x=\\\"129.6\\\" y=\\\"49\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"174.6\\\" y=\\\"63\\\">\\u914d\\u67b6\\u5834\\u6240</text></g><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x1=\\\"320\\\" x2=\\\"320\\\" y1=\\\"50\\\" y2=\\\"69\\\"></line><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" font-size=\\\"10\\\" font-family=\\\"IPAGothic\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"66.3\\\" x-height=\\\"20\\\" x-left=\\\"64.6\\\" x-top=\\\"49.4\\\" x-valign=\\\"center\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"66.3\\\" height=\\\"20\\\" x=\\\"64.6\\\" y=\\\"49.4\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"97.8\\\" y=\\\"63.4\\\">\\u6240\\u8535ID</text></g><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" font-size=\\\"10\\\" font-family=\\\"IPAGothic\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"230\\\" x-height=\\\"20\\\" x-left=\\\"320\\\" x-top=\\\"49\\\" x-valign=\\\"center\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"230\\\" height=\\\"20\\\" x=\\\"320\\\" y=\\\"49\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"435\\\" y=\\\"63\\\">\\u30bf\\u30a4\\u30c8\\u30eb</text></g><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" font-size=\\\"10\\\" font-family=\\\"IPAGothic\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"100\\\" x-height=\\\"20\\\" x-left=\\\"219.8\\\" x-top=\\\"49\\\" x-valign=\\\"center\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"100\\\" height=\\\"20\\\" x=\\\"219.8\\\" y=\\\"49\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"269.8\\\" y=\\\"63\\\">\\u8acb\\u6c42\\u8a18\\u53f7</text></g><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x1=\\\"64.7\\\" x2=\\\"64.7\\\" y1=\\\"49\\\" y2=\\\"69\\\"></line>\"},\"translate\":{\"x\":0,\"y\":28}},\"header-enabled\":\"true\",\"svg\":{\"tag\":\"g\",\"attrs\":{}},\"content-height\":694.9,\"page-break\":\"true\"}SHAPE--><!--LAYOUT<g class=\"s-list\" x-id=\"list\" x-header-enabled=\"true\" x-page-footer-enabled=\"false\" x-footer-enabled=\"false\" x-changing-page=\"true\" x-display=\"true\" width=\"530\" height=\"715.3\" x=\"20\" y=\"77\"><g class=\"s-list-header\" transform=\"translate(0,28) rotate(0 0 0)\" x-top=\"77\" x-height=\"20.4\"><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"530\" height=\"20\" x=\"20\" y=\"49.4\"></rect><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"130\" x2=\"130\" y1=\"50\" y2=\"69\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"220\" x2=\"220\" y1=\"49\" y2=\"69\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"10\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"90\" x-height=\"20\" x-left=\"129.6\" x-top=\"49\" x-valign=\"center\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"90\" height=\"20\" x=\"129.6\" y=\"49\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"174.6\" y=\"63\">\u914d\u67b6\u5834\u6240</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"320\" x2=\"320\" y1=\"50\" y2=\"69\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"10\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"66.3\" x-height=\"20\" x-left=\"64.6\" x-top=\"49.4\" x-valign=\"center\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"66.3\" height=\"20\" x=\"64.6\" y=\"49.4\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"97.8\" y=\"63.4\">\u6240\u8535ID</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"10\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"230\" x-height=\"20\" x-left=\"320\" x-top=\"49\" x-valign=\"center\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"230\" height=\"20\" x=\"320\" y=\"49\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"435\" y=\"63\">\u30bf\u30a4\u30c8\u30eb</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"10\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"100\" x-height=\"20\" x-left=\"219.8\" x-top=\"49\" x-valign=\"center\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"100\" height=\"20\" x=\"219.8\" y=\"49\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"269.8\" y=\"63\">\u8acb\u6c42\u8a18\u53f7</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"64.7\" x2=\"64.7\" y1=\"49\" y2=\"69\"></line></g><g class=\"s-list-detail\" transform=\"translate(0,-101.7) rotate(0 0 0)\" x-top=\"97.4\" x-height=\"20\"><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"530\" height=\"20\" x=\"20\" y=\"199.1\"></rect><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"130\" x2=\"130\" y1=\"199.6\" y2=\"219.1\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"220\" x2=\"220\" y1=\"199.6\" y2=\"219.1\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"320\" x2=\"320\" y1=\"199.6\" y2=\"219.1\"></line><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"shelf\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"85.6\" x-height=\"18.6\" x-left=\"132.3\" x-top=\"200.5\" x-valign=\"center\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"85.6\" height=\"18.6\" x=\"132.3\" y=\"200.5\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"134.3\" y=\"211.5\">shelf</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"item_identifier\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"59.3\" x-height=\"16.6\" x-left=\"67.7\" x-top=\"201.4\" x-valign=\"center\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"59.3\" height=\"16.6\" x=\"67.7\" y=\"201.4\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"69.7\" y=\"212.4\">item_identifier</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"title\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"220.2\" x-height=\"18.6\" x-left=\"325.7\" x-top=\"199.9\" x-valign=\"center\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"220.2\" height=\"18.6\" x=\"325.7\" y=\"199.9\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"327.7\" y=\"210.9\">title</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"call_number\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"92.4\" x-height=\"18\" x-left=\"224.8\" x-top=\"200.2\" x-valign=\"center\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"92.4\" height=\"18\" x=\"224.8\" y=\"200.2\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"226.8\" y=\"211.2\">call_number</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"65\" x2=\"65\" y1=\"199.1\" y2=\"219.1\"></line><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"reason\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"40.1\" x-height=\"14.6\" x-left=\"22\" x-top=\"202.6\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"40.1\" height=\"14.6\" x=\"22\" y=\"202.6\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"24\" y=\"213.6\">reason</text></g></g><g class=\"s-list-page-footer\" transform=\"translate(0,-231.8) rotate(0 0 0)\" x-top=\"117.4\" x-height=\"0\" display=\"none\"></g><g class=\"s-list-footer\" transform=\"translate(0,-344.3) rotate(0 0 0)\" x-top=\"117.4\" x-height=\"0\" display=\"none\"></g><text class=\"s-list-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"87.8\">list</text><rect stroke-dasharray=\"5\" stroke=\"#BBBBBB\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"0\" class=\"s-list-face\" width=\"530\" height=\"715.3\" x=\"20\" y=\"77\"></rect></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"date\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":441.1,\"y\":20,\"width\":134.1,\"height\":10},\"format\":{\"base\":\"\",\"type\":\"datetime\",\"datetime\":{\"format\":\"%Y/%m/%d %H:%M\"}},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":575.2,\"y\":29,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"10\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"end\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"datetime\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"date\" x-width=\"134.1\" x-height=\"10\" x-left=\"441.1\" x-top=\"20\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-format-datetime-format=\"%Y/%m/%d %H:%M\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"134.1\" height=\"10\" x=\"441.1\" y=\"20\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"443.1\" y=\"31\">date</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"page\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":227.1,\"y\":807.5,\"width\":68.7,\"height\":10},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":295.8,\"y\":816.5,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"10\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"end\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"page\" x-width=\"68.7\" x-height=\"10\" x-left=\"227.1\" x-top=\"807.5\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"68.7\" height=\"10\" x=\"227.1\" y=\"807.5\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"229.1\" y=\"818.5\">page</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"total\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":311.8,\"y\":807.5,\"width\":77.2,\"height\":10},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":311.8,\"y\":816.5,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"10\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"total\" x-width=\"77.2\" x-height=\"10\" x-left=\"311.8\" x-top=\"807.5\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"77.2\" height=\"10\" x=\"311.8\" y=\"807.5\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"313.8\" y=\"818.5\">total</text></g>LAYOUT--><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"306.4\" y1=\"821.8\" y2=\"807.5\" x1=\"301.1\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"16\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"113\" x-height=\"16\" x-left=\"30.5\" x-top=\"20\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"113\" height=\"16\" x=\"30.5\" y=\"20\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"30.5\" y=\"34\">\u76f8\u4e92\u8cb8\u501f\u30ea\u30b9\u30c8</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"library\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":148,\"y\":20,\"width\":158.6,\"height\":16},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":148,\"y\":34,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"16\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"library\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"16\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"158.6\" x-height=\"16\" x-left=\"148\" x-top=\"20\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"158.6\" height=\"16\" x=\"148\" y=\"20\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"150\" y=\"31\">library</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"14\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"end\" text-decoration=\"none\" x-width=\"92\" x-height=\"14\" x-left=\"93.1\" x-top=\"44\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"92\" height=\"14\" x=\"93.1\" y=\"44\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"185.1\" y=\"56\">\u79fb\u52d5\u5148\u56f3\u66f8\u9928:</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"library_move_to\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":190.1,\"y\":44,\"width\":136,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":190.1,\"y\":56,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"14\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"library_move_to\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"14\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"136\" x-height=\"14\" x-left=\"190.1\" x-top=\"44\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"136\" height=\"14\" x=\"190.1\" y=\"44\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"192.1\" y=\"55\">library_move_to</text></g>LAYOUT--></g></svg>"}
@@ -0,0 +1 @@
1
+ {"version":"0.7.0","finger-print":825067278,"config":{"title":"","option":{},"page":{"paper-type":"user","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20","width":283.4,"height":425.1}},"svg":"<svg width=\"283.4\" height=\"425.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 283.4 425.1\"><g class=\"canvas\"><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"title\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"center\",\"line-height\":\"\",\"box\":{\"x\":25,\"y\":48.1,\"width\":196.3,\"height\":18},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":25,\"y\":48.1,\"width\":196.3,\"height\":18,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"14\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"title\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"14\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"196.3\" x-height=\"18\" x-left=\"25\" x-top=\"48.1\" x-valign=\"center\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.3\" height=\"18\" x=\"25\" y=\"48.1\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"27\" y=\"59.1\">title</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"14\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"50\" x-height=\"14\" x-left=\"37.1\" x-top=\"115.2\" x-valign=\"bottom\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"50\" height=\"14\" x=\"37.1\" y=\"115.2\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"37.1\" y=\"127.2\">\u79fb\u52d5\u5143:</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"from_library\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":88,\"y\":117.2,\"width\":159.3,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":88,\"y\":127.2,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"from_library\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"159.3\" x-height=\"12\" x-left=\"88\" x-top=\"117.2\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"159.3\" height=\"12\" x=\"88\" y=\"117.2\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"90\" y=\"128.2\">from_library</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAGothic\" font-size=\"14\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"50\" x-height=\"14\" x-left=\"37.1\" x-top=\"139.1\" x-valign=\"bottom\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"50\" height=\"14\" x=\"37.1\" y=\"139.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"37.1\" y=\"151.1\">\u79fb\u52d5\u5148:</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"to_library\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":89.1,\"y\":141.1,\"width\":159.3,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":89.1,\"y\":151.1,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"to_library\" x-width=\"159.3\" x-height=\"12\" x-left=\"89.1\" x-top=\"141.1\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"159.3\" height=\"12\" x=\"89.1\" y=\"141.1\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"91.1\" y=\"152.1\">to_library</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAGothic\" font-size=\"14\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"64\" x-height=\"14\" x-left=\"37.1\" x-top=\"174.1\" x-valign=\"bottom\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"64\" height=\"14\" x=\"37.1\" y=\"174.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"37.1\" y=\"186.1\">\u79fb\u52d5\u7406\u7531:</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"user_title\",\"display\":\"false\",\"desc\":null,\"line-height\":\"\",\"valign\":\"bottom\",\"box\":{\"x\":37.1,\"y\":196,\"width\":50,\"height\":14},\"text\":[\"\\u4e88\\u7d04\\u8005:\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"IPAGothic\",\"font-size\":\"14\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"37.1\\\" y=\\\"208\\\">\\u4e88\\u7d04\\u8005:</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"false\" x-id=\"user_title\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAGothic\" font-size=\"14\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"50\" x-height=\"14\" x-left=\"37.1\" x-top=\"196\" x-valign=\"bottom\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"50\" height=\"14\" x=\"37.1\" y=\"196\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"37.1\" y=\"208\">\u4e88\u7d04\u8005:</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"reserve_user\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":88.6,\"y\":198,\"width\":159.3,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":88.6,\"y\":208,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"reserve_user\" x-width=\"159.3\" x-height=\"12\" x-left=\"88.6\" x-top=\"198\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"159.3\" height=\"12\" x=\"88.6\" y=\"198\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"90.6\" y=\"209\">reserve_user</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"reason\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":102,\"y\":175,\"width\":137.2,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":102,\"y\":185,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"reason\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"137.2\" x-height=\"12\" x-left=\"102\" x-top=\"175\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"137.2\" height=\"12\" x=\"102\" y=\"175\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"104\" y=\"186\">reason</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"12\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"55\" x-height=\"12\" x-left=\"37.1\" x-top=\"72.1\" x-valign=\"bottom\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"55\" height=\"12\" x=\"37.1\" y=\"72.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"37.1\" y=\"82.1\">\u8acb\u6c42\u8a18\u53f7:</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"call_number\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":93.2,\"y\":72.1,\"width\":84.1,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":93.2,\"y\":82.1,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"call_number\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"84.1\" x-height=\"12\" x-left=\"93.2\" x-top=\"72.1\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"84.1\" height=\"12\" x=\"93.2\" y=\"72.1\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"95.2\" y=\"83.1\">call_number</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"expire_date_title\",\"display\":\"false\",\"desc\":null,\"line-height\":\"\",\"valign\":\"bottom\",\"box\":{\"x\":36.5,\"y\":220.9,\"width\":64,\"height\":14},\"text\":[\"\\u4e88\\u7d04\\u671f\\u9650:\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"font-size\":\"14\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"36.5\\\" y=\\\"232.9\\\">\\u4e88\\u7d04\\u671f\\u9650:</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"false\" x-id=\"expire_date_title\" font-size=\"14\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"64\" x-height=\"14\" x-left=\"36.5\" x-top=\"220.9\" x-valign=\"bottom\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"64\" height=\"14\" x=\"36.5\" y=\"220.9\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"36.5\" y=\"232.9\">\u4e88\u7d04\u671f\u9650:</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"reserve_expire_date\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":101,\"y\":222,\"width\":127.5,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"datetime\",\"datetime\":{\"format\":\"%Y\\u5e74%m\\u6708%d\\u65e5\"}},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":101,\"y\":232,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"datetime\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"reserve_expire_date\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"127.5\" x-height=\"12\" x-left=\"101\" x-top=\"222\" x-format-datetime-format=\"%Y\u5e74%m\u6708%d\u65e5\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"127.5\" height=\"12\" x=\"101\" y=\"222\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"103\" y=\"233\">reserve_expire_date</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"date\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":682.6,\"y\":20,\"width\":140,\"height\":10},\"format\":{\"base\":\"\",\"type\":\"datetime\",\"datetime\":{\"format\":\"%Y/%m/%d %H:%M\"}},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":822.6,\"y\":29,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"10\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"end\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"datetime\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"date\" x-width=\"140\" x-height=\"10\" x-left=\"682.6\" x-top=\"20\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-format-datetime-format=\"%Y/%m/%d %H:%M\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"140\" height=\"10\" x=\"682.6\" y=\"20\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"684.6\" y=\"31\">date</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"date#1\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":682.6,\"y\":20,\"width\":140,\"height\":10},\"format\":{\"base\":\"\",\"type\":\"datetime\",\"datetime\":{\"format\":\"%Y/%m/%d %H:%M\"}},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":822.6,\"y\":29,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"10\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"end\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"datetime\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"date#1\" x-width=\"140\" x-height=\"10\" x-left=\"682.6\" x-top=\"20\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-format-datetime-format=\"%Y/%m/%d %H:%M\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"140\" height=\"10\" x=\"682.6\" y=\"20\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"684.6\" y=\"31\">date#1</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"date#2\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":682.6,\"y\":20,\"width\":140,\"height\":10},\"format\":{\"base\":\"\",\"type\":\"datetime\",\"datetime\":{\"format\":\"%Y/%m/%d %H:%M\"}},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":822.6,\"y\":29,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"10\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"end\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"datetime\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"date#2\" x-width=\"140\" x-height=\"10\" x-left=\"682.6\" x-top=\"20\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-format-datetime-format=\"%Y/%m/%d %H:%M\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"140\" height=\"10\" x=\"682.6\" y=\"20\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"684.6\" y=\"31\">date#2</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"date#3\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":682.6,\"y\":20,\"width\":140,\"height\":10},\"format\":{\"base\":\"\",\"type\":\"datetime\",\"datetime\":{\"format\":\"%Y/%m/%d %H:%M\"}},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":822.6,\"y\":29,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"10\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"end\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"datetime\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"date#3\" x-width=\"140\" x-height=\"10\" x-left=\"682.6\" x-top=\"20\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-format-datetime-format=\"%Y/%m/%d %H:%M\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"140\" height=\"10\" x=\"682.6\" y=\"20\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"684.6\" y=\"31\">date#3</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"export_date\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":110.1,\"y\":20,\"width\":153.3,\"height\":9},\"format\":{\"base\":\"\",\"type\":\"datetime\",\"datetime\":{\"format\":\"%Y/%m/%d %H:%M:%S\"}},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":263.4,\"y\":28,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"9\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"end\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"datetime\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"export_date\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"9\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"end\" text-decoration=\"none\" x-width=\"153.3\" x-height=\"9\" x-left=\"110.1\" x-top=\"20\" x-format-datetime-format=\"%Y/%m/%d %H:%M:%S\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"153.3\" height=\"9\" x=\"110.1\" y=\"20\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"112.1\" y=\"31\">export_date</text></g>LAYOUT--></g></svg>"}
@@ -0,0 +1,52 @@
1
+ <div id="content_detail" class="ui-corner-all">
2
+ <h1 class="title"><%= t('page.new', :model => t('activerecord.models.inter_library_loan')) -%></h1>
3
+ <div id="content_list">
4
+
5
+ <%= form_for(@inter_library_loan) do |f| -%>
6
+ <%= f.error_messages -%>
7
+
8
+ <div class="field">
9
+ <%= f.label :from_library -%><br />
10
+ <%= f.select(:from_library_id, @libraries.collect{|l| [l.display_name.localize, l.id]}, :selected => @current_library.id) -%>
11
+ </div>
12
+
13
+ <div class="field">
14
+ <%= f.label :to_library -%><br />
15
+ <%= f.select(:to_library_id, @libraries.collect{|l| [l.display_name.localize, l.id]}) -%>
16
+ </div>
17
+
18
+ <div class="field">
19
+ <%= f.label :reason -%><br />
20
+ <%= f.select(:reason, @reasons.collect{|r| [r[0], r[1]]}) -%>
21
+ </div>
22
+
23
+ <div class="field">
24
+ <%= f.label :requested_at -%><br />
25
+ <%= f.text_field :requested_at, :class => 'date_field' -%>
26
+ </div>
27
+
28
+ <div class="field">
29
+ <%= f.label t('activerecord.models.item') -%><br />
30
+ <%- if @item -%>
31
+ <%= link_to @item.shelf.library.display_name.localize, @item.shelf.library -%>
32
+ <%= link_to @item.item_identifier, @item -%>
33
+ (<%= link_to @item.manifestation.original_title, @item.manifestation -%>)
34
+ <%= f.hidden_field :item_identifier, :value => @item.item_identifier -%>
35
+ <%- else -%>
36
+ <%= f.text_field :item_identifier, :class => 'resource_item_identifier' -%>
37
+ <%- end -%>
38
+ </div>
39
+
40
+ <div class="actions">
41
+ <%= f.submit :disable_with => t('page.wait') %>
42
+ </div>
43
+ <%- end -%>
44
+
45
+ </div>
46
+ </div>
47
+
48
+ <div id="submenu" class="ui-corner-all">
49
+ <ul>
50
+ <li><%= link_to t('page.back'), inter_library_loans_path -%></li>
51
+ </ul>
52
+ </div>
@@ -0,0 +1,35 @@
1
+ <script>
2
+ $(document).ready(function() {
3
+ if ("<%= flash[:path]-%>".length > 0) {
4
+ location.href= "<%= url_for(:controller => :inter_library_loans, :action => :download_file, :path => flash[:path])-%>"
5
+ }
6
+ });
7
+
8
+ function delete_field(){
9
+ var item_identifier = $("#item_identifier").val();
10
+ $("#item_identifier_tmp").val(item_identifier);
11
+ $("#item_identifier").val("");
12
+ }
13
+ </script>
14
+ <div id="content_detail" class="ui-corner-all">
15
+ <h1 class="title"><%= t('inter_library_loan.pickup_item') -%></h1>
16
+ <div id="content_list">
17
+ <div style="color: green"><%= flash[:message] -%></div>
18
+ <div id="pickup_item_list">
19
+ <%= form_for :inter_library_loan, :url => {:controller => 'inter_library_loans', :action => :pickup_item}, :html => {:method => :post} do -%>
20
+ <p>
21
+ <%= t('activerecord.attributes.item.item_identifier') -%>: <%= text_field_tag :item_identifier -%>
22
+ <input type="hidden" name="item_identifier_tmp" id="item_identifier_tmp" value="">
23
+ <%= submit_tag t('page.read'), :disable_with => t('page.wait'), :onclick => "delete_field();return true;" -%>
24
+ </p>
25
+ <%- end -%>
26
+ <%= javascript_tag("$('#item_identifier').focus()") -%>
27
+ </div>
28
+ </div>
29
+ </div>
30
+
31
+ <div id="submenu" class="ui-corner-all">
32
+ <ul>
33
+ <li><%= link_to t('page.back'), inter_library_loans_path -%></li>
34
+ </ul>
35
+ </div>