enju_library 0.3.11 → 0.4.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (221) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -3
  3. data/app/controllers/accepts_controller.rb +2 -2
  4. data/app/controllers/concerns/enju_library/controller.rb +7 -7
  5. data/app/controllers/libraries_controller.rb +4 -1
  6. data/app/controllers/library_groups_controller.rb +7 -1
  7. data/app/controllers/request_status_types_controller.rb +6 -1
  8. data/app/controllers/request_types_controller.rb +6 -1
  9. data/app/controllers/shelves_controller.rb +4 -1
  10. data/app/controllers/user_groups_controller.rb +3 -0
  11. data/app/controllers/user_import_results_controller.rb +1 -1
  12. data/app/controllers/withdraws_controller.rb +2 -2
  13. data/app/helpers/enju_library/application_helper.rb +18 -0
  14. data/app/models/budget_type.rb +9 -7
  15. data/app/models/concerns/enju_library/enju_user.rb +10 -0
  16. data/app/models/library.rb +29 -43
  17. data/app/models/library_group.rb +10 -11
  18. data/app/models/request_status_type.rb +9 -7
  19. data/app/models/request_type.rb +9 -7
  20. data/app/models/search_engine.rb +14 -18
  21. data/app/models/shelf.rb +13 -11
  22. data/app/models/user_export_file.rb +2 -2
  23. data/app/models/user_export_file_state_machine.rb +1 -1
  24. data/app/models/user_group.rb +2 -0
  25. data/app/models/user_import_file.rb +28 -27
  26. data/app/models/user_import_file_state_machine.rb +1 -1
  27. data/app/models/withdraw.rb +6 -0
  28. data/app/policies/shelf_policy.rb +1 -1
  29. data/app/views/accepts/_list.html.erb +2 -2
  30. data/app/views/accepts/index.html.erb +2 -2
  31. data/app/views/accepts/{index.text.erb → index.txt.csv} +0 -0
  32. data/app/views/budget_types/_form.html.erb +1 -1
  33. data/app/views/budget_types/index.html.erb +1 -1
  34. data/app/views/budget_types/show.html.erb +1 -1
  35. data/app/views/libraries/_calendar.html.erb +1 -1
  36. data/app/views/libraries/_form.html.erb +2 -12
  37. data/app/views/libraries/_map.html+phone.erb +2 -2
  38. data/app/views/libraries/_map.html.erb +23 -10
  39. data/app/views/libraries/index.html.erb +1 -1
  40. data/app/views/libraries/show.html+phone.erb +1 -1
  41. data/app/views/libraries/show.html+phone.slim +1 -1
  42. data/app/views/libraries/show.html.erb +2 -2
  43. data/app/views/library_groups/_form.html.erb +14 -13
  44. data/app/views/library_groups/index.html.erb +1 -1
  45. data/app/views/library_groups/show.html.erb +2 -2
  46. data/app/views/picture_files/_index_shelf.html.erb +1 -1
  47. data/app/views/request_status_types/_form.html.erb +1 -1
  48. data/app/views/request_status_types/index.html.erb +1 -1
  49. data/app/views/request_status_types/show.html.erb +1 -1
  50. data/app/views/request_types/_form.html.erb +1 -1
  51. data/app/views/request_types/index.html.erb +2 -2
  52. data/app/views/request_types/show.html.erb +1 -1
  53. data/app/views/shelves/_form.html.erb +1 -1
  54. data/app/views/shelves/_select_form.html.erb +1 -1
  55. data/app/views/shelves/index.html.erb +3 -3
  56. data/app/views/shelves/show.html+phone.erb +1 -1
  57. data/app/views/shelves/show.html+phone.slim +1 -1
  58. data/app/views/shelves/show.html.erb +2 -2
  59. data/app/views/user_groups/_form.html.erb +1 -1
  60. data/app/views/user_groups/index.html.erb +1 -1
  61. data/app/views/user_groups/show.html.erb +2 -2
  62. data/app/views/user_import_files/_results.html.erb +0 -5
  63. data/app/views/user_import_files/new.html.erb +2 -2
  64. data/app/views/user_import_files/show.html.erb +2 -2
  65. data/app/views/user_import_results/index.html.erb +11 -0
  66. data/app/views/user_import_results/{index.text.erb → index.txt.erb} +0 -0
  67. data/app/views/withdraws/_list.html.erb +2 -2
  68. data/app/views/withdraws/index.html.erb +3 -3
  69. data/app/views/withdraws/{index.text.erb → index.txt.csv} +0 -0
  70. data/app/views/withdraws/new.html.erb +1 -1
  71. data/config/locales/translation_en.yml +2 -4
  72. data/config/locales/translation_ja.yml +2 -4
  73. data/db/migrate/20160813191647_add_max_number_of_results_to_library_group.rb +1 -1
  74. data/db/migrate/20190630113817_add_display_name_translations_to_library_group.rb +12 -0
  75. data/db/migrate/20190630115523_add_login_banner_translations_to_library_group.rb +6 -0
  76. data/lib/enju_library/version.rb +1 -1
  77. data/lib/generators/enju_library/setup/setup_generator.rb +2 -7
  78. data/lib/generators/enju_library/setup/templates/db/fixtures/budget_types.yml +4 -0
  79. data/lib/generators/enju_library/setup/templates/db/fixtures/libraries.yml +2 -2
  80. data/lib/generators/enju_library/setup/templates/db/fixtures/library_groups.yml +11 -5
  81. data/lib/generators/enju_library/setup/templates/db/fixtures/user_groups.yml +1 -2
  82. data/spec/controllers/budget_types_controller_spec.rb +1 -1
  83. data/spec/controllers/items_controller_spec.rb +35 -0
  84. data/spec/dummy/app/helpers/application_helper.rb +1 -0
  85. data/spec/dummy/app/models/user.rb +1 -2
  86. data/spec/dummy/bin/bundle +1 -1
  87. data/spec/dummy/bin/setup +1 -3
  88. data/spec/dummy/bin/update +4 -2
  89. data/spec/dummy/bin/yarn +3 -3
  90. data/spec/dummy/config/application.rb +1 -0
  91. data/spec/dummy/config/database.yml +70 -9
  92. data/spec/dummy/config/initializers/assets.rb +1 -1
  93. data/spec/dummy/config/storage.yml +34 -0
  94. data/spec/dummy/db/development.sqlite3 +0 -0
  95. data/spec/dummy/db/migrate/113_create_events.rb +2 -4
  96. data/spec/dummy/db/migrate/20081028093607_create_event_import_files.rb +2 -4
  97. data/spec/dummy/db/migrate/20090519203307_create_participates.rb +2 -4
  98. data/spec/dummy/db/migrate/20100925074639_create_event_import_results.rb +2 -2
  99. data/spec/dummy/db/migrate/20140720192418_add_default_library_id_to_event_import_file.rb +1 -1
  100. data/spec/dummy/db/migrate/20140812152348_create_event_export_files.rb +1 -1
  101. data/spec/dummy/db/migrate/20140814070854_add_default_event_category_id_to_event_import_file.rb +1 -1
  102. data/spec/dummy/db/migrate/20151128142913_create_places.rb +14 -0
  103. data/spec/dummy/db/migrate/20151201163718_add_place_id_to_event.rb +5 -0
  104. data/spec/dummy/db/migrate/20160319144230_create_issn_records.rb +11 -0
  105. data/spec/dummy/db/migrate/20160506144040_create_isbn_records.rb +11 -0
  106. data/spec/dummy/db/migrate/20160703184258_add_most_recent_to_event_import_file_transitions.rb +9 -0
  107. data/spec/dummy/db/migrate/20160703184311_add_most_recent_to_event_export_file_transitions.rb +9 -0
  108. data/spec/dummy/db/migrate/20170116134107_create_issn_record_and_manifestations.rb +11 -0
  109. data/spec/dummy/db/migrate/20170116134120_create_isbn_record_and_manifestations.rb +11 -0
  110. data/spec/dummy/db/migrate/20170116150432_create_jpno_records.rb +10 -0
  111. data/spec/dummy/db/migrate/20171126072934_create_ndla_records.rb +10 -0
  112. data/spec/dummy/db/migrate/20180107162659_add_constraints_to_most_recent_for_message_transitions.rb +13 -0
  113. data/spec/dummy/db/migrate/20180107162711_add_constraints_to_most_recent_for_message_request_transitions.rb +13 -0
  114. data/spec/dummy/db/migrate/20180107164558_add_constraints_to_most_recent_for_event_import_file_transitions.rb +13 -0
  115. data/spec/dummy/db/migrate/20180107164617_add_constraints_to_most_recent_for_event_export_file_transitions.rb +13 -0
  116. data/spec/dummy/db/migrate/20181030072731_add_not_null_to_position_on_carrier_type.rb +14 -0
  117. data/spec/dummy/db/migrate/20181119170645_add_foreign_key_to_events_referencing_event_categories.rb +5 -0
  118. data/spec/dummy/db/migrate/20190102034126_create_doi_records.rb +13 -0
  119. data/spec/dummy/db/migrate/20190208135957_create_active_storage_tables.active_storage.rb +27 -0
  120. data/spec/dummy/db/migrate/20190311154610_create_periodicals.rb +10 -0
  121. data/spec/dummy/db/migrate/20190312033839_create_periodical_and_manifestations.rb +11 -0
  122. data/spec/dummy/db/migrate/20190314151124_add_full_name_translations_to_create.rb +7 -0
  123. data/spec/dummy/db/migrate/20190501043418_create_ndl_bib_id_records.rb +10 -0
  124. data/spec/dummy/db/migrate/20190508160525_create_retains.rb +10 -0
  125. data/spec/dummy/db/migrate/20190512133459_upgrade_enju_event_to_enju_leaf20.rb +115 -0
  126. data/spec/dummy/db/migrate/20190629134017_rename_user_group_has_checkout_type_due_date_before_to_due_date_after.rb +5 -0
  127. data/spec/dummy/db/migrate/20190630151446_add_display_name_translations_to_role.rb +5 -0
  128. data/spec/dummy/db/migrate/20190630153136_add_display_name_translations_to_event.rb +6 -0
  129. data/spec/dummy/db/migrate/20190706052525_add_display_name_translations_to_circulation_status.rb +5 -0
  130. data/spec/dummy/db/migrate/20190712163038_add_display_name_translations_to_carrier_type.rb +21 -0
  131. data/spec/dummy/db/migrate/20190713114724_add_checkout_id_to_checkin.rb +6 -0
  132. data/spec/dummy/db/migrate/20190713114940_add_profile_id_to_user.rb +5 -0
  133. data/spec/dummy/db/migrate/20190713115451_add_full_name_translations_to_profile.rb +5 -0
  134. data/spec/dummy/db/migrate/20190814120827_add_display_name_translations_to_checkout_type.rb +5 -0
  135. data/spec/dummy/db/schema.rb +402 -204
  136. data/spec/dummy/db/test.sqlite3 +0 -0
  137. data/spec/factories/budget_types.rb +8 -7
  138. data/spec/factories/profile.rb +9 -2
  139. data/spec/factories/user.rb +25 -31
  140. data/spec/factories/user_export_file.rb +5 -0
  141. data/spec/factories/user_import_file.rb +7 -0
  142. data/spec/factories/user_import_result.rb +6 -0
  143. data/spec/fixtures/agent_relationship_types.yml +34 -0
  144. data/spec/fixtures/agent_types.yml +11 -11
  145. data/spec/fixtures/agents.yml +27 -27
  146. data/spec/fixtures/baskets.yml +1 -0
  147. data/spec/fixtures/bookstores.yml +1 -0
  148. data/spec/fixtures/budget_types.yml +9 -7
  149. data/spec/fixtures/carrier_type_has_checkout_types.yml +5 -5
  150. data/spec/fixtures/carrier_types.yml +28 -24
  151. data/spec/fixtures/checked_items.yml +6 -6
  152. data/spec/fixtures/checkins.yml +4 -11
  153. data/spec/fixtures/checkout_stat_has_manifestations.yml +5 -5
  154. data/spec/fixtures/checkout_stat_has_users.yml +6 -6
  155. data/spec/fixtures/checkout_types.yml +11 -11
  156. data/spec/fixtures/checkouts.yml +16 -17
  157. data/spec/fixtures/circulation_statuses.yml +29 -38
  158. data/spec/fixtures/classification_types.yml +63 -0
  159. data/spec/fixtures/content_types.yml +20 -31
  160. data/spec/fixtures/create_types.yml +43 -0
  161. data/spec/fixtures/event_categories.yml +23 -23
  162. data/spec/fixtures/frequencies.yml +17 -25
  163. data/spec/fixtures/identifier_types.yml +42 -0
  164. data/spec/fixtures/item_has_use_restrictions.yml +11 -11
  165. data/spec/fixtures/items.yml +28 -17
  166. data/spec/fixtures/languages.yml +12 -13
  167. data/spec/fixtures/lending_policies.yml +8 -15
  168. data/spec/fixtures/libraries.yml +30 -29
  169. data/spec/fixtures/library_groups.yml +12 -9
  170. data/spec/fixtures/manifestation_checkout_stats.yml +4 -3
  171. data/spec/fixtures/manifestation_relationship_types.yml +29 -0
  172. data/spec/fixtures/manifestation_reserve_stats.yml +4 -3
  173. data/spec/fixtures/manifestations.yml +60 -50
  174. data/spec/fixtures/message_requests.yml +3 -3
  175. data/spec/fixtures/produce_types.yml +29 -0
  176. data/spec/fixtures/profiles.yml +11 -6
  177. data/spec/fixtures/realize_types.yml +36 -0
  178. data/spec/fixtures/request_status_types.yml +14 -13
  179. data/spec/fixtures/request_types.yml +13 -12
  180. data/spec/fixtures/reserve_stat_has_manifestations.yml +5 -5
  181. data/spec/fixtures/reserve_stat_has_users.yml +5 -5
  182. data/spec/fixtures/reserve_transitions.yml +8 -7
  183. data/spec/fixtures/reserves.yml +44 -64
  184. data/spec/fixtures/roles.yml +22 -5
  185. data/spec/fixtures/search_engines.yml +13 -12
  186. data/spec/fixtures/shelves.yml +16 -15
  187. data/spec/fixtures/subject_heading_types.yml +39 -0
  188. data/spec/fixtures/subject_types.yml +28 -0
  189. data/spec/fixtures/use_restrictions.yml +4 -4
  190. data/spec/fixtures/user_checkout_stats.yml +4 -4
  191. data/spec/fixtures/user_export_files.yml +1 -1
  192. data/spec/fixtures/user_group_has_checkout_types.yml +19 -19
  193. data/spec/fixtures/user_groups.yml +4 -3
  194. data/spec/fixtures/user_has_roles.yml +3 -4
  195. data/spec/fixtures/user_reserve_stats.yml +5 -4
  196. data/spec/models/budget_type_spec.rb +8 -7
  197. data/spec/models/library_group_spec.rb +5 -14
  198. data/spec/models/library_spec.rb +26 -25
  199. data/spec/models/request_status_type_spec.rb +8 -7
  200. data/spec/models/request_type_spec.rb +8 -7
  201. data/spec/models/search_engine_spec.rb +13 -12
  202. data/spec/models/shelf_spec.rb +12 -11
  203. data/spec/models/user_export_file_spec.rb +2 -2
  204. data/spec/models/user_group_spec.rb +1 -6
  205. data/spec/models/user_import_file_spec.rb +23 -23
  206. data/spec/rails_helper.rb +10 -2
  207. data/spec/system/libraries_spec.rb +5 -5
  208. metadata +476 -491
  209. data/app/helpers/shelves_helper.rb +0 -16
  210. data/app/views/layouts/libraries.html.erb +0 -31
  211. data/app/views/libraries/_map_header.html.erb +0 -6
  212. data/db/migrate/20151213070943_add_translation_table_to_library_group.rb +0 -18
  213. data/db/migrate/20151213072705_add_footer_banner_to_library_group.rb +0 -22
  214. data/lib/generators/enju_library/setup/templates/db/fixtures/library_group/translations.yml +0 -12
  215. data/spec/dummy/app/assets/config/manifest.js +0 -5
  216. data/spec/dummy/db/migrate/20190818075603_add_memo_to_manifestation.rb +0 -5
  217. data/spec/dummy/db/migrate/20190818075628_add_memo_to_item.rb +0 -5
  218. data/spec/dummy/db/migrate/20200425072340_create_manifestation_custom_properties.rb +0 -12
  219. data/spec/dummy/db/migrate/20200425072349_create_item_custom_properties.rb +0 -12
  220. data/spec/dummy/db/migrate/20200425074758_create_manifestation_custom_values.rb +0 -12
  221. data/spec/dummy/db/migrate/20200425074822_create_item_custom_values.rb +0 -12
@@ -0,0 +1,42 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ name: isbn
5
+ display_name: ISBN
6
+ note:
7
+ position: 1
8
+ id: 1
9
+
10
+ two:
11
+ name: issn
12
+ display_name: ISSN
13
+ note:
14
+ position: 2
15
+ id: 2
16
+
17
+ three:
18
+ name: jpno
19
+ display_name: JPNO
20
+ note:
21
+ position: 3
22
+ id: 3
23
+
24
+ four:
25
+ name: ncid
26
+ display_name: NCID
27
+ note:
28
+ position: 4
29
+ id: 4
30
+
31
+ # == Schema Information
32
+ #
33
+ # Table name: identifier_types
34
+ #
35
+ # id :integer not null, primary key
36
+ # name :string
37
+ # display_name :text
38
+ # note :text
39
+ # position :integer
40
+ # created_at :datetime
41
+ # updated_at :datetime
42
+ #
@@ -21,41 +21,41 @@ item_has_use_restriction_00004:
21
21
  item_id: 17
22
22
  updated_at: 2008-02-13 12:29:36.013448 +09:00
23
23
  id: 4
24
- use_restriction_id: 4
24
+ use_restriction_id: 6
25
25
  created_at: 2008-02-13 12:29:36.013448 +09:00
26
26
  item_has_use_restriction_00005:
27
27
  item_id: 21
28
28
  updated_at: 2008-02-13 12:29:36.013448 +09:00
29
29
  id: 5
30
- use_restriction_id: 4
30
+ use_restriction_id: 6
31
31
  created_at: 2008-02-13 12:29:36.013448 +09:00
32
32
  item_has_use_restriction_00006:
33
33
  item_id: 11
34
34
  updated_at: 2008-02-13 12:29:36.013448 +09:00
35
35
  id: 6
36
- use_restriction_id: 4
36
+ use_restriction_id: 6
37
37
  created_at: 2008-02-13 12:29:36.013448 +09:00
38
38
  item_has_use_restriction_00007:
39
39
  item_id: 6
40
40
  updated_at: 2008-02-13 12:29:36.013448 +09:00
41
41
  id: 7
42
- use_restriction_id: 4
42
+ use_restriction_id: 6
43
43
  created_at: 2008-02-13 12:29:36.013448 +09:00
44
44
  item_has_use_restriction_00008:
45
- item_id: 24
45
+ item_id: 23
46
46
  updated_at: 2008-02-13 12:29:36.013448 +09:00
47
47
  id: 8
48
- use_restriction_id: 4
48
+ use_restriction_id: 6
49
49
  created_at: 2008-02-13 12:29:36.013448 +09:00
50
50
 
51
51
  # == Schema Information
52
52
  #
53
53
  # Table name: item_has_use_restrictions
54
54
  #
55
- # id :integer not null, primary key
56
- # item_id :integer not null
57
- # use_restriction_id :integer not null
58
- # created_at :datetime not null
59
- # updated_at :datetime not null
55
+ # id :integer not null, primary key
56
+ # item_id :integer not null
57
+ # use_restriction_id :integer not null
58
+ # created_at :datetime
59
+ # updated_at :datetime
60
60
  #
61
61
 
@@ -130,8 +130,6 @@ item_00012:
130
130
  manifestation_id: 2
131
131
  id: 12
132
132
  include_supplements: false
133
- bookstore_id: 1
134
- budget_type_id: 1
135
133
  created_at: 2007-08-24 23:46:11.484813 +09:00
136
134
  item_00013:
137
135
  updated_at: 2007-08-24 23:46:12.484813 +09:00
@@ -246,7 +244,7 @@ item_00022:
246
244
  item_00023:
247
245
  updated_at: 2007-08-24 23:46:20.484813 +09:00
248
246
  item_identifier: '00023'
249
- circulation_status_id: 15
247
+ circulation_status_id: 16
250
248
  checkout_type_id: 3
251
249
  shelf_id: 2
252
250
  call_number:
@@ -255,31 +253,44 @@ item_00023:
255
253
  include_supplements: false
256
254
  created_at: 2007-08-24 23:46:20.484813 +09:00
257
255
  item_00024:
258
- updated_at: 2007-08-24 23:46:20.484813 +09:00
256
+ updated_at: 2007-08-24 23:46:08.607081 +09:00
259
257
  item_identifier: '00024'
260
- circulation_status_id: 15
261
- checkout_type_id: 3
262
- shelf_id: 2
258
+ circulation_status_id: 2
259
+ checkout_type_id: 1
260
+ shelf_id: 3
263
261
  call_number:
264
- manifestation_id: 11
262
+ manifestation_id: 102
265
263
  id: 24
266
264
  include_supplements: false
267
- created_at: 2007-08-24 23:46:20.484813 +09:00
265
+ created_at: 2007-08-24 23:46:08.607081 +09:00
266
+ acquired_at: 2015-08-25 23:46:08.607081 +09:00
267
+ item_00025:
268
+ updated_at: 2007-08-24 23:46:08.607081 +09:00
269
+ item_identifier: '00025'
270
+ circulation_status_id: 2
271
+ checkout_type_id: 1
272
+ shelf_id: 3
273
+ call_number: '547|ヤ'
274
+ manifestation_id: 102
275
+ id: 25
276
+ include_supplements: false
277
+ created_at: 2007-08-24 23:46:08.607081 +09:00
278
+ acquired_at: 2015-09-25 23:46:08.607081 +09:00
268
279
 
269
280
  # == Schema Information
270
281
  #
271
282
  # Table name: items
272
283
  #
273
284
  # id :integer not null, primary key
274
- # call_number :string(255)
275
- # item_identifier :string(255)
276
- # created_at :datetime not null
277
- # updated_at :datetime not null
285
+ # call_number :string
286
+ # item_identifier :string
287
+ # created_at :datetime
288
+ # updated_at :datetime
278
289
  # deleted_at :datetime
279
290
  # shelf_id :integer default(1), not null
280
291
  # include_supplements :boolean default(FALSE), not null
281
292
  # note :text
282
- # url :string(255)
293
+ # url :string
283
294
  # price :integer
284
295
  # lock_version :integer default(0), not null
285
296
  # required_role_id :integer default(1), not null
@@ -289,8 +300,8 @@ item_00024:
289
300
  # budget_type_id :integer
290
301
  # circulation_status_id :integer default(5), not null
291
302
  # checkout_type_id :integer default(1), not null
292
- # binding_item_identifier :string(255)
293
- # binding_call_number :string(255)
303
+ # binding_item_identifier :string
304
+ # binding_call_number :string
294
305
  # binded_at :datetime
295
- # manifestation_id :integer
306
+ # manifestation_id :integer not null
296
307
  #
@@ -2,8 +2,7 @@
2
2
  language_00001:
3
3
  position: 1
4
4
  name: unknown
5
- display_name: "en: unknown\r\n\
6
- ja: 不明"
5
+ display_name: "unknown"
7
6
  iso_639_1: unknown
8
7
  iso_639_2: unknown
9
8
  iso_639_3: unknown
@@ -1882,20 +1881,20 @@ language_00140:
1882
1881
  iso_639_3: srd
1883
1882
  id: 140
1884
1883
  note:
1885
- native_name:
1884
+ native_name:
1886
1885
 
1887
1886
  # == Schema Information
1888
1887
  #
1889
1888
  # Table name: languages
1890
1889
  #
1891
- # id :integer not null, primary key
1892
- # name :string(255) not null
1893
- # native_name :string(255)
1894
- # display_name :text
1895
- # iso_639_1 :string(255)
1896
- # iso_639_2 :string(255)
1897
- # iso_639_3 :string(255)
1898
- # note :text
1899
- # position :integer
1890
+ # id :integer not null, primary key
1891
+ # name :string not null
1892
+ # native_name :string
1893
+ # display_name :text
1894
+ # iso_639_1 :string
1895
+ # iso_639_2 :string
1896
+ # iso_639_3 :string
1897
+ # note :text
1898
+ # position :integer
1899
+ # display_name_translations :jsonb not null
1900
1900
  #
1901
-
@@ -72,28 +72,21 @@ lending_policy_00008:
72
72
  fixed_due_date:
73
73
  renewal: 1
74
74
  fine: 10
75
- lending_policy_00009:
76
- item_id: 24
77
- user_group_id: 2
78
- loan_period: 1
79
- fixed_due_date:
80
- renewal: 1
81
- fine: 10
82
75
 
83
76
  # == Schema Information
84
77
  #
85
78
  # Table name: lending_policies
86
79
  #
87
- # id :integer not null, primary key
88
- # item_id :integer not null
89
- # user_group_id :integer not null
90
- # loan_period :integer default(0), not null
80
+ # id :integer not null, primary key
81
+ # item_id :integer not null
82
+ # user_group_id :integer not null
83
+ # loan_period :integer default(0), not null
91
84
  # fixed_due_date :datetime
92
- # renewal :integer default(0), not null
93
- # fine :integer default(0), not null
85
+ # renewal :integer default(0), not null
86
+ # fine :decimal(, ) default(0.0), not null
94
87
  # note :text
95
88
  # position :integer
96
- # created_at :datetime not null
97
- # updated_at :datetime not null
89
+ # created_at :datetime not null
90
+ # updated_at :datetime not null
98
91
  #
99
92
 
@@ -2,7 +2,7 @@
2
2
  library_00001:
3
3
  name: web
4
4
  short_display_name: Web
5
- display_name: World Wide Web
5
+ display_name_translations: {"en": "World Wide Web", "ja": "ウェブ"}
6
6
  fax_number:
7
7
  updated_at: 2007-08-31 00:18:06.662349 +09:00
8
8
  telephone_number_1:
@@ -19,7 +19,7 @@ library_00001:
19
19
  library_00002:
20
20
  name: kamata
21
21
  short_display_name: 蒲田
22
- display_name: Kamata Library
22
+ display_name_translations: {"en": "Kamata Library", "ja": "蒲田図書館"}
23
23
  fax_number: ""
24
24
  updated_at: 2007-08-31 00:18:06.662349 +09:00
25
25
  telephone_number_1: 81-3-3732-5111
@@ -37,7 +37,7 @@ library_00002:
37
37
  library_00003:
38
38
  name: hachioji
39
39
  short_display_name: 八王子
40
- display_name: Hachioji Library
40
+ display_name_translations: {"en": "Hachioji Library", "ja": "八王子図書館"}
41
41
  fax_number: 042-637-2116
42
42
  updated_at: 2007-08-31 00:18:16.188285 +09:00
43
43
  telephone_number_1: 042-637-2033
@@ -54,7 +54,7 @@ library_00003:
54
54
  library_00004:
55
55
  name: mita
56
56
  short_display_name: 三田
57
- display_name: Mita Library
57
+ display_name_translations: {"en": "Mita Library", "ja": "三田図書館"}
58
58
  fax_number: ""
59
59
  updated_at: 2007-08-31 00:18:20.043951 +09:00
60
60
  telephone_number_1: ""
@@ -73,29 +73,30 @@ library_00004:
73
73
  #
74
74
  # Table name: libraries
75
75
  #
76
- # id :integer not null, primary key
77
- # name :string not null
78
- # display_name :text
79
- # short_display_name :string not null
80
- # zip_code :string
81
- # street :text
82
- # locality :text
83
- # region :text
84
- # telephone_number_1 :string
85
- # telephone_number_2 :string
86
- # fax_number :string
87
- # note :text
88
- # call_number_rows :integer default(1), not null
89
- # call_number_delimiter :string default("|"), not null
90
- # library_group_id :integer not null
91
- # users_count :integer default(0), not null
92
- # position :integer
93
- # country_id :integer
94
- # created_at :datetime
95
- # updated_at :datetime
96
- # deleted_at :datetime
97
- # opening_hour :text
98
- # isil :string
99
- # latitude :float
100
- # longitude :float
76
+ # id :integer not null, primary key
77
+ # name :string not null
78
+ # display_name :text
79
+ # short_display_name :string not null
80
+ # zip_code :string
81
+ # street :text
82
+ # locality :text
83
+ # region :text
84
+ # telephone_number_1 :string
85
+ # telephone_number_2 :string
86
+ # fax_number :string
87
+ # note :text
88
+ # call_number_rows :integer default(1), not null
89
+ # call_number_delimiter :string default("|"), not null
90
+ # library_group_id :integer not null
91
+ # users_count :integer default(0), not null
92
+ # position :integer
93
+ # country_id :integer
94
+ # created_at :datetime
95
+ # updated_at :datetime
96
+ # deleted_at :datetime
97
+ # opening_hour :text
98
+ # isil :string
99
+ # latitude :float
100
+ # longitude :float
101
+ # display_name_translations :jsonb not null
101
102
  #
@@ -1,15 +1,18 @@
1
1
  # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
2
2
  one:
3
3
  id: 1
4
- name: unknown
5
- display_name: unknown
6
- short_name: unknown
4
+ name: enju_library
5
+ display_name_translations: {"en": "Enju Library", "ja": "えんじゅ図書館"}
6
+ short_name: enju_library
7
7
  note:
8
8
  my_networks: "0.0.0.0/0\r\n\
9
9
  ::/0"
10
10
  url: "http://localhost:3000/"
11
11
  position: 1
12
- old_login_banner: "*Next-L Enju*"
12
+ login_banner_translations: {"ja": "オープンソース図書館システム Next-L Enju です。このメッセージは管理者としてログインした後に変更することができます。",
13
+ "en": "Next-L Enju, an open-source integrated library system. You can edit this message after logging in as Administrator."}
14
+ footer_banner_translations: {"en":"[Next-L Enju Leaf __VERSION__](https://github.com/next-l/enju_leaf), an open source integrated library system | [About this system](/page/about) | [Report bugs](https://github.com/next-l/enju_leaf/issues) | [Manual](https://next-l.github.io/manual/1.3/)",
15
+ "ja":"[Next-L Enju Leaf __VERSION__](https://github.com/next-l/enju_leaf), オープンソース統合図書館システム | [このシステムについて](/page/about) | [不具合を報告する](https://github.com/next-l/enju_leaf/issues) | [マニュアル](https://next-l.github.io/manual/1.3/)"}
13
16
  admin_networks: "0.0.0.0/0\r\n\
14
17
  ::/0"
15
18
  user_id: 1
@@ -36,7 +39,7 @@ one:
36
39
  # settings :text
37
40
  # html_snippet :text
38
41
  # book_jacket_source :string
39
- # max_number_of_results :integer default(1000)
42
+ # max_number_of_results :integer default(500)
40
43
  # family_name_first :boolean default(TRUE)
41
44
  # screenshot_generator :string
42
45
  # pub_year_facet_range_interval :integer default(10)
@@ -44,10 +47,10 @@ one:
44
47
  # csv_charset_conversion :boolean default(FALSE), not null
45
48
  # header_logo_file_name :string
46
49
  # header_logo_content_type :string
47
- # header_logo_file_size :integer
50
+ # header_logo_file_size :bigint
48
51
  # header_logo_updated_at :datetime
49
52
  # header_logo_meta :text
50
- # library_group_id :integer not null
51
- # login_banner :text
52
- # footer_banner :text
53
+ # display_name_translations :jsonb not null
54
+ # login_banner_translations :jsonb not null
55
+ # footer_banner_translations :jsonb not null
53
56
  #
@@ -16,12 +16,13 @@ two:
16
16
  #
17
17
  # Table name: manifestation_checkout_stats
18
18
  #
19
- # id :integer not null, primary key
19
+ # id :integer not null, primary key
20
20
  # start_date :datetime
21
21
  # end_date :datetime
22
22
  # note :text
23
- # created_at :datetime not null
24
- # updated_at :datetime not null
23
+ # state :string(255)
24
+ # created_at :datetime
25
+ # updated_at :datetime
25
26
  # started_at :datetime
26
27
  # completed_at :datetime
27
28
  #
@@ -0,0 +1,29 @@
1
+ # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
2
+
3
+ one:
4
+ name: successor
5
+ display_name: successor
6
+ note:
7
+ position: 1
8
+ id: 1
9
+
10
+ two:
11
+ name: copy
12
+ display_name: copy
13
+ note:
14
+ position: 2
15
+ id: 2
16
+
17
+ # == Schema Information
18
+ #
19
+ # Table name: manifestation_relationship_types
20
+ #
21
+ # id :integer not null, primary key
22
+ # name :string not null
23
+ # display_name :text
24
+ # note :text
25
+ # position :integer
26
+ # created_at :datetime
27
+ # updated_at :datetime
28
+ # display_name_translations :jsonb not null
29
+ #
@@ -16,12 +16,13 @@ two:
16
16
  #
17
17
  # Table name: manifestation_reserve_stats
18
18
  #
19
- # id :integer not null, primary key
19
+ # id :integer not null, primary key
20
20
  # start_date :datetime
21
21
  # end_date :datetime
22
22
  # note :text
23
- # created_at :datetime not null
24
- # updated_at :datetime not null
23
+ # state :string(255)
24
+ # created_at :datetime
25
+ # updated_at :datetime
25
26
  # started_at :datetime
26
27
  # completed_at :datetime
27
28
  #