kkt_shoppe 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +55 -0
- data/Rakefile +36 -0
- data/app/assets/images/kkt_shoppe/chosen-sprite.png +0 -0
- data/app/assets/images/kkt_shoppe/chosen-sprite@2x.png +0 -0
- data/app/assets/images/kkt_shoppe/document.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/bag.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/balance.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/box.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/building.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/chart.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/chat.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/checkbox.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/checkbox2.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/cloud.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/cone.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/credit_card.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/currency.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/edit.svg +14 -0
- data/app/assets/images/kkt_shoppe/icons/flowchart.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/gift.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/globe.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/id.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/id2.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/locked.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/report.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/search.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/support.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/tags.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/toolbox.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/unlocked.svg +1 -0
- data/app/assets/images/kkt_shoppe/icons/wallet.svg +1 -0
- data/app/assets/images/kkt_shoppe/kkt_shoppe.svg +25 -0
- data/app/assets/images/kkt_shoppe/logo.svg +47 -0
- data/app/assets/images/kkt_shoppe/move.svg +1 -0
- data/app/assets/images/kkt_shoppe/square.svg +9 -0
- data/app/assets/images/kkt_shoppe/statuses/accepted.svg +14 -0
- data/app/assets/images/kkt_shoppe/statuses/paid.svg +16 -0
- data/app/assets/images/kkt_shoppe/statuses/received.svg +15 -0
- data/app/assets/images/kkt_shoppe/statuses/rejected.svg +14 -0
- data/app/assets/images/kkt_shoppe/statuses/shipped.svg +14 -0
- data/app/assets/images/kkt_shoppe/table-tear-off.png +0 -0
- data/app/assets/javascripts/kkt_shoppe/application.coffee +123 -0
- data/app/assets/javascripts/kkt_shoppe/chosen.jquery.js +1166 -0
- data/app/assets/javascripts/kkt_shoppe/jquery_ui.js +6 -0
- data/app/assets/javascripts/kkt_shoppe/mousetrap.js +9 -0
- data/app/assets/javascripts/kkt_shoppe/order_form.coffee +47 -0
- data/app/assets/stylesheets/kkt_shoppe/application.scss +601 -0
- data/app/assets/stylesheets/kkt_shoppe/chosen.scss +424 -0
- data/app/assets/stylesheets/kkt_shoppe/dialog.scss +25 -0
- data/app/assets/stylesheets/kkt_shoppe/elements.scss +79 -0
- data/app/assets/stylesheets/kkt_shoppe/printable.scss +67 -0
- data/app/assets/stylesheets/kkt_shoppe/reset.scss +93 -0
- data/app/assets/stylesheets/kkt_shoppe/sub.scss +106 -0
- data/app/assets/stylesheets/kkt_shoppe/variables.scss +1 -0
- data/app/controllers/kkt_shoppe/addresses_controller.rb +47 -0
- data/app/controllers/kkt_shoppe/application_controller.rb +46 -0
- data/app/controllers/kkt_shoppe/attachments_controller.rb +14 -0
- data/app/controllers/kkt_shoppe/countries_controller.rb +47 -0
- data/app/controllers/kkt_shoppe/customers_controller.rb +55 -0
- data/app/controllers/kkt_shoppe/dashboard_controller.rb +9 -0
- data/app/controllers/kkt_shoppe/delivery_service_prices_controller.rb +45 -0
- data/app/controllers/kkt_shoppe/delivery_services_controller.rb +47 -0
- data/app/controllers/kkt_shoppe/orders_controller.rb +119 -0
- data/app/controllers/kkt_shoppe/payments_controller.rb +33 -0
- data/app/controllers/kkt_shoppe/product_categories_controller.rb +47 -0
- data/app/controllers/kkt_shoppe/product_category_localisations_controller.rb +58 -0
- data/app/controllers/kkt_shoppe/product_localisations_controller.rb +58 -0
- data/app/controllers/kkt_shoppe/products_controller.rb +58 -0
- data/app/controllers/kkt_shoppe/sessions_controller.rb +34 -0
- data/app/controllers/kkt_shoppe/settings_controller.rb +16 -0
- data/app/controllers/kkt_shoppe/stock_level_adjustments_controller.rb +40 -0
- data/app/controllers/kkt_shoppe/tax_rates_controller.rb +49 -0
- data/app/controllers/kkt_shoppe/users_controller.rb +53 -0
- data/app/controllers/kkt_shoppe/variants_controller.rb +50 -0
- data/app/helpers/kkt_shoppe/application_helper.rb +60 -0
- data/app/helpers/kkt_shoppe/product_category_helper.rb +36 -0
- data/app/mailers/kkt_shoppe/order_mailer.rb +25 -0
- data/app/mailers/kkt_shoppe/user_mailer.rb +10 -0
- data/app/models/kkt_shoppe/address.rb +44 -0
- data/app/models/kkt_shoppe/country.rb +27 -0
- data/app/models/kkt_shoppe/customer.rb +41 -0
- data/app/models/kkt_shoppe/delivery_service.rb +33 -0
- data/app/models/kkt_shoppe/delivery_service_price.rb +31 -0
- data/app/models/kkt_shoppe/order/actions.rb +94 -0
- data/app/models/kkt_shoppe/order/billing.rb +105 -0
- data/app/models/kkt_shoppe/order/delivery.rb +229 -0
- data/app/models/kkt_shoppe/order/states.rb +69 -0
- data/app/models/kkt_shoppe/order.rb +100 -0
- data/app/models/kkt_shoppe/order_item.rb +239 -0
- data/app/models/kkt_shoppe/payment.rb +86 -0
- data/app/models/kkt_shoppe/product/product_attributes.rb +20 -0
- data/app/models/kkt_shoppe/product/variants.rb +51 -0
- data/app/models/kkt_shoppe/product.rb +189 -0
- data/app/models/kkt_shoppe/product_attribute.rb +66 -0
- data/app/models/kkt_shoppe/product_categorization.rb +14 -0
- data/app/models/kkt_shoppe/product_category.rb +75 -0
- data/app/models/kkt_shoppe/setting.rb +68 -0
- data/app/models/kkt_shoppe/stock_level_adjustment.rb +19 -0
- data/app/models/kkt_shoppe/tax_rate.rb +46 -0
- data/app/models/kkt_shoppe/user.rb +49 -0
- data/app/validators/permalink_validator.rb +7 -0
- data/app/views/kkt_shoppe/addresses/_form.html.haml +33 -0
- data/app/views/kkt_shoppe/addresses/edit.html.haml +5 -0
- data/app/views/kkt_shoppe/addresses/new.html.haml +5 -0
- data/app/views/kkt_shoppe/countries/_form.html.haml +35 -0
- data/app/views/kkt_shoppe/countries/edit.html.haml +6 -0
- data/app/views/kkt_shoppe/countries/index.html.haml +25 -0
- data/app/views/kkt_shoppe/countries/new.html.haml +7 -0
- data/app/views/kkt_shoppe/customers/_addresses.html.haml +20 -0
- data/app/views/kkt_shoppe/customers/_form.html.haml +30 -0
- data/app/views/kkt_shoppe/customers/_search_form.html.haml +13 -0
- data/app/views/kkt_shoppe/customers/edit.html.haml +5 -0
- data/app/views/kkt_shoppe/customers/index.html.haml +32 -0
- data/app/views/kkt_shoppe/customers/new.html.haml +5 -0
- data/app/views/kkt_shoppe/customers/show.html.haml +53 -0
- data/app/views/kkt_shoppe/delivery_service_prices/_form.html.haml +44 -0
- data/app/views/kkt_shoppe/delivery_service_prices/edit.html.haml +6 -0
- data/app/views/kkt_shoppe/delivery_service_prices/index.html.haml +23 -0
- data/app/views/kkt_shoppe/delivery_service_prices/new.html.haml +6 -0
- data/app/views/kkt_shoppe/delivery_services/_form.html.haml +38 -0
- data/app/views/kkt_shoppe/delivery_services/edit.html.haml +9 -0
- data/app/views/kkt_shoppe/delivery_services/index.html.haml +27 -0
- data/app/views/kkt_shoppe/delivery_services/new.html.haml +6 -0
- data/app/views/kkt_shoppe/order_mailer/accepted.text.erb +12 -0
- data/app/views/kkt_shoppe/order_mailer/received.text.erb +9 -0
- data/app/views/kkt_shoppe/order_mailer/rejected.text.erb +10 -0
- data/app/views/kkt_shoppe/order_mailer/shipped.text.erb +16 -0
- data/app/views/kkt_shoppe/orders/_form.html.haml +58 -0
- data/app/views/kkt_shoppe/orders/_order_details.html.haml +57 -0
- data/app/views/kkt_shoppe/orders/_order_items.html.haml +38 -0
- data/app/views/kkt_shoppe/orders/_order_items_form.html.haml +61 -0
- data/app/views/kkt_shoppe/orders/_payments_form.html.haml +15 -0
- data/app/views/kkt_shoppe/orders/_payments_table.html.haml +37 -0
- data/app/views/kkt_shoppe/orders/_search_form.html.haml +24 -0
- data/app/views/kkt_shoppe/orders/_status_bar.html.haml +35 -0
- data/app/views/kkt_shoppe/orders/despatch_note.html.haml +45 -0
- data/app/views/kkt_shoppe/orders/edit.html.haml +21 -0
- data/app/views/kkt_shoppe/orders/index.html.haml +39 -0
- data/app/views/kkt_shoppe/orders/new.html.haml +14 -0
- data/app/views/kkt_shoppe/orders/show.html.haml +25 -0
- data/app/views/kkt_shoppe/payments/refund.html.haml +13 -0
- data/app/views/kkt_shoppe/product_categories/_form.html.haml +50 -0
- data/app/views/kkt_shoppe/product_categories/edit.html.haml +8 -0
- data/app/views/kkt_shoppe/product_categories/index.html.haml +27 -0
- data/app/views/kkt_shoppe/product_categories/new.html.haml +6 -0
- data/app/views/kkt_shoppe/product_category_localisations/form.html.haml +29 -0
- data/app/views/kkt_shoppe/product_category_localisations/index.html.haml +26 -0
- data/app/views/kkt_shoppe/product_localisations/form.html.haml +32 -0
- data/app/views/kkt_shoppe/product_localisations/index.html.haml +26 -0
- data/app/views/kkt_shoppe/products/_form.html.haml +118 -0
- data/app/views/kkt_shoppe/products/_table.html.haml +42 -0
- data/app/views/kkt_shoppe/products/edit.html.haml +9 -0
- data/app/views/kkt_shoppe/products/import.html.haml +67 -0
- data/app/views/kkt_shoppe/products/index.html.haml +9 -0
- data/app/views/kkt_shoppe/products/new.html.haml +7 -0
- data/app/views/kkt_shoppe/sessions/new.html.haml +12 -0
- data/app/views/kkt_shoppe/sessions/reset.html.haml +12 -0
- data/app/views/kkt_shoppe/settings/edit.html.haml +19 -0
- data/app/views/kkt_shoppe/shared/error.html.haml +6 -0
- data/app/views/kkt_shoppe/stock_level_adjustments/index.html.haml +40 -0
- data/app/views/kkt_shoppe/tax_rates/form.html.haml +28 -0
- data/app/views/kkt_shoppe/tax_rates/index.html.haml +17 -0
- data/app/views/kkt_shoppe/user_mailer/new_password.text.erb +9 -0
- data/app/views/kkt_shoppe/users/_form.html.haml +27 -0
- data/app/views/kkt_shoppe/users/edit.html.haml +5 -0
- data/app/views/kkt_shoppe/users/index.html.haml +17 -0
- data/app/views/kkt_shoppe/users/new.html.haml +7 -0
- data/app/views/kkt_shoppe/variants/form.html.haml +68 -0
- data/app/views/kkt_shoppe/variants/index.html.haml +33 -0
- data/app/views/layouts/kkt_shoppe/application.html.haml +34 -0
- data/app/views/layouts/kkt_shoppe/printable.html.haml +11 -0
- data/app/views/layouts/kkt_shoppe/sub.html.haml +10 -0
- data/config/locales/de.yml +653 -0
- data/config/locales/en.yml +744 -0
- data/config/locales/es.yml +653 -0
- data/config/locales/pl.yml +662 -0
- data/config/locales/pt-BR.yml +655 -0
- data/config/routes.rb +53 -0
- data/db/countries.txt +252 -0
- data/db/migrate/20130926094549_create_kkt_shoppe_initial_schema.rb +175 -0
- data/db/migrate/20131024201501_add_address_type_to_kkt_shoppe_tax_rates.rb +5 -0
- data/db/migrate/20131024204815_create_kkt_shoppe_payments.rb +32 -0
- data/db/migrate/20131102143930_remove_default_on_order_item_weight.rb +9 -0
- data/db/migrate/20141013192427_create_kkt_shoppe_customers.rb +14 -0
- data/db/migrate/20141026175622_add_indexes_to_kkt_shoppe_order_items.rb +6 -0
- data/db/migrate/20141026175943_add_indexes_to_kkt_shoppe_orders.rb +7 -0
- data/db/migrate/20141026180333_add_indexes_to_kkt_shoppe_payments.rb +6 -0
- data/db/migrate/20141026180835_add_indexes_to_kkt_shoppe_product_attributes.rb +7 -0
- data/db/migrate/20141026180952_add_indexes_to_kkt_shoppe_product_categories.rb +5 -0
- data/db/migrate/20141026181040_add_indexes_to_kkt_shoppe_products.rb +8 -0
- data/db/migrate/20141026181312_add_indexes_to_kkt_shoppe_settings.rb +5 -0
- data/db/migrate/20141026181354_add_indexes_to_kkt_shoppe_stock_level_adjustments.rb +6 -0
- data/db/migrate/20141026181559_add_indexes_to_kkt_shoppe_users.rb +5 -0
- data/db/migrate/20141026181716_add_indexes_to_kkt_shoppe_delivery_services.rb +9 -0
- data/db/migrate/20141026181717_allow_multiple_kkt_shoppe_products_per_shoppe_product_category.rb +46 -0
- data/db/migrate/20141026181718_add_nested_to_product_categories.rb +30 -0
- data/db/migrate/20141027215005_create_kkt_shoppe_addresses.rb +17 -0
- data/db/migrate/20150315215633_add_customer_to_kkt_shoppe_orders.rb +5 -0
- data/db/migrate/20150513171350_create_kkt_shoppe_product_category_translation_table.rb +17 -0
- data/db/migrate/20150519173350_create_kkt_shoppe_product_translation_table.rb +18 -0
- data/db/schema.rb +308 -0
- data/db/seeds.rb +137 -0
- data/db/seeds_data/poe400.jpg +0 -0
- data/db/seeds_data/snom-870-blk.jpg +0 -0
- data/db/seeds_data/snom-870-grey.jpg +0 -0
- data/db/seeds_data/snom-mm2.jpg +0 -0
- data/db/seeds_data/spa303.jpg +0 -0
- data/db/seeds_data/t18p.jpg +0 -0
- data/db/seeds_data/t20p.jpg +0 -0
- data/db/seeds_data/t22p.jpg +0 -0
- data/db/seeds_data/t26p.jpg +0 -0
- data/db/seeds_data/t41pn.jpg +0 -0
- data/db/seeds_data/t46gn.jpg +0 -0
- data/db/seeds_data/w52p.jpg +0 -0
- data/db/seeds_data/yhs32.jpg +0 -0
- data/lib/kkt_shoppe/associated_countries.rb +20 -0
- data/lib/kkt_shoppe/country_importer.rb +15 -0
- data/lib/kkt_shoppe/default_navigation.rb +21 -0
- data/lib/kkt_shoppe/engine.rb +55 -0
- data/lib/kkt_shoppe/error.rb +21 -0
- data/lib/kkt_shoppe/errors/inappropriate_delivery_service.rb +6 -0
- data/lib/kkt_shoppe/errors/insufficient_stock_to_fulfil.rb +15 -0
- data/lib/kkt_shoppe/errors/invalid_configuration.rb +6 -0
- data/lib/kkt_shoppe/errors/not_enough_stock.rb +15 -0
- data/lib/kkt_shoppe/errors/payment_declined.rb +6 -0
- data/lib/kkt_shoppe/errors/refund_failed.rb +6 -0
- data/lib/kkt_shoppe/errors/unorderable_item.rb +6 -0
- data/lib/kkt_shoppe/navigation_manager.rb +81 -0
- data/lib/kkt_shoppe/orderable_item.rb +39 -0
- data/lib/kkt_shoppe/settings.rb +26 -0
- data/lib/kkt_shoppe/settings_loader.rb +16 -0
- data/lib/kkt_shoppe/setup_generator.rb +10 -0
- data/lib/kkt_shoppe/version.rb +3 -0
- data/lib/kkt_shoppe/view_helpers.rb +16 -0
- data/lib/kkt_shoppe.rb +60 -0
- data/lib/tasks/kylekthompson_shoppe.rake +29 -0
- metadata +662 -0
@@ -0,0 +1,239 @@
|
|
1
|
+
module KktShoppe
|
2
|
+
class OrderItem < ActiveRecord::Base
|
3
|
+
|
4
|
+
self.table_name = 'kkt_shoppe_order_items'
|
5
|
+
|
6
|
+
# The associated order
|
7
|
+
#
|
8
|
+
# @return [KktShoppe::Order]
|
9
|
+
belongs_to :order, :class_name => 'KktShoppe::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 => 'KktShoppe::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 KktShoppe::OrderableItem protocol
|
46
|
+
# @param quantity [Fixnum] the number of items to order
|
47
|
+
# @return [KktShoppe::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 [KktShoppe::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 KktShoppe::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 KktShoppe
|
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 [KktShoppe::Order]
|
11
|
+
belongs_to :order, :class_name => 'KktShoppe::Order'
|
12
|
+
|
13
|
+
# An associated payment (only applies to refunds)
|
14
|
+
#
|
15
|
+
# @return [KktShoppe::Payment]
|
16
|
+
belongs_to :parent, :class_name => "KktShoppe::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 KktShoppe::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
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module KktShoppe
|
2
|
+
class Product < ActiveRecord::Base
|
3
|
+
|
4
|
+
# Product attributes for this product
|
5
|
+
has_many :product_attributes, -> { order(:position) }, :class_name => 'KktShoppe::ProductAttribute'
|
6
|
+
|
7
|
+
# Used for setting an array of product attributes which will be updated. Usually
|
8
|
+
# received from a web browser.
|
9
|
+
attr_accessor :product_attributes_array
|
10
|
+
|
11
|
+
# After saving automatically try to update the product attributes based on the
|
12
|
+
# the contents of the product_attributes_array array.
|
13
|
+
after_save do
|
14
|
+
if product_attributes_array.is_a?(Array)
|
15
|
+
self.product_attributes.update_from_array(product_attributes_array)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
module KktShoppe
|
2
|
+
class Product < ActiveRecord::Base
|
3
|
+
|
4
|
+
# Validations
|
5
|
+
validate { errors.add :base, :can_belong_to_root if self.parent && self.parent.parent }
|
6
|
+
|
7
|
+
# Variants of the product
|
8
|
+
has_many :variants, :class_name => 'KktShoppe::Product', :foreign_key => 'parent_id', :dependent => :destroy
|
9
|
+
|
10
|
+
# The parent product (only applies to variants)
|
11
|
+
belongs_to :parent, :class_name => 'KktShoppe::Product', :foreign_key => 'parent_id'
|
12
|
+
|
13
|
+
# All products which are not variants
|
14
|
+
scope :root, -> { where(:parent_id => nil) }
|
15
|
+
|
16
|
+
# If a variant is created, the base product should be updated so that it doesn't have stock control enabled
|
17
|
+
after_save do
|
18
|
+
if self.parent
|
19
|
+
self.parent.price = 0
|
20
|
+
self.parent.cost_price = 0
|
21
|
+
self.parent.tax_rate = nil
|
22
|
+
self.parent.weight = 0
|
23
|
+
self.parent.stock_control = false
|
24
|
+
self.parent.save if self.parent.changed?
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
# Does this product have any variants?
|
29
|
+
#
|
30
|
+
# @return [Boolean]
|
31
|
+
def has_variants?
|
32
|
+
!variants.empty?
|
33
|
+
end
|
34
|
+
|
35
|
+
# Returns the default variant for the product or nil if none exists.
|
36
|
+
#
|
37
|
+
# @return [KktShoppe::Product]
|
38
|
+
def default_variant
|
39
|
+
return nil if self.parent
|
40
|
+
@default_variant ||= self.variants.select { |v| v.default? }.first
|
41
|
+
end
|
42
|
+
|
43
|
+
# Is this product a variant of another?
|
44
|
+
#
|
45
|
+
# @return [Boolean]
|
46
|
+
def variant?
|
47
|
+
!self.parent_id.blank?
|
48
|
+
end
|
49
|
+
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,189 @@
|
|
1
|
+
require "roo"
|
2
|
+
require "globalize"
|
3
|
+
|
4
|
+
module KktShoppe
|
5
|
+
class Product < ActiveRecord::Base
|
6
|
+
|
7
|
+
self.table_name = 'kkt_shoppe_products'
|
8
|
+
|
9
|
+
# Add dependencies for products
|
10
|
+
require_dependency 'kkt_shoppe/product/product_attributes'
|
11
|
+
require_dependency 'kkt_shoppe/product/variants'
|
12
|
+
|
13
|
+
# Products have a default_image and a data_sheet
|
14
|
+
attachment :default_image
|
15
|
+
attachment :data_sheet
|
16
|
+
|
17
|
+
# The product's categorizations
|
18
|
+
#
|
19
|
+
# @return [KktShoppe::ProductCategorization]
|
20
|
+
has_many :product_categorizations, dependent: :destroy, class_name: 'KktShoppe::ProductCategorization', inverse_of: :product
|
21
|
+
# The product's categories
|
22
|
+
#
|
23
|
+
# @return [KktShoppe::ProductCategory]
|
24
|
+
has_many :product_categories, class_name: 'KktShoppe::ProductCategory', through: :product_categorizations
|
25
|
+
|
26
|
+
# The product's tax rate
|
27
|
+
#
|
28
|
+
# @return [KktShoppe::TaxRate]
|
29
|
+
belongs_to :tax_rate, :class_name => "KktShoppe::TaxRate"
|
30
|
+
|
31
|
+
# Ordered items which are associated with this product
|
32
|
+
has_many :order_items, :dependent => :restrict_with_exception, :class_name => 'KktShoppe::OrderItem', :as => :ordered_item
|
33
|
+
|
34
|
+
# Orders which have ordered this product
|
35
|
+
has_many :orders, :through => :order_items, :class_name => 'KktShoppe::Order'
|
36
|
+
|
37
|
+
# Stock level adjustments for this product
|
38
|
+
has_many :stock_level_adjustments, :dependent => :destroy, :class_name => 'KktShoppe::StockLevelAdjustment', :as => :item
|
39
|
+
|
40
|
+
# Validations
|
41
|
+
with_options :if => Proc.new { |p| p.parent.nil? } do |product|
|
42
|
+
product.validate :has_at_least_one_product_category
|
43
|
+
product.validates :description, :presence => true
|
44
|
+
product.validates :short_description, :presence => true
|
45
|
+
end
|
46
|
+
validates :name, :presence => true
|
47
|
+
validates :permalink, :presence => true, :uniqueness => true, :permalink => true
|
48
|
+
validates :sku, :presence => true
|
49
|
+
validates :weight, :numericality => true
|
50
|
+
validates :price, :numericality => true
|
51
|
+
validates :cost_price, :numericality => true, :allow_blank => true
|
52
|
+
|
53
|
+
# Before validation, set the permalink if we don't already have one
|
54
|
+
before_validation { self.permalink = self.name.parameterize if self.permalink.blank? && self.name.is_a?(String) }
|
55
|
+
|
56
|
+
# All active products
|
57
|
+
scope :active, -> { where(:active => true) }
|
58
|
+
|
59
|
+
# All featured products
|
60
|
+
scope :featured, -> {where(:featured => true)}
|
61
|
+
|
62
|
+
# Localisations
|
63
|
+
translates :name, :permalink, :description, :short_description
|
64
|
+
scope :ordered, -> { includes(:translations).order(:name) }
|
65
|
+
|
66
|
+
# Return the name of the product
|
67
|
+
#
|
68
|
+
# @return [String]
|
69
|
+
def full_name
|
70
|
+
self.parent ? "#{self.parent.name} (#{name})" : name
|
71
|
+
end
|
72
|
+
|
73
|
+
# Is this product orderable?
|
74
|
+
#
|
75
|
+
# @return [Boolean]
|
76
|
+
def orderable?
|
77
|
+
return false unless self.active?
|
78
|
+
return false if self.has_variants?
|
79
|
+
true
|
80
|
+
end
|
81
|
+
|
82
|
+
# The price for the product
|
83
|
+
#
|
84
|
+
# @return [BigDecimal]
|
85
|
+
def price
|
86
|
+
# self.default_variant ? self.default_variant.price : read_attribute(:price)
|
87
|
+
self.default_variant ? self.default_variant.price : read_attribute(:price)
|
88
|
+
end
|
89
|
+
|
90
|
+
# Is this product currently in stock?
|
91
|
+
#
|
92
|
+
# @return [Boolean]
|
93
|
+
def in_stock?
|
94
|
+
self.default_variant ? self.default_variant.in_stock? : (stock_control? ? stock > 0 : true)
|
95
|
+
end
|
96
|
+
|
97
|
+
# Return the total number of items currently in stock
|
98
|
+
#
|
99
|
+
# @return [Fixnum]
|
100
|
+
def stock
|
101
|
+
self.stock_level_adjustments.sum(:adjustment)
|
102
|
+
end
|
103
|
+
|
104
|
+
# Return the first product category
|
105
|
+
#
|
106
|
+
# @return [KktShoppe::ProductCategory]
|
107
|
+
def product_category
|
108
|
+
self.product_categories.first rescue nil
|
109
|
+
end
|
110
|
+
|
111
|
+
# Search for products which include the given attributes and return an active record
|
112
|
+
# scope of these products. Chainable with other scopes and with_attributes methods.
|
113
|
+
# For example:
|
114
|
+
#
|
115
|
+
# KktShoppe::Product.active.with_attribute('Manufacturer', 'Apple').with_attribute('Model', ['Macbook', 'iPhone'])
|
116
|
+
#
|
117
|
+
# @return [Enumerable]
|
118
|
+
def self.with_attributes(key, values)
|
119
|
+
product_ids = KktShoppe::ProductAttribute.searchable.where(:key => key, :value => values).pluck(:product_id).uniq
|
120
|
+
where(:id => product_ids)
|
121
|
+
end
|
122
|
+
|
123
|
+
# Imports products from a spreadsheet file
|
124
|
+
# Example:
|
125
|
+
#
|
126
|
+
# KktShoppe:Product.import("path/to/file.csv")
|
127
|
+
def self.import(file)
|
128
|
+
spreadsheet = open_spreadsheet(file)
|
129
|
+
spreadsheet.default_sheet = spreadsheet.sheets.first
|
130
|
+
header = spreadsheet.row(1)
|
131
|
+
(2..spreadsheet.last_row).each do |i|
|
132
|
+
row = Hash[[header, spreadsheet.row(i)].transpose]
|
133
|
+
|
134
|
+
# Don't import products where the name is blank
|
135
|
+
unless row["name"].nil?
|
136
|
+
if product = find_by(name: row["name"])
|
137
|
+
# Dont import products with the same name but update quantities if they're not the same
|
138
|
+
qty = row["qty"].to_i
|
139
|
+
if qty > 0 && qty != product.stock
|
140
|
+
product.stock_level_adjustments.create!(description: I18n.t('kkt_shoppe.import'), adjustment: qty)
|
141
|
+
end
|
142
|
+
else
|
143
|
+
product = new
|
144
|
+
product.name = row["name"]
|
145
|
+
product.sku = row["sku"]
|
146
|
+
product.description = row["description"]
|
147
|
+
product.short_description = row["short_description"]
|
148
|
+
product.weight = row["weight"]
|
149
|
+
product.price = row["price"].nil? ? 0 : row["price"]
|
150
|
+
product.permalink = row["permalink"]
|
151
|
+
|
152
|
+
product.product_categories << begin
|
153
|
+
if KktShoppe::ProductCategory.find_by(name: row["category_name"]).present?
|
154
|
+
KktShoppe::ProductCategory.find_by(name: row["category_name"])
|
155
|
+
else
|
156
|
+
KktShoppe::ProductCategory.create(name: row["category_name"])
|
157
|
+
end
|
158
|
+
end
|
159
|
+
|
160
|
+
product.save!
|
161
|
+
|
162
|
+
qty = row["qty"].to_i
|
163
|
+
if qty > 0
|
164
|
+
product.stock_level_adjustments.create!(description: I18n.t('kkt_shoppe.import'), adjustment: qty)
|
165
|
+
end
|
166
|
+
end
|
167
|
+
end
|
168
|
+
end
|
169
|
+
end
|
170
|
+
|
171
|
+
def self.open_spreadsheet(file)
|
172
|
+
case File.extname(file.original_filename)
|
173
|
+
when ".csv" then Roo::CSV.new(file.path)
|
174
|
+
when ".xls" then Roo::Excel.new(file.path)
|
175
|
+
when ".xlsx" then Roo::Excelx.new(file.path)
|
176
|
+
else raise I18n.t('kkt_shoppe.imports.errors.unknown_format', filename: File.original_filename)
|
177
|
+
end
|
178
|
+
end
|
179
|
+
|
180
|
+
private
|
181
|
+
|
182
|
+
# Validates
|
183
|
+
|
184
|
+
def has_at_least_one_product_category
|
185
|
+
errors.add(:base, 'must add at least one product category') if self.product_categories.blank?
|
186
|
+
end
|
187
|
+
|
188
|
+
end
|
189
|
+
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
module KktShoppe
|
2
|
+
class ProductAttribute < ActiveRecord::Base
|
3
|
+
|
4
|
+
self.table_name = 'kkt_shoppe_product_attributes'
|
5
|
+
|
6
|
+
# Validations
|
7
|
+
validates :key, :presence => true
|
8
|
+
|
9
|
+
# The associated product
|
10
|
+
#
|
11
|
+
# @return [KktShoppe::Product]
|
12
|
+
belongs_to :product, :class_name => 'KktShoppe::Product'
|
13
|
+
|
14
|
+
# All attributes which are searchable
|
15
|
+
scope :searchable, -> { where(:searchable => true) }
|
16
|
+
|
17
|
+
# All attributes which are public
|
18
|
+
scope :publicly_accessible, -> { where(:public => true) }
|
19
|
+
|
20
|
+
# Return the the available options as a hash
|
21
|
+
#
|
22
|
+
# @return [Hash]
|
23
|
+
def self.grouped_hash
|
24
|
+
all.group_by(&:key).inject(Hash.new) do |h, (key, attributes)|
|
25
|
+
h[key] = attributes.map(&:value).uniq
|
26
|
+
h
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
# Create/update attributes for a product based on the provided hash of
|
31
|
+
# keys & values.
|
32
|
+
#
|
33
|
+
# @param array [Array]
|
34
|
+
def self.update_from_array(array)
|
35
|
+
existing_keys = self.pluck(:key)
|
36
|
+
index = 0
|
37
|
+
array.each do |hash|
|
38
|
+
next if hash['key'].blank?
|
39
|
+
index += 1
|
40
|
+
params = hash.merge({
|
41
|
+
:searchable => hash['searchable'].to_s == '1',
|
42
|
+
:public => hash['public'].to_s == '1',
|
43
|
+
:position => index
|
44
|
+
})
|
45
|
+
if existing_attr = self.where(:key => hash['key']).first
|
46
|
+
if hash['value'].blank?
|
47
|
+
existing_attr.destroy
|
48
|
+
index -= 1
|
49
|
+
else
|
50
|
+
existing_attr.update_attributes(params)
|
51
|
+
end
|
52
|
+
else
|
53
|
+
attribute = self.create(params)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
self.where(:key => existing_keys - array.map { |h| h['key']}).delete_all
|
57
|
+
true
|
58
|
+
end
|
59
|
+
|
60
|
+
def self.public
|
61
|
+
ActiveSupport::Deprecation.warn("The use of KktShoppe::ProductAttribute.public is deprecated. use KktShoppe::ProductAttribute.publicly_accessible.")
|
62
|
+
self.publicly_accessible
|
63
|
+
end
|
64
|
+
|
65
|
+
end
|
66
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
module KktShoppe
|
2
|
+
class ProductCategorization < ActiveRecord::Base
|
3
|
+
|
4
|
+
self.table_name = 'kkt_shoppe_product_categorizations'
|
5
|
+
|
6
|
+
# Links back
|
7
|
+
belongs_to :product, class_name: 'KktShoppe::Product'
|
8
|
+
belongs_to :product_category, class_name: 'KktShoppe::ProductCategory'
|
9
|
+
|
10
|
+
# Validations
|
11
|
+
validates_presence_of :product, :product_category
|
12
|
+
|
13
|
+
end
|
14
|
+
end
|