enju_circulation 0.0.9 → 0.0.10
Sign up to get free protection for your applications and to get access to all the features.
- data/app/views/checkouts/index.csv.erb +1 -1
- data/lib/enju_circulation/version.rb +1 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/lib/enju_leaf/import_file.rb +13 -0
- data/spec/dummy/lib/enju_leaf.rb +1 -0
- data/spec/dummy/log/test.log +25770 -0
- metadata +36 -34
@@ -1,4 +1,4 @@
|
|
1
1
|
<%- if params[:view] == 'overdue' -%><%= ('Overdue items') -%><%- else -%><%= ('Checkout items') -%><%- end -%> (created_at: <%= Time.now -%>)<%= "\n" -%>
|
2
2
|
<%- @checkouts.each do |checkout| -%>
|
3
|
-
"<%=h checkout.
|
3
|
+
"<%=h checkout.user.try(:username) -%>","<%=h checkout.item.item_identifier -%>","<%=h checkout.item.manifestation.original_title -%>","<%=h checkout.created_at -%>","<%= checkout.due_date -%>"<%= "\n" -%>
|
4
4
|
<%- end -%>
|
data/spec/dummy/db/test.sqlite3
CHANGED
Binary file
|
data/spec/dummy/lib/enju_leaf.rb
CHANGED