enju_circulation 0.0.9 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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