kylekthompson_shoppe 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (239) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +55 -0
  4. data/Rakefile +36 -0
  5. data/app/assets/images/kylekthompson_shoppe/chosen-sprite.png +0 -0
  6. data/app/assets/images/kylekthompson_shoppe/chosen-sprite@2x.png +0 -0
  7. data/app/assets/images/kylekthompson_shoppe/document.svg +1 -0
  8. data/app/assets/images/kylekthompson_shoppe/icons/bag.svg +1 -0
  9. data/app/assets/images/kylekthompson_shoppe/icons/balance.svg +1 -0
  10. data/app/assets/images/kylekthompson_shoppe/icons/box.svg +1 -0
  11. data/app/assets/images/kylekthompson_shoppe/icons/building.svg +1 -0
  12. data/app/assets/images/kylekthompson_shoppe/icons/chart.svg +1 -0
  13. data/app/assets/images/kylekthompson_shoppe/icons/chat.svg +1 -0
  14. data/app/assets/images/kylekthompson_shoppe/icons/checkbox.svg +1 -0
  15. data/app/assets/images/kylekthompson_shoppe/icons/checkbox2.svg +1 -0
  16. data/app/assets/images/kylekthompson_shoppe/icons/cloud.svg +1 -0
  17. data/app/assets/images/kylekthompson_shoppe/icons/cone.svg +1 -0
  18. data/app/assets/images/kylekthompson_shoppe/icons/credit_card.svg +1 -0
  19. data/app/assets/images/kylekthompson_shoppe/icons/currency.svg +1 -0
  20. data/app/assets/images/kylekthompson_shoppe/icons/edit.svg +14 -0
  21. data/app/assets/images/kylekthompson_shoppe/icons/flowchart.svg +1 -0
  22. data/app/assets/images/kylekthompson_shoppe/icons/gift.svg +1 -0
  23. data/app/assets/images/kylekthompson_shoppe/icons/globe.svg +1 -0
  24. data/app/assets/images/kylekthompson_shoppe/icons/id.svg +1 -0
  25. data/app/assets/images/kylekthompson_shoppe/icons/id2.svg +1 -0
  26. data/app/assets/images/kylekthompson_shoppe/icons/locked.svg +1 -0
  27. data/app/assets/images/kylekthompson_shoppe/icons/report.svg +1 -0
  28. data/app/assets/images/kylekthompson_shoppe/icons/search.svg +1 -0
  29. data/app/assets/images/kylekthompson_shoppe/icons/support.svg +1 -0
  30. data/app/assets/images/kylekthompson_shoppe/icons/tags.svg +1 -0
  31. data/app/assets/images/kylekthompson_shoppe/icons/toolbox.svg +1 -0
  32. data/app/assets/images/kylekthompson_shoppe/icons/unlocked.svg +1 -0
  33. data/app/assets/images/kylekthompson_shoppe/icons/wallet.svg +1 -0
  34. data/app/assets/images/kylekthompson_shoppe/kylekthompson_shoppe.svg +25 -0
  35. data/app/assets/images/kylekthompson_shoppe/logo.svg +47 -0
  36. data/app/assets/images/kylekthompson_shoppe/move.svg +1 -0
  37. data/app/assets/images/kylekthompson_shoppe/square.svg +9 -0
  38. data/app/assets/images/kylekthompson_shoppe/statuses/accepted.svg +14 -0
  39. data/app/assets/images/kylekthompson_shoppe/statuses/paid.svg +16 -0
  40. data/app/assets/images/kylekthompson_shoppe/statuses/received.svg +15 -0
  41. data/app/assets/images/kylekthompson_shoppe/statuses/rejected.svg +14 -0
  42. data/app/assets/images/kylekthompson_shoppe/statuses/shipped.svg +14 -0
  43. data/app/assets/images/kylekthompson_shoppe/table-tear-off.png +0 -0
  44. data/app/assets/javascripts/kylekthompson_shoppe/application.coffee +123 -0
  45. data/app/assets/javascripts/kylekthompson_shoppe/chosen.jquery.js +1166 -0
  46. data/app/assets/javascripts/kylekthompson_shoppe/jquery_ui.js +6 -0
  47. data/app/assets/javascripts/kylekthompson_shoppe/mousetrap.js +9 -0
  48. data/app/assets/javascripts/kylekthompson_shoppe/order_form.coffee +47 -0
  49. data/app/assets/stylesheets/kylekthompson_shoppe/application.scss +601 -0
  50. data/app/assets/stylesheets/kylekthompson_shoppe/chosen.scss +424 -0
  51. data/app/assets/stylesheets/kylekthompson_shoppe/dialog.scss +25 -0
  52. data/app/assets/stylesheets/kylekthompson_shoppe/elements.scss +79 -0
  53. data/app/assets/stylesheets/kylekthompson_shoppe/printable.scss +67 -0
  54. data/app/assets/stylesheets/kylekthompson_shoppe/reset.scss +93 -0
  55. data/app/assets/stylesheets/kylekthompson_shoppe/sub.scss +106 -0
  56. data/app/assets/stylesheets/kylekthompson_shoppe/variables.scss +1 -0
  57. data/app/controllers/kylekthompson_shoppe/addresses_controller.rb +47 -0
  58. data/app/controllers/kylekthompson_shoppe/application_controller.rb +46 -0
  59. data/app/controllers/kylekthompson_shoppe/attachments_controller.rb +14 -0
  60. data/app/controllers/kylekthompson_shoppe/countries_controller.rb +47 -0
  61. data/app/controllers/kylekthompson_shoppe/customers_controller.rb +55 -0
  62. data/app/controllers/kylekthompson_shoppe/dashboard_controller.rb +9 -0
  63. data/app/controllers/kylekthompson_shoppe/delivery_service_prices_controller.rb +45 -0
  64. data/app/controllers/kylekthompson_shoppe/delivery_services_controller.rb +47 -0
  65. data/app/controllers/kylekthompson_shoppe/orders_controller.rb +119 -0
  66. data/app/controllers/kylekthompson_shoppe/payments_controller.rb +33 -0
  67. data/app/controllers/kylekthompson_shoppe/product_categories_controller.rb +47 -0
  68. data/app/controllers/kylekthompson_shoppe/product_category_localisations_controller.rb +58 -0
  69. data/app/controllers/kylekthompson_shoppe/product_localisations_controller.rb +58 -0
  70. data/app/controllers/kylekthompson_shoppe/products_controller.rb +58 -0
  71. data/app/controllers/kylekthompson_shoppe/sessions_controller.rb +34 -0
  72. data/app/controllers/kylekthompson_shoppe/settings_controller.rb +16 -0
  73. data/app/controllers/kylekthompson_shoppe/stock_level_adjustments_controller.rb +40 -0
  74. data/app/controllers/kylekthompson_shoppe/tax_rates_controller.rb +49 -0
  75. data/app/controllers/kylekthompson_shoppe/users_controller.rb +53 -0
  76. data/app/controllers/kylekthompson_shoppe/variants_controller.rb +50 -0
  77. data/app/helpers/kylekthompson_shoppe/application_helper.rb +60 -0
  78. data/app/helpers/kylekthompson_shoppe/product_category_helper.rb +36 -0
  79. data/app/mailers/kylekthompson_shoppe/order_mailer.rb +25 -0
  80. data/app/mailers/kylekthompson_shoppe/user_mailer.rb +10 -0
  81. data/app/models/kylekthompson_shoppe/address.rb +44 -0
  82. data/app/models/kylekthompson_shoppe/country.rb +27 -0
  83. data/app/models/kylekthompson_shoppe/customer.rb +41 -0
  84. data/app/models/kylekthompson_shoppe/delivery_service.rb +33 -0
  85. data/app/models/kylekthompson_shoppe/delivery_service_price.rb +31 -0
  86. data/app/models/kylekthompson_shoppe/order/actions.rb +94 -0
  87. data/app/models/kylekthompson_shoppe/order/billing.rb +105 -0
  88. data/app/models/kylekthompson_shoppe/order/delivery.rb +229 -0
  89. data/app/models/kylekthompson_shoppe/order/states.rb +69 -0
  90. data/app/models/kylekthompson_shoppe/order.rb +100 -0
  91. data/app/models/kylekthompson_shoppe/order_item.rb +239 -0
  92. data/app/models/kylekthompson_shoppe/payment.rb +86 -0
  93. data/app/models/kylekthompson_shoppe/product/product_attributes.rb +20 -0
  94. data/app/models/kylekthompson_shoppe/product/variants.rb +51 -0
  95. data/app/models/kylekthompson_shoppe/product.rb +189 -0
  96. data/app/models/kylekthompson_shoppe/product_attribute.rb +66 -0
  97. data/app/models/kylekthompson_shoppe/product_categorization.rb +14 -0
  98. data/app/models/kylekthompson_shoppe/product_category.rb +75 -0
  99. data/app/models/kylekthompson_shoppe/setting.rb +68 -0
  100. data/app/models/kylekthompson_shoppe/stock_level_adjustment.rb +19 -0
  101. data/app/models/kylekthompson_shoppe/tax_rate.rb +46 -0
  102. data/app/models/kylekthompson_shoppe/user.rb +49 -0
  103. data/app/validators/permalink_validator.rb +7 -0
  104. data/app/views/kylekthompson_shoppe/addresses/_form.html.haml +33 -0
  105. data/app/views/kylekthompson_shoppe/addresses/edit.html.haml +5 -0
  106. data/app/views/kylekthompson_shoppe/addresses/new.html.haml +5 -0
  107. data/app/views/kylekthompson_shoppe/countries/_form.html.haml +35 -0
  108. data/app/views/kylekthompson_shoppe/countries/edit.html.haml +6 -0
  109. data/app/views/kylekthompson_shoppe/countries/index.html.haml +25 -0
  110. data/app/views/kylekthompson_shoppe/countries/new.html.haml +7 -0
  111. data/app/views/kylekthompson_shoppe/customers/_addresses.html.haml +20 -0
  112. data/app/views/kylekthompson_shoppe/customers/_form.html.haml +30 -0
  113. data/app/views/kylekthompson_shoppe/customers/_search_form.html.haml +13 -0
  114. data/app/views/kylekthompson_shoppe/customers/edit.html.haml +5 -0
  115. data/app/views/kylekthompson_shoppe/customers/index.html.haml +32 -0
  116. data/app/views/kylekthompson_shoppe/customers/new.html.haml +5 -0
  117. data/app/views/kylekthompson_shoppe/customers/show.html.haml +53 -0
  118. data/app/views/kylekthompson_shoppe/delivery_service_prices/_form.html.haml +44 -0
  119. data/app/views/kylekthompson_shoppe/delivery_service_prices/edit.html.haml +6 -0
  120. data/app/views/kylekthompson_shoppe/delivery_service_prices/index.html.haml +23 -0
  121. data/app/views/kylekthompson_shoppe/delivery_service_prices/new.html.haml +6 -0
  122. data/app/views/kylekthompson_shoppe/delivery_services/_form.html.haml +38 -0
  123. data/app/views/kylekthompson_shoppe/delivery_services/edit.html.haml +9 -0
  124. data/app/views/kylekthompson_shoppe/delivery_services/index.html.haml +27 -0
  125. data/app/views/kylekthompson_shoppe/delivery_services/new.html.haml +6 -0
  126. data/app/views/kylekthompson_shoppe/order_mailer/accepted.text.erb +12 -0
  127. data/app/views/kylekthompson_shoppe/order_mailer/received.text.erb +9 -0
  128. data/app/views/kylekthompson_shoppe/order_mailer/rejected.text.erb +10 -0
  129. data/app/views/kylekthompson_shoppe/order_mailer/shipped.text.erb +16 -0
  130. data/app/views/kylekthompson_shoppe/orders/_form.html.haml +58 -0
  131. data/app/views/kylekthompson_shoppe/orders/_order_details.html.haml +57 -0
  132. data/app/views/kylekthompson_shoppe/orders/_order_items.html.haml +38 -0
  133. data/app/views/kylekthompson_shoppe/orders/_order_items_form.html.haml +61 -0
  134. data/app/views/kylekthompson_shoppe/orders/_payments_form.html.haml +15 -0
  135. data/app/views/kylekthompson_shoppe/orders/_payments_table.html.haml +37 -0
  136. data/app/views/kylekthompson_shoppe/orders/_search_form.html.haml +24 -0
  137. data/app/views/kylekthompson_shoppe/orders/_status_bar.html.haml +35 -0
  138. data/app/views/kylekthompson_shoppe/orders/despatch_note.html.haml +45 -0
  139. data/app/views/kylekthompson_shoppe/orders/edit.html.haml +21 -0
  140. data/app/views/kylekthompson_shoppe/orders/index.html.haml +39 -0
  141. data/app/views/kylekthompson_shoppe/orders/new.html.haml +14 -0
  142. data/app/views/kylekthompson_shoppe/orders/show.html.haml +25 -0
  143. data/app/views/kylekthompson_shoppe/payments/refund.html.haml +13 -0
  144. data/app/views/kylekthompson_shoppe/product_categories/_form.html.haml +50 -0
  145. data/app/views/kylekthompson_shoppe/product_categories/edit.html.haml +8 -0
  146. data/app/views/kylekthompson_shoppe/product_categories/index.html.haml +27 -0
  147. data/app/views/kylekthompson_shoppe/product_categories/new.html.haml +6 -0
  148. data/app/views/kylekthompson_shoppe/product_category_localisations/form.html.haml +29 -0
  149. data/app/views/kylekthompson_shoppe/product_category_localisations/index.html.haml +26 -0
  150. data/app/views/kylekthompson_shoppe/product_localisations/form.html.haml +32 -0
  151. data/app/views/kylekthompson_shoppe/product_localisations/index.html.haml +26 -0
  152. data/app/views/kylekthompson_shoppe/products/_form.html.haml +118 -0
  153. data/app/views/kylekthompson_shoppe/products/_table.html.haml +42 -0
  154. data/app/views/kylekthompson_shoppe/products/edit.html.haml +9 -0
  155. data/app/views/kylekthompson_shoppe/products/import.html.haml +67 -0
  156. data/app/views/kylekthompson_shoppe/products/index.html.haml +9 -0
  157. data/app/views/kylekthompson_shoppe/products/new.html.haml +7 -0
  158. data/app/views/kylekthompson_shoppe/sessions/new.html.haml +12 -0
  159. data/app/views/kylekthompson_shoppe/sessions/reset.html.haml +12 -0
  160. data/app/views/kylekthompson_shoppe/settings/edit.html.haml +19 -0
  161. data/app/views/kylekthompson_shoppe/shared/error.html.haml +6 -0
  162. data/app/views/kylekthompson_shoppe/stock_level_adjustments/index.html.haml +40 -0
  163. data/app/views/kylekthompson_shoppe/tax_rates/form.html.haml +28 -0
  164. data/app/views/kylekthompson_shoppe/tax_rates/index.html.haml +17 -0
  165. data/app/views/kylekthompson_shoppe/user_mailer/new_password.text.erb +9 -0
  166. data/app/views/kylekthompson_shoppe/users/_form.html.haml +27 -0
  167. data/app/views/kylekthompson_shoppe/users/edit.html.haml +5 -0
  168. data/app/views/kylekthompson_shoppe/users/index.html.haml +17 -0
  169. data/app/views/kylekthompson_shoppe/users/new.html.haml +7 -0
  170. data/app/views/kylekthompson_shoppe/variants/form.html.haml +68 -0
  171. data/app/views/kylekthompson_shoppe/variants/index.html.haml +33 -0
  172. data/app/views/layouts/kylekthompson_shoppe/application.html.haml +34 -0
  173. data/app/views/layouts/kylekthompson_shoppe/printable.html.haml +11 -0
  174. data/app/views/layouts/kylekthompson_shoppe/sub.html.haml +10 -0
  175. data/config/locales/de.yml +653 -0
  176. data/config/locales/en.yml +744 -0
  177. data/config/locales/es.yml +653 -0
  178. data/config/locales/pl.yml +662 -0
  179. data/config/locales/pt-BR.yml +655 -0
  180. data/config/routes.rb +53 -0
  181. data/db/countries.txt +252 -0
  182. data/db/migrate/20130926094549_create_kylekthompson_shoppe_initial_schema.rb +175 -0
  183. data/db/migrate/20131024201501_add_address_type_to_kylekthompson_shoppe_tax_rates.rb +5 -0
  184. data/db/migrate/20131024204815_create_kylekthompson_shoppe_payments.rb +32 -0
  185. data/db/migrate/20131102143930_remove_default_on_order_item_weight.rb +9 -0
  186. data/db/migrate/20141013192427_create_kylekthompson_shoppe_customers.rb +14 -0
  187. data/db/migrate/20141026175622_add_indexes_to_kylekthompson_shoppe_order_items.rb +6 -0
  188. data/db/migrate/20141026175943_add_indexes_to_kylekthompson_shoppe_orders.rb +7 -0
  189. data/db/migrate/20141026180333_add_indexes_to_kylekthompson_shoppe_payments.rb +6 -0
  190. data/db/migrate/20141026180835_add_indexes_to_kylekthompson_shoppe_product_attributes.rb +7 -0
  191. data/db/migrate/20141026180952_add_indexes_to_kylekthompson_shoppe_product_categories.rb +5 -0
  192. data/db/migrate/20141026181040_add_indexes_to_kylekthompson_shoppe_products.rb +8 -0
  193. data/db/migrate/20141026181312_add_indexes_to_kylekthompson_shoppe_settings.rb +5 -0
  194. data/db/migrate/20141026181354_add_indexes_to_kylekthompson_shoppe_stock_level_adjustments.rb +6 -0
  195. data/db/migrate/20141026181559_add_indexes_to_kylekthompson_shoppe_users.rb +5 -0
  196. data/db/migrate/20141026181716_add_indexes_to_kylekthompson_shoppe_delivery_services.rb +9 -0
  197. data/db/migrate/20141026181717_allow_multiple_kylekthompson_shoppe_products_per_shoppe_product_category.rb +46 -0
  198. data/db/migrate/20141026181718_add_nested_to_product_categories.rb +30 -0
  199. data/db/migrate/20141027215005_create_kylekthompson_shoppe_addresses.rb +17 -0
  200. data/db/migrate/20150315215633_add_customer_to_kylekthompson_shoppe_orders.rb +5 -0
  201. data/db/migrate/20150513171350_create_kylekthompson_shoppe_product_category_translation_table.rb +17 -0
  202. data/db/migrate/20150519173350_create_kylekthompson_shoppe_product_translation_table.rb +18 -0
  203. data/db/schema.rb +308 -0
  204. data/db/seeds.rb +137 -0
  205. data/db/seeds_data/poe400.jpg +0 -0
  206. data/db/seeds_data/snom-870-blk.jpg +0 -0
  207. data/db/seeds_data/snom-870-grey.jpg +0 -0
  208. data/db/seeds_data/snom-mm2.jpg +0 -0
  209. data/db/seeds_data/spa303.jpg +0 -0
  210. data/db/seeds_data/t18p.jpg +0 -0
  211. data/db/seeds_data/t20p.jpg +0 -0
  212. data/db/seeds_data/t22p.jpg +0 -0
  213. data/db/seeds_data/t26p.jpg +0 -0
  214. data/db/seeds_data/t41pn.jpg +0 -0
  215. data/db/seeds_data/t46gn.jpg +0 -0
  216. data/db/seeds_data/w52p.jpg +0 -0
  217. data/db/seeds_data/yhs32.jpg +0 -0
  218. data/lib/kylekthompson_shoppe/associated_countries.rb +20 -0
  219. data/lib/kylekthompson_shoppe/country_importer.rb +15 -0
  220. data/lib/kylekthompson_shoppe/default_navigation.rb +21 -0
  221. data/lib/kylekthompson_shoppe/engine.rb +55 -0
  222. data/lib/kylekthompson_shoppe/error.rb +21 -0
  223. data/lib/kylekthompson_shoppe/errors/inappropriate_delivery_service.rb +6 -0
  224. data/lib/kylekthompson_shoppe/errors/insufficient_stock_to_fulfil.rb +15 -0
  225. data/lib/kylekthompson_shoppe/errors/invalid_configuration.rb +6 -0
  226. data/lib/kylekthompson_shoppe/errors/not_enough_stock.rb +15 -0
  227. data/lib/kylekthompson_shoppe/errors/payment_declined.rb +6 -0
  228. data/lib/kylekthompson_shoppe/errors/refund_failed.rb +6 -0
  229. data/lib/kylekthompson_shoppe/errors/unorderable_item.rb +6 -0
  230. data/lib/kylekthompson_shoppe/navigation_manager.rb +81 -0
  231. data/lib/kylekthompson_shoppe/orderable_item.rb +39 -0
  232. data/lib/kylekthompson_shoppe/settings.rb +26 -0
  233. data/lib/kylekthompson_shoppe/settings_loader.rb +16 -0
  234. data/lib/kylekthompson_shoppe/setup_generator.rb +10 -0
  235. data/lib/kylekthompson_shoppe/version.rb +3 -0
  236. data/lib/kylekthompson_shoppe/view_helpers.rb +16 -0
  237. data/lib/kylekthompson_shoppe.rb +60 -0
  238. data/lib/tasks/kylekthompson_shoppe.rake +29 -0
  239. metadata +662 -0
@@ -0,0 +1,69 @@
1
+ module KylekthompsonShoppe
2
+ class Order < ActiveRecord::Base
3
+
4
+ # An array of all the available statuses for an order
5
+ STATUSES = ['building', 'confirming', 'received', 'accepted', 'rejected', 'shipped']
6
+
7
+ # The KylekthompsonShoppe::User who accepted the order
8
+ #
9
+ # @return [KylekthompsonShoppe::User]
10
+ belongs_to :accepter, :class_name => 'KylekthompsonShoppe::User', :foreign_key => 'accepted_by'
11
+
12
+ # The KylekthompsonShoppe::User who rejected the order
13
+ #
14
+ # @return [KylekthompsonShoppe::User]
15
+ belongs_to :rejecter, :class_name => 'KylekthompsonShoppe::User', :foreign_key => 'rejected_by'
16
+
17
+ # Validations
18
+ validates :status, :inclusion => {:in => STATUSES}
19
+
20
+ # Set the status to building if we don't have a status
21
+ after_initialize { self.status = STATUSES.first if self.status.blank? }
22
+
23
+ # All orders which have been received
24
+ scope :received, -> {where("received_at is not null")}
25
+
26
+ # All orders which are currently pending acceptance/rejection
27
+ scope :pending, -> { where(:status => 'received') }
28
+
29
+ # All ordered ordered by their ID desending
30
+ scope :ordered, -> { order(:id => :desc)}
31
+
32
+ # Is this order still being built by the user?
33
+ #
34
+ # @return [Boolean]
35
+ def building?
36
+ self.status == 'building'
37
+ end
38
+
39
+ # Is this order in the user confirmation step?
40
+ #
41
+ # @return [Boolean]
42
+ def confirming?
43
+ self.status == 'confirming'
44
+ end
45
+
46
+ # Has this order been rejected?
47
+ #
48
+ # @return [Boolean]
49
+ def rejected?
50
+ !!self.rejected_at
51
+ end
52
+
53
+ # Has this order been accepted?
54
+ #
55
+ # @return [Boolean]
56
+ def accepted?
57
+ !!self.accepted_at
58
+ end
59
+
60
+ # Has the order been received?
61
+ #
62
+ # @return [Boolean]
63
+ def received?
64
+ !!self.received_at?
65
+ end
66
+
67
+
68
+ end
69
+ end
@@ -0,0 +1,100 @@
1
+ module KylekthompsonShoppe
2
+ class Order < ActiveRecord::Base
3
+
4
+ self.table_name = 'kylekthompson_shoppe_orders'
5
+
6
+ # Orders can have properties
7
+ key_value_store :properties
8
+
9
+ # Require dependencies
10
+ require_dependency 'kylekthompson_shoppe/order/states'
11
+ require_dependency 'kylekthompson_shoppe/order/actions'
12
+ require_dependency 'kylekthompson_shoppe/order/billing'
13
+ require_dependency 'kylekthompson_shoppe/order/delivery'
14
+
15
+ # All items which make up this order
16
+ has_many :order_items, :dependent => :destroy, :class_name => 'KylekthompsonShoppe::OrderItem', :inverse_of => :order
17
+ accepts_nested_attributes_for :order_items, :allow_destroy => true, :reject_if => Proc.new { |a| a['ordered_item_id'].blank? }
18
+
19
+ # All products which are part of this order (accessed through the items)
20
+ has_many :products, :through => :order_items, :class_name => 'KylekthompsonShoppe::Product', :source => :ordered_item, :source_type => 'KylekthompsonShoppe::Product'
21
+
22
+ # The order can belong to a customer
23
+ belongs_to :customer, :class_name => 'KylekthompsonShoppe::Customer'
24
+ has_many :addresses, :through => :customers, :class_name => "KylekthompsonShoppe::Address"
25
+
26
+ # Validations
27
+ validates :token, :presence => true
28
+ with_options :if => Proc.new { |o| !o.building? } do |order|
29
+ order.validates :email_address, :format => {:with => /\A\b[A-Z0-9\.\_\%\-\+]+@(?:[A-Z0-9\-]+\.)+[A-Z]{2,6}\b\z/i}
30
+ order.validates :phone_number, :format => {:with => /\A[\d\ \-x\(\)]{7,}\z/}
31
+ end
32
+
33
+ # Set some defaults
34
+ before_validation { self.token = SecureRandom.uuid if self.token.blank? }
35
+
36
+ # Some methods for setting the billing & delivery addresses
37
+ attr_accessor :save_addresses, :billing_address_id, :delivery_address_id
38
+
39
+ # The order number
40
+ #
41
+ # @return [String] - the order number padded with at least 5 zeros
42
+ def number
43
+ id ? id.to_s.rjust(6, '0') : nil
44
+ end
45
+
46
+ # The length of time the customer spent building the order before submitting it to us.
47
+ # The time from first item in basket to received.
48
+ #
49
+ # @return [Float] - the length of time
50
+ def build_time
51
+ return nil if self.received_at.blank?
52
+ self.created_at - self.received_at
53
+ end
54
+
55
+ # The name of the customer in the format of "Company (First Last)" or if they don't have
56
+ # company specified, just "First Last".
57
+ #
58
+ # @return [String]
59
+ def customer_name
60
+ company.blank? ? full_name : "#{company} (#{full_name})"
61
+ end
62
+
63
+ # The full name of the customer created by concatinting the first & last name
64
+ #
65
+ # @return [String]
66
+ def full_name
67
+ "#{first_name} #{last_name}"
68
+ end
69
+
70
+ # Is this order empty? (i.e. doesn't have any items associated with it)
71
+ #
72
+ # @return [Boolean]
73
+ def empty?
74
+ order_items.empty?
75
+ end
76
+
77
+ # Does this order have items?
78
+ #
79
+ # @return [Boolean]
80
+ def has_items?
81
+ total_items > 0
82
+ end
83
+
84
+ # Return the number of items in the order?
85
+ #
86
+ # @return [Integer]
87
+ def total_items
88
+ order_items.inject(0) { |t,i| t + i.quantity }
89
+ end
90
+
91
+ def self.ransackable_attributes(auth_object = nil)
92
+ ["id", "billing_postcode", "billing_address1", "billing_address2", "billing_address3", "billing_address4", "first_name", "last_name", "company", "email_address", "phone_number", "consignment_number", "status", "received_at"] + _ransackers.keys
93
+ end
94
+
95
+ def self.ransackable_associations(auth_object = nil)
96
+ []
97
+ end
98
+
99
+ end
100
+ end
@@ -0,0 +1,239 @@
1
+ module KylekthompsonShoppe
2
+ class OrderItem < ActiveRecord::Base
3
+
4
+ self.table_name = 'kylekthompson_shoppe_order_items'
5
+
6
+ # The associated order
7
+ #
8
+ # @return [KylekthompsonShoppe::Order]
9
+ belongs_to :order, :class_name => 'KylekthompsonShoppe::Order', :touch => true, :inverse_of => :order_items
10
+
11
+ # The item which has been ordered
12
+ belongs_to :ordered_item, :polymorphic => true
13
+
14
+ # Any stock level adjustments which have been made for this order item
15
+ has_many :stock_level_adjustments, :as => :parent, :dependent => :nullify, :class_name => 'KylekthompsonShoppe::StockLevelAdjustment'
16
+
17
+ # Validations
18
+ validates :quantity, :numericality => true
19
+ validates :ordered_item, :presence => true
20
+
21
+ validate do
22
+ unless in_stock?
23
+ errors.add :quantity, :too_high_quantity
24
+ end
25
+ end
26
+
27
+ # Before saving an order item which belongs to a received order, cache the pricing again if appropriate.
28
+ before_save do
29
+ if order.received? && (unit_price_changed? || unit_cost_price_changed? || tax_rate_changed? || tax_amount_changed?)
30
+ cache_pricing
31
+ end
32
+ end
33
+
34
+ # After saving, if the order has been shipped, reallocate stock appropriate
35
+ after_save do
36
+ if order.shipped?
37
+ allocate_unallocated_stock!
38
+ end
39
+ end
40
+
41
+ # This allows you to add a product to the scoped order. For example Order.first.order_items.add_product(...).
42
+ # This will either increase the quantity of the value in the order or create a new item if one does not
43
+ # exist already.
44
+ #
45
+ # @param ordered_item [Object] an object which implements the KylekthompsonShoppe::OrderableItem protocol
46
+ # @param quantity [Fixnum] the number of items to order
47
+ # @return [KylekthompsonShoppe::OrderItem]
48
+ def self.add_item(ordered_item, quantity = 1)
49
+ raise Errors::UnorderableItem, :ordered_item => ordered_item unless ordered_item.orderable?
50
+ transaction do
51
+ if existing = self.where(:ordered_item_id => ordered_item.id, :ordered_item_type => ordered_item.class.to_s).first
52
+ existing.increase!(quantity)
53
+ existing
54
+ else
55
+ new_item = self.create(:ordered_item => ordered_item, :quantity => 0)
56
+ new_item.increase!(quantity)
57
+ new_item
58
+ end
59
+ end
60
+ end
61
+
62
+ # Remove a product from an order. It will also ensure that the order's custom delivery
63
+ # service is updated if appropriate.
64
+ #
65
+ # @return [KylekthompsonShoppe::OrderItem]
66
+ def remove
67
+ transaction do
68
+ self.destroy!
69
+ self.order.remove_delivery_service_if_invalid
70
+ self
71
+ end
72
+ end
73
+
74
+ # Increases the quantity of items in the order by the number provided. Will raise an error if we don't have
75
+ # the stock to do this.
76
+ #
77
+ # @param quantity [Fixnum]
78
+ def increase!(amount = 1)
79
+ transaction do
80
+ self.quantity += amount
81
+ unless self.in_stock?
82
+ raise KylekthompsonShoppe::Errors::NotEnoughStock, :ordered_item => self.ordered_item, :requested_stock => self.quantity
83
+ end
84
+ self.save!
85
+ self.order.remove_delivery_service_if_invalid
86
+ end
87
+ end
88
+
89
+ # Decreases the quantity of items in the order by the number provided.
90
+ #
91
+ # @param amount [Fixnum]
92
+ def decrease!(amount = 1)
93
+ transaction do
94
+ self.quantity -= amount
95
+ self.quantity == 0 ? self.destroy : self.save!
96
+ self.order.remove_delivery_service_if_invalid
97
+ end
98
+ end
99
+
100
+ # The total weight of the item
101
+ #
102
+ # @return [BigDecimal]
103
+ def weight
104
+ read_attribute(:weight) || ordered_item.try(:weight) || BigDecimal(0)
105
+ end
106
+
107
+ # Return the total weight of the item
108
+ #
109
+ # @return [BigDecimal]
110
+ def total_weight
111
+ quantity * weight
112
+ end
113
+
114
+ # The unit price for the item
115
+ #
116
+ # @return [BigDecimal]
117
+ def unit_price
118
+ read_attribute(:unit_price) || ordered_item.try(:price) || BigDecimal(0)
119
+ end
120
+
121
+ # The cost price for the item
122
+ #
123
+ # @return [BigDecimal]
124
+ def unit_cost_price
125
+ read_attribute(:unit_cost_price) || ordered_item.try(:cost_price) || BigDecimal(0)
126
+ end
127
+
128
+ # The tax rate for the item
129
+ #
130
+ # @return [BigDecimal]
131
+ def tax_rate
132
+ read_attribute(:tax_rate) || ordered_item.try(:tax_rate).try(:rate_for, self.order) || BigDecimal(0)
133
+ end
134
+
135
+ # The total tax for the item
136
+ #
137
+ # @return [BigDecimal]
138
+ def tax_amount
139
+ read_attribute(:tax_amount) || (self.sub_total / BigDecimal(100)) * self.tax_rate
140
+ end
141
+
142
+ # The total cost for the product
143
+ #
144
+ # @return [BigDecimal]
145
+ def total_cost
146
+ quantity * unit_cost_price
147
+ end
148
+
149
+ # The sub total for the product
150
+ #
151
+ # @return [BigDecimal]
152
+ def sub_total
153
+ quantity * unit_price
154
+ end
155
+
156
+ # The total price including tax for the order line
157
+ #
158
+ # @return [BigDecimal]
159
+ def total
160
+ tax_amount + sub_total
161
+ end
162
+
163
+ # Cache the pricing for this order item
164
+ def cache_pricing
165
+ write_attribute :weight, self.weight
166
+ write_attribute :unit_price, self.unit_price
167
+ write_attribute :unit_cost_price, self.unit_cost_price
168
+ write_attribute :tax_rate, self.tax_rate
169
+ end
170
+
171
+ # Cache the pricing for this order item and save
172
+ def cache_pricing!
173
+ cache_pricing
174
+ save!
175
+ end
176
+
177
+ # Trigger when the associated order is confirmed. It handles caching the values
178
+ # of the monetary items and allocating stock as appropriate.
179
+ def confirm!
180
+ cache_pricing!
181
+ allocate_unallocated_stock!
182
+ end
183
+
184
+ # Trigger when the associated order is accepted
185
+ def accept!
186
+ end
187
+
188
+ # Trigged when the associated order is rejected..
189
+ def reject!
190
+ self.stock_level_adjustments.destroy_all
191
+ end
192
+
193
+ # Do we have the stock needed to fulfil this order?
194
+ #
195
+ # @return [Boolean]
196
+ def in_stock?
197
+ if self.ordered_item && self.ordered_item.stock_control?
198
+ self.ordered_item.stock >= unallocated_stock
199
+ else
200
+ true
201
+ end
202
+ end
203
+
204
+ # How much stock remains to be allocated for this order?
205
+ #
206
+ # @return [Fixnum]
207
+ def unallocated_stock
208
+ self.quantity - allocated_stock
209
+ end
210
+
211
+ # How much stock has been allocated to this item?
212
+ #
213
+ # @return [Fixnum]
214
+ def allocated_stock
215
+ 0 - self.stock_level_adjustments.sum(:adjustment)
216
+ end
217
+
218
+ # Validate the stock level against the product and update as appropriate. This method will be executed
219
+ # before an order is completed. If we have run out of this product, we will update the quantity to an
220
+ # appropriate level (or remove the order item) and return the object.
221
+ def validate_stock_levels
222
+ if in_stock?
223
+ false
224
+ else
225
+ self.quantity = self.ordered_item.stock
226
+ self.quantity == 0 ? self.destroy : self.save!
227
+ self
228
+ end
229
+ end
230
+
231
+ # Allocate any unallocated stock for this order item. There is no return value.
232
+ def allocate_unallocated_stock!
233
+ if self.ordered_item.stock_control? && self.unallocated_stock != 0
234
+ self.ordered_item.stock_level_adjustments.create!(:parent => self, :adjustment => 0 - self.unallocated_stock, :description => "Order ##{self.order.number}")
235
+ end
236
+ end
237
+
238
+ end
239
+ end
@@ -0,0 +1,86 @@
1
+ module KylekthompsonShoppe
2
+ class Payment < ActiveRecord::Base
3
+
4
+ # Additional callbacks
5
+ extend ActiveModel::Callbacks
6
+ define_model_callbacks :refund
7
+
8
+ # The associated order
9
+ #
10
+ # @return [KylekthompsonShoppe::Order]
11
+ belongs_to :order, :class_name => 'KylekthompsonShoppe::Order'
12
+
13
+ # An associated payment (only applies to refunds)
14
+ #
15
+ # @return [KylekthompsonShoppe::Payment]
16
+ belongs_to :parent, :class_name => "KylekthompsonShoppe::Payment", :foreign_key => "parent_payment_id"
17
+
18
+ # Validations
19
+ validates :amount, :numericality => true
20
+ validates :reference, :presence => true
21
+ validates :method, :presence => true
22
+
23
+ # Payments can have associated properties
24
+ key_value_store :properties
25
+
26
+ # Callbacks
27
+ after_create :cache_amount_paid
28
+ after_destroy :cache_amount_paid
29
+ before_destroy { self.parent.update_attribute(:amount_refunded, self.parent.amount_refunded + amount) if self.parent }
30
+
31
+ # Is this payment a refund?
32
+ #
33
+ # @return [Boolean]
34
+ def refund?
35
+ self.amount < BigDecimal(0)
36
+ end
37
+
38
+ # Has this payment had any refunds taken from it?
39
+ #
40
+ # @return [Boolean]
41
+ def refunded?
42
+ self.amount_refunded > BigDecimal(0)
43
+ end
44
+
45
+ # How much of the payment can be refunded
46
+ #
47
+ # @return [BigDecimal]
48
+ def refundable_amount
49
+ refundable? ? (self.amount - self.amount_refunded) : BigDecimal(0)
50
+ end
51
+
52
+ # Process a refund from this payment.
53
+ #
54
+ # @param amount [String] the amount which should be refunded
55
+ # @return [Boolean]
56
+ def refund!(amount)
57
+ run_callbacks :refund do
58
+ amount = BigDecimal(amount)
59
+ if refundable_amount >= amount
60
+ transaction do
61
+ self.class.create(:parent => self, :order_id => self.order_id, :amount => 0-amount, :method => self.method, :reference => reference)
62
+ self.update_attribute(:amount_refunded, self.amount_refunded + amount)
63
+ true
64
+ end
65
+ else
66
+ raise KylekthompsonShoppe::Errors::RefundFailed, :message => I18n.t('.refund_failed', refundable_amount: refundable_amount)
67
+ end
68
+ end
69
+ end
70
+
71
+ # Return a transaction URL for viewing further information about this
72
+ # payment.
73
+ #
74
+ # @return [String]
75
+ def transaction_url
76
+ nil
77
+ end
78
+
79
+ private
80
+
81
+ def cache_amount_paid
82
+ self.order.update_attribute(:amount_paid, self.order.payments.sum(:amount))
83
+ end
84
+
85
+ end
86
+ end