kylekthompson-shoppe 1.0.7
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/shoppe/chosen-sprite.png +0 -0
- data/app/assets/images/shoppe/chosen-sprite@2x.png +0 -0
- data/app/assets/images/shoppe/document.svg +1 -0
- data/app/assets/images/shoppe/icons/bag.svg +1 -0
- data/app/assets/images/shoppe/icons/balance.svg +1 -0
- data/app/assets/images/shoppe/icons/box.svg +1 -0
- data/app/assets/images/shoppe/icons/building.svg +1 -0
- data/app/assets/images/shoppe/icons/chart.svg +1 -0
- data/app/assets/images/shoppe/icons/chat.svg +1 -0
- data/app/assets/images/shoppe/icons/checkbox.svg +1 -0
- data/app/assets/images/shoppe/icons/checkbox2.svg +1 -0
- data/app/assets/images/shoppe/icons/cloud.svg +1 -0
- data/app/assets/images/shoppe/icons/cone.svg +1 -0
- data/app/assets/images/shoppe/icons/credit_card.svg +1 -0
- data/app/assets/images/shoppe/icons/currency.svg +1 -0
- data/app/assets/images/shoppe/icons/edit.svg +14 -0
- data/app/assets/images/shoppe/icons/flowchart.svg +1 -0
- data/app/assets/images/shoppe/icons/gift.svg +1 -0
- data/app/assets/images/shoppe/icons/globe.svg +1 -0
- data/app/assets/images/shoppe/icons/id.svg +1 -0
- data/app/assets/images/shoppe/icons/id2.svg +1 -0
- data/app/assets/images/shoppe/icons/locked.svg +1 -0
- data/app/assets/images/shoppe/icons/report.svg +1 -0
- data/app/assets/images/shoppe/icons/search.svg +1 -0
- data/app/assets/images/shoppe/icons/support.svg +1 -0
- data/app/assets/images/shoppe/icons/tags.svg +1 -0
- data/app/assets/images/shoppe/icons/toolbox.svg +1 -0
- data/app/assets/images/shoppe/icons/unlocked.svg +1 -0
- data/app/assets/images/shoppe/icons/wallet.svg +1 -0
- data/app/assets/images/shoppe/logo.svg +47 -0
- data/app/assets/images/shoppe/move.svg +1 -0
- data/app/assets/images/shoppe/shoppe.svg +25 -0
- data/app/assets/images/shoppe/square.svg +9 -0
- data/app/assets/images/shoppe/statuses/accepted.svg +14 -0
- data/app/assets/images/shoppe/statuses/paid.svg +16 -0
- data/app/assets/images/shoppe/statuses/received.svg +15 -0
- data/app/assets/images/shoppe/statuses/rejected.svg +14 -0
- data/app/assets/images/shoppe/statuses/shipped.svg +14 -0
- data/app/assets/images/shoppe/table-tear-off.png +0 -0
- data/app/assets/javascripts/shoppe/application.coffee +123 -0
- data/app/assets/javascripts/shoppe/chosen.jquery.js +1166 -0
- data/app/assets/javascripts/shoppe/jquery_ui.js +6 -0
- data/app/assets/javascripts/shoppe/mousetrap.js +9 -0
- data/app/assets/javascripts/shoppe/order_form.coffee +47 -0
- data/app/assets/stylesheets/shoppe/application.scss +601 -0
- data/app/assets/stylesheets/shoppe/chosen.scss +424 -0
- data/app/assets/stylesheets/shoppe/dialog.scss +25 -0
- data/app/assets/stylesheets/shoppe/elements.scss +79 -0
- data/app/assets/stylesheets/shoppe/printable.scss +67 -0
- data/app/assets/stylesheets/shoppe/reset.scss +93 -0
- data/app/assets/stylesheets/shoppe/sub.scss +106 -0
- data/app/assets/stylesheets/shoppe/variables.scss +1 -0
- data/app/controllers/shoppe/addresses_controller.rb +47 -0
- data/app/controllers/shoppe/application_controller.rb +46 -0
- data/app/controllers/shoppe/attachments_controller.rb +14 -0
- data/app/controllers/shoppe/countries_controller.rb +47 -0
- data/app/controllers/shoppe/customers_controller.rb +55 -0
- data/app/controllers/shoppe/dashboard_controller.rb +9 -0
- data/app/controllers/shoppe/delivery_service_prices_controller.rb +45 -0
- data/app/controllers/shoppe/delivery_services_controller.rb +47 -0
- data/app/controllers/shoppe/orders_controller.rb +119 -0
- data/app/controllers/shoppe/payments_controller.rb +33 -0
- data/app/controllers/shoppe/product_categories_controller.rb +47 -0
- data/app/controllers/shoppe/product_category_localisations_controller.rb +58 -0
- data/app/controllers/shoppe/product_localisations_controller.rb +58 -0
- data/app/controllers/shoppe/products_controller.rb +58 -0
- data/app/controllers/shoppe/sessions_controller.rb +34 -0
- data/app/controllers/shoppe/settings_controller.rb +16 -0
- data/app/controllers/shoppe/stock_level_adjustments_controller.rb +40 -0
- data/app/controllers/shoppe/tax_rates_controller.rb +49 -0
- data/app/controllers/shoppe/users_controller.rb +53 -0
- data/app/controllers/shoppe/variants_controller.rb +50 -0
- data/app/helpers/shoppe/application_helper.rb +60 -0
- data/app/helpers/shoppe/product_category_helper.rb +36 -0
- data/app/mailers/shoppe/order_mailer.rb +25 -0
- data/app/mailers/shoppe/user_mailer.rb +10 -0
- data/app/models/shoppe/address.rb +44 -0
- data/app/models/shoppe/country.rb +27 -0
- data/app/models/shoppe/customer.rb +41 -0
- data/app/models/shoppe/delivery_service.rb +33 -0
- data/app/models/shoppe/delivery_service_price.rb +31 -0
- data/app/models/shoppe/order.rb +100 -0
- data/app/models/shoppe/order/actions.rb +94 -0
- data/app/models/shoppe/order/billing.rb +105 -0
- data/app/models/shoppe/order/delivery.rb +229 -0
- data/app/models/shoppe/order/states.rb +69 -0
- data/app/models/shoppe/order_item.rb +239 -0
- data/app/models/shoppe/payment.rb +86 -0
- data/app/models/shoppe/product.rb +189 -0
- data/app/models/shoppe/product/product_attributes.rb +20 -0
- data/app/models/shoppe/product/variants.rb +51 -0
- data/app/models/shoppe/product_attribute.rb +66 -0
- data/app/models/shoppe/product_categorization.rb +14 -0
- data/app/models/shoppe/product_category.rb +75 -0
- data/app/models/shoppe/setting.rb +68 -0
- data/app/models/shoppe/stock_level_adjustment.rb +19 -0
- data/app/models/shoppe/tax_rate.rb +46 -0
- data/app/models/shoppe/user.rb +49 -0
- data/app/validators/permalink_validator.rb +7 -0
- data/app/views/layouts/shoppe/application.html.haml +34 -0
- data/app/views/layouts/shoppe/printable.html.haml +11 -0
- data/app/views/layouts/shoppe/sub.html.haml +10 -0
- data/app/views/shoppe/addresses/_form.html.haml +33 -0
- data/app/views/shoppe/addresses/edit.html.haml +5 -0
- data/app/views/shoppe/addresses/new.html.haml +5 -0
- data/app/views/shoppe/countries/_form.html.haml +35 -0
- data/app/views/shoppe/countries/edit.html.haml +6 -0
- data/app/views/shoppe/countries/index.html.haml +25 -0
- data/app/views/shoppe/countries/new.html.haml +7 -0
- data/app/views/shoppe/customers/_addresses.html.haml +20 -0
- data/app/views/shoppe/customers/_form.html.haml +30 -0
- data/app/views/shoppe/customers/_search_form.html.haml +13 -0
- data/app/views/shoppe/customers/edit.html.haml +5 -0
- data/app/views/shoppe/customers/index.html.haml +32 -0
- data/app/views/shoppe/customers/new.html.haml +5 -0
- data/app/views/shoppe/customers/show.html.haml +53 -0
- data/app/views/shoppe/delivery_service_prices/_form.html.haml +44 -0
- data/app/views/shoppe/delivery_service_prices/edit.html.haml +6 -0
- data/app/views/shoppe/delivery_service_prices/index.html.haml +23 -0
- data/app/views/shoppe/delivery_service_prices/new.html.haml +6 -0
- data/app/views/shoppe/delivery_services/_form.html.haml +38 -0
- data/app/views/shoppe/delivery_services/edit.html.haml +9 -0
- data/app/views/shoppe/delivery_services/index.html.haml +27 -0
- data/app/views/shoppe/delivery_services/new.html.haml +6 -0
- data/app/views/shoppe/order_mailer/accepted.text.erb +12 -0
- data/app/views/shoppe/order_mailer/received.text.erb +9 -0
- data/app/views/shoppe/order_mailer/rejected.text.erb +10 -0
- data/app/views/shoppe/order_mailer/shipped.text.erb +16 -0
- data/app/views/shoppe/orders/_form.html.haml +58 -0
- data/app/views/shoppe/orders/_order_details.html.haml +57 -0
- data/app/views/shoppe/orders/_order_items.html.haml +38 -0
- data/app/views/shoppe/orders/_order_items_form.html.haml +61 -0
- data/app/views/shoppe/orders/_payments_form.html.haml +15 -0
- data/app/views/shoppe/orders/_payments_table.html.haml +37 -0
- data/app/views/shoppe/orders/_search_form.html.haml +24 -0
- data/app/views/shoppe/orders/_status_bar.html.haml +35 -0
- data/app/views/shoppe/orders/despatch_note.html.haml +45 -0
- data/app/views/shoppe/orders/edit.html.haml +21 -0
- data/app/views/shoppe/orders/index.html.haml +39 -0
- data/app/views/shoppe/orders/new.html.haml +14 -0
- data/app/views/shoppe/orders/show.html.haml +25 -0
- data/app/views/shoppe/payments/refund.html.haml +13 -0
- data/app/views/shoppe/product_categories/_form.html.haml +50 -0
- data/app/views/shoppe/product_categories/edit.html.haml +8 -0
- data/app/views/shoppe/product_categories/index.html.haml +27 -0
- data/app/views/shoppe/product_categories/new.html.haml +6 -0
- data/app/views/shoppe/product_category_localisations/form.html.haml +29 -0
- data/app/views/shoppe/product_category_localisations/index.html.haml +26 -0
- data/app/views/shoppe/product_localisations/form.html.haml +32 -0
- data/app/views/shoppe/product_localisations/index.html.haml +26 -0
- data/app/views/shoppe/products/_form.html.haml +118 -0
- data/app/views/shoppe/products/_table.html.haml +42 -0
- data/app/views/shoppe/products/edit.html.haml +9 -0
- data/app/views/shoppe/products/import.html.haml +67 -0
- data/app/views/shoppe/products/index.html.haml +9 -0
- data/app/views/shoppe/products/new.html.haml +7 -0
- data/app/views/shoppe/sessions/new.html.haml +12 -0
- data/app/views/shoppe/sessions/reset.html.haml +12 -0
- data/app/views/shoppe/settings/edit.html.haml +19 -0
- data/app/views/shoppe/shared/error.html.haml +6 -0
- data/app/views/shoppe/stock_level_adjustments/index.html.haml +40 -0
- data/app/views/shoppe/tax_rates/form.html.haml +28 -0
- data/app/views/shoppe/tax_rates/index.html.haml +17 -0
- data/app/views/shoppe/user_mailer/new_password.text.erb +9 -0
- data/app/views/shoppe/users/_form.html.haml +27 -0
- data/app/views/shoppe/users/edit.html.haml +5 -0
- data/app/views/shoppe/users/index.html.haml +17 -0
- data/app/views/shoppe/users/new.html.haml +7 -0
- data/app/views/shoppe/variants/form.html.haml +68 -0
- data/app/views/shoppe/variants/index.html.haml +33 -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_shoppe_initial_schema.rb +175 -0
- data/db/migrate/20131024201501_add_address_type_to_shoppe_tax_rates.rb +5 -0
- data/db/migrate/20131024204815_create_shoppe_payments.rb +32 -0
- data/db/migrate/20131102143930_remove_default_on_order_item_weight.rb +9 -0
- data/db/migrate/20141013192427_create_shoppe_customers.rb +14 -0
- data/db/migrate/20141026175622_add_indexes_to_shoppe_order_items.rb +6 -0
- data/db/migrate/20141026175943_add_indexes_to_shoppe_orders.rb +7 -0
- data/db/migrate/20141026180333_add_indexes_to_shoppe_payments.rb +6 -0
- data/db/migrate/20141026180835_add_indexes_to_shoppe_product_attributes.rb +7 -0
- data/db/migrate/20141026180952_add_indexes_to_shoppe_product_categories.rb +5 -0
- data/db/migrate/20141026181040_add_indexes_to_shoppe_products.rb +8 -0
- data/db/migrate/20141026181312_add_indexes_to_shoppe_settings.rb +5 -0
- data/db/migrate/20141026181354_add_indexes_to_shoppe_stock_level_adjustments.rb +6 -0
- data/db/migrate/20141026181559_add_indexes_to_shoppe_users.rb +5 -0
- data/db/migrate/20141026181716_add_indexes_to_shoppe_delivery_services.rb +9 -0
- data/db/migrate/20141026181717_allow_multiple_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_shoppe_addresses.rb +17 -0
- data/db/migrate/20150315215633_add_customer_to_shoppe_orders.rb +5 -0
- data/db/migrate/20150513171350_create_shoppe_product_category_translation_table.rb +17 -0
- data/db/migrate/20150519173350_create_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/shoppe.rb +60 -0
- data/lib/shoppe/associated_countries.rb +20 -0
- data/lib/shoppe/country_importer.rb +15 -0
- data/lib/shoppe/default_navigation.rb +21 -0
- data/lib/shoppe/engine.rb +55 -0
- data/lib/shoppe/error.rb +21 -0
- data/lib/shoppe/errors/inappropriate_delivery_service.rb +6 -0
- data/lib/shoppe/errors/insufficient_stock_to_fulfil.rb +15 -0
- data/lib/shoppe/errors/invalid_configuration.rb +6 -0
- data/lib/shoppe/errors/not_enough_stock.rb +15 -0
- data/lib/shoppe/errors/payment_declined.rb +6 -0
- data/lib/shoppe/errors/refund_failed.rb +6 -0
- data/lib/shoppe/errors/unorderable_item.rb +6 -0
- data/lib/shoppe/navigation_manager.rb +81 -0
- data/lib/shoppe/orderable_item.rb +39 -0
- data/lib/shoppe/settings.rb +26 -0
- data/lib/shoppe/settings_loader.rb +16 -0
- data/lib/shoppe/setup_generator.rb +10 -0
- data/lib/shoppe/version.rb +3 -0
- data/lib/shoppe/view_helpers.rb +16 -0
- data/lib/tasks/shoppe.rake +29 -0
- metadata +662 -0
@@ -0,0 +1,21 @@
|
|
1
|
+
- @page_title = "#{t('shoppe.orders.edit_order')} ##{@order.number}"
|
2
|
+
|
3
|
+
= content_for :header do
|
4
|
+
%p.buttons
|
5
|
+
= link_to t('shoppe.orders.back_to_order'), @order, :class => 'button grey'
|
6
|
+
%h2.orders "#{t('shoppe.orders.edit_order')} <b>##{@order.number}</b>"
|
7
|
+
|
8
|
+
= form_for @order, :html => {:class => 'orderForm'} do |f|
|
9
|
+
= f.error_messages
|
10
|
+
= render 'form', :f => f
|
11
|
+
|
12
|
+
= field_set_tag t('shoppe.orders.notes') do
|
13
|
+
%dl
|
14
|
+
%dd= f.text_area :notes, :class => 'text'
|
15
|
+
|
16
|
+
= field_set_tag t('shoppe.orders.ordered_products'), :class => 'padded' do
|
17
|
+
= render 'order_items_form', :f => f
|
18
|
+
|
19
|
+
%p.submit
|
20
|
+
= f.submit t('shoppe.orders.save_order') , :class => 'button green'
|
21
|
+
= link_to t('shoppe.cancel'), @order, :class => 'button'
|
@@ -0,0 +1,39 @@
|
|
1
|
+
- @page_title = t('shoppe.orders.orders')
|
2
|
+
|
3
|
+
= content_for :header do
|
4
|
+
%p.buttons
|
5
|
+
= link_to t('shoppe.orders.new_order'), :new_order, :class => 'button green'
|
6
|
+
= link_to t('shoppe.orders.search_orders'), '#', :class => 'button', :rel => 'searchOrders'
|
7
|
+
%h2.orders
|
8
|
+
= t('shoppe.orders.orders')
|
9
|
+
%span= page_entries_info @orders
|
10
|
+
|
11
|
+
= render 'search_form'
|
12
|
+
|
13
|
+
.table
|
14
|
+
%table.data
|
15
|
+
%thead
|
16
|
+
%tr
|
17
|
+
%th= t('shoppe.orders.number')
|
18
|
+
%th= t('shoppe.orders.customer')
|
19
|
+
%th= t('shoppe.orders.status')
|
20
|
+
%th= t('shoppe.orders.products')
|
21
|
+
%th= t('shoppe.orders.total')
|
22
|
+
%th= t('shoppe.orders.payment')
|
23
|
+
%tbody
|
24
|
+
- if @orders.empty?
|
25
|
+
%tr.empty
|
26
|
+
%td{:colspan => 6}= t('shoppe.orders.no_orders')
|
27
|
+
- else
|
28
|
+
- for order in @orders
|
29
|
+
%tr
|
30
|
+
%td= link_to order.number, order
|
31
|
+
%td= order.customer_name
|
32
|
+
%td= status_tag order.status
|
33
|
+
%td
|
34
|
+
%ul
|
35
|
+
- for item in order.order_items
|
36
|
+
%li #{item.quantity} x #{item.ordered_item.full_name}
|
37
|
+
%td= number_to_currency order.total
|
38
|
+
%td= boolean_tag order.paid_in_full?, nil, :true_text => number_to_currency(order.amount_paid), :false_text => number_to_currency(order.amount_paid)
|
39
|
+
= paginate @orders
|
@@ -0,0 +1,14 @@
|
|
1
|
+
- @page_title = t('shoppe.orders.new_order')
|
2
|
+
|
3
|
+
= content_for :header do
|
4
|
+
%p.buttons= link_to t('shoppe.orders.back_to_orders'), :orders, :class => 'button grey'
|
5
|
+
%h2.orders= t('shoppe.orders.new_order')
|
6
|
+
|
7
|
+
= form_for @order, :html => {:class => 'orderForm newOrder'} do |f|
|
8
|
+
= f.error_messages
|
9
|
+
= render 'form', :f => f
|
10
|
+
= field_set_tag t('shoppe.orders.ordered_products'), :class => 'padded' do
|
11
|
+
= render 'order_items_form', :f => f
|
12
|
+
%p.submit
|
13
|
+
= f.submit t('shoppe.orders.create_order'), :class => 'button green'
|
14
|
+
= link_to t('shoppe.cancel'), :orders, :class => 'button grey'
|
@@ -0,0 +1,25 @@
|
|
1
|
+
- @page_title = "#{t('shoppe.orders.order')} ##{@order.number}"
|
2
|
+
|
3
|
+
= content_for :header do
|
4
|
+
%p.buttons
|
5
|
+
= link_to t('shoppe.edit'), [:edit, @order], :class => 'button'
|
6
|
+
- if @order.accepted?
|
7
|
+
= link_to t('shoppe.orders.despatch_note.despatch_note'), [:despatch_note, @order], :class => 'button', :rel => 'print'
|
8
|
+
= link_to t('shoppe.orders.back_to_orders'), :orders, :class => 'button grey'
|
9
|
+
%h2.orders= t('shoppe.orders.order_no_html', order_number: @order.number)
|
10
|
+
|
11
|
+
#order
|
12
|
+
|
13
|
+
- if @order.received?
|
14
|
+
= render 'order_details'
|
15
|
+
= render 'status_bar'
|
16
|
+
- else
|
17
|
+
%p.warning= t('shoppe.orders.in_progress_warning')
|
18
|
+
|
19
|
+
= field_set_tag t('shoppe.orders.order_items'), :class => 'padded' do
|
20
|
+
= render 'order_items'
|
21
|
+
|
22
|
+
- if @order.received?
|
23
|
+
= field_set_tag t('shoppe.orders.payments'), :class => 'padded orderPayments' do
|
24
|
+
= render 'payments_table'
|
25
|
+
= render 'payments_form'
|
@@ -0,0 +1,13 @@
|
|
1
|
+
|
2
|
+
= form_tag [:refund, @order, @payment], :class => 'refundForm' do
|
3
|
+
%h2= t('shoppe.refund.issue_refund')
|
4
|
+
%p.intro
|
5
|
+
= t('shoppe.refund.intro_html', amount: number_to_currency(@payment.refundable_amount))
|
6
|
+
|
7
|
+
.moneyInput
|
8
|
+
.currency= Shoppe.settings.currency_unit.html_safe
|
9
|
+
= text_field_tag 'amount', @payment.refundable_amount, :class => 'text'
|
10
|
+
%p.submit
|
11
|
+
= submit_tag t('shoppe.refund.refund'), :class => 'button green'
|
12
|
+
= link_to t('shoppe.close'), '#', :class => 'button grey', :rel => 'closeDialog'
|
13
|
+
|
@@ -0,0 +1,50 @@
|
|
1
|
+
= form_for @product_category do |f|
|
2
|
+
= f.error_messages
|
3
|
+
|
4
|
+
= field_set_tag t('shoppe.product_category.category_details') do
|
5
|
+
%dl
|
6
|
+
%dt= f.label :name, t('shoppe.product_category.name')
|
7
|
+
%dd= f.text_field :name, :class => 'focus text'
|
8
|
+
.splitContainer
|
9
|
+
%dl.half
|
10
|
+
%dt= f.label :permalink, t('shoppe.product_category.permalink')
|
11
|
+
%dd= f.text_field :permalink, :class => 'text'
|
12
|
+
%dl.half
|
13
|
+
%dt
|
14
|
+
%dd.checkbox
|
15
|
+
= f.check_box :permalink_includes_ancestors
|
16
|
+
= f.label :permalink_includes_ancestors, t('shoppe.product_category.permalink_includes_ancestors')
|
17
|
+
%dl.cleared
|
18
|
+
%dt= f.label :description, t('shoppe.product_category.description')
|
19
|
+
%dd= f.text_area :description, :class => 'text'
|
20
|
+
|
21
|
+
= field_set_tag t('shoppe.product_category.nesting.category_nesting') do
|
22
|
+
%dl
|
23
|
+
%dt= f.label :parent_id, t('shoppe.product_category.nesting.category_parent')
|
24
|
+
%dd= f.collection_select :parent_id, Shoppe::ProductCategory.except_descendants(@product_category).ordered, :id, :name, {:include_blank => t('shoppe.product_category.nesting.blank_option')}, {:class => 'chosen'}
|
25
|
+
%dl
|
26
|
+
%dt= f.label :child_ids, t('shoppe.product_category.nesting.hierarchy')
|
27
|
+
%dd
|
28
|
+
%table.categoryChildren
|
29
|
+
%tbody
|
30
|
+
- if @product_category.children.count == 0
|
31
|
+
%tr
|
32
|
+
%td
|
33
|
+
= t('shoppe.product_category.nesting.no_children')
|
34
|
+
- else
|
35
|
+
%tr
|
36
|
+
%td
|
37
|
+
= "#{@product_category.name} (#{t('shoppe.product_category.nesting.current_category')})"
|
38
|
+
= nested_product_category_rows(@product_category, current_category = @product_category, link_to_current = false, relative_depth = @product_category.depth)
|
39
|
+
|
40
|
+
= field_set_tag t('shoppe.product_category.attachments') do
|
41
|
+
%dl
|
42
|
+
%dt= f.label :image_file, t('shoppe.product_category.image')
|
43
|
+
%dd
|
44
|
+
= attachment_preview @product_category.image
|
45
|
+
%p= f.file_field :image_file
|
46
|
+
|
47
|
+
%p.submit
|
48
|
+
- unless @product_category.new_record?
|
49
|
+
%span.right= link_to t('shoppe.delete') , @product_category, :class => 'button purple', :method => :delete, :data => {:confirm => t('shoppe.product_category.delete_confirmation') }
|
50
|
+
= f.submit t('shoppe.submit'), :class => 'button green'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
- @page_title = t('shoppe.product_category.product_categories')
|
2
|
+
= content_for :header do
|
3
|
+
%p.buttons
|
4
|
+
= link_to t('shoppe.localisations.localisations') , [@product_category, :localisations], :class => 'button'
|
5
|
+
= link_to t('shoppe.product_category.back_to_categories'), :product_categories, :class => 'button'
|
6
|
+
%h2.products= t('shoppe.product_category.product_categories')
|
7
|
+
= render 'form'
|
8
|
+
|
@@ -0,0 +1,27 @@
|
|
1
|
+
- @page_title = t('shoppe.product_category.product_categories')
|
2
|
+
|
3
|
+
= content_for :header do
|
4
|
+
%p.buttons=link_to t('shoppe.product_category.new_category'), :new_product_category, :class => 'button green'
|
5
|
+
%h2.products= t('shoppe.product_category.product_categories')
|
6
|
+
|
7
|
+
.table
|
8
|
+
%table.data
|
9
|
+
%thead
|
10
|
+
%tr
|
11
|
+
%th= t('shoppe.product_category.name')
|
12
|
+
- I18n.available_locales.each do |i|
|
13
|
+
%th
|
14
|
+
%tbody
|
15
|
+
- if @product_categories_without_parent.empty?
|
16
|
+
%tr.empty
|
17
|
+
%td= t('shoppe.product_category.no_categories')
|
18
|
+
- else
|
19
|
+
- for cat in @product_categories_without_parent
|
20
|
+
%tr
|
21
|
+
%td= link_to cat.name, [:edit, cat]
|
22
|
+
- I18n.available_locales.each do |i|
|
23
|
+
- if cat.translations.where(locale: i).count >= 1
|
24
|
+
%td= link_to i, edit_product_category_localisation_path(cat, cat.translations.where(locale: i).first.id)
|
25
|
+
- else
|
26
|
+
%td= link_to i, new_product_category_localisation_path(cat, locale_field: i)
|
27
|
+
= nested_product_category_rows(cat)
|
@@ -0,0 +1,6 @@
|
|
1
|
+
- @page_title = t('shoppe.product_category.product_categories')
|
2
|
+
= content_for :header do
|
3
|
+
%p.buttons= link_to t('shoppe.product_category.back_to_categories'), :product_categories, :class => 'button'
|
4
|
+
%h2.products= t('shoppe.product_category.product_categories')
|
5
|
+
|
6
|
+
= render 'form'
|
@@ -0,0 +1,29 @@
|
|
1
|
+
- @page_title = "#{t('shoppe.localisations.localisations')} - #{@product_category.name}"
|
2
|
+
= content_for :header do
|
3
|
+
%p.buttons= link_to t('shoppe.localisations.back_to_localisations'), [@product_category, :localisations], :class => 'button'
|
4
|
+
%h2.products= t('shoppe.localisations.localisations_of', name: @product_category.name)
|
5
|
+
|
6
|
+
- loc = @localisation.new_record? ? :en : @localisation.locale.to_sym
|
7
|
+
- Globalize.with_locale(loc) do
|
8
|
+
= form_for [@product_category, @localisation], :url => @localisation.new_record? ? product_category_localisations_path(@product_category) : product_category_localisation_path(@product_category, @localisation), :html => {:multipart => true} do |f|
|
9
|
+
= f.error_messages
|
10
|
+
|
11
|
+
= field_set_tag t('shoppe.product_category.category_details') do
|
12
|
+
.splitContainer
|
13
|
+
%dl.half
|
14
|
+
%dt= f.label :name, t('shoppe.product_category.name')
|
15
|
+
%dd= f.text_field :name, :class => 'focus text'
|
16
|
+
%dl.half
|
17
|
+
%dt= f.label :locale
|
18
|
+
%dd= f.select :locale, I18n.available_locales, {selected: @localisation.locale || params[:locale_field]}, {class: "chosen"}
|
19
|
+
%dl
|
20
|
+
%dt= f.label :permalink, t('shoppe.product_category.permalink')
|
21
|
+
%dd= f.text_field :permalink, :class => 'text'
|
22
|
+
%dl.cleared
|
23
|
+
%dt= f.label :description, t('shoppe.product_category.description')
|
24
|
+
%dd= f.text_area :description, :class => 'text'
|
25
|
+
|
26
|
+
%p.submit
|
27
|
+
- unless @localisation.new_record?
|
28
|
+
%span.right= link_to t('shoppe.delete'), product_category_localisation_path(@product_category, @localisation), :class => 'button purple', :method => :delete, :data => {:confirm => t('shoppe.localisations.delete_confirmation')}
|
29
|
+
= f.submit t('shoppe.localisations.save_localisation'), :class => 'button green'
|
@@ -0,0 +1,26 @@
|
|
1
|
+
- @page_title = "#{t('shoppe.localisations.localisations')} - #{@product_category.name}"
|
2
|
+
|
3
|
+
= content_for :header do
|
4
|
+
%p.buttons
|
5
|
+
= link_to t('shoppe.localisations.back'), product_categories_path, :class => 'button'
|
6
|
+
= link_to t('shoppe.localisations.new_localisation'), [:new, @product_category, :localisation], :class => 'button green'
|
7
|
+
|
8
|
+
%h2.products= t('shoppe.localisations.localisations_of', name: @product_category.name)
|
9
|
+
|
10
|
+
.table
|
11
|
+
%table.data
|
12
|
+
%thead
|
13
|
+
%tr
|
14
|
+
%th{:width => '20%'}= t('shoppe.localisations.language')
|
15
|
+
%th{:width => '50%'}= t('shoppe.products.name')
|
16
|
+
%th{:width => '15%'}= t('shoppe.products.permalink')
|
17
|
+
%tbody
|
18
|
+
- if @localisations.empty?
|
19
|
+
%tr.empty
|
20
|
+
%td{:colspan => 4}= t('shoppe.localisations.no_localisations')
|
21
|
+
- else
|
22
|
+
- for localisation in @localisations
|
23
|
+
%tr
|
24
|
+
%td= localisation.locale
|
25
|
+
%td= link_to localisation.name, edit_product_category_localisation_path(@product_category, localisation)
|
26
|
+
%td= localisation.permalink
|
@@ -0,0 +1,32 @@
|
|
1
|
+
- @page_title = "#{t('shoppe.localisations.localisations')} - #{@product.name}"
|
2
|
+
= content_for :header do
|
3
|
+
%p.buttons= link_to t('shoppe.localisations.back_to_localisations'), [@product, :localisations], :class => 'button'
|
4
|
+
%h2.products= t('shoppe.localisations.localisations_of', name: @product.name)
|
5
|
+
|
6
|
+
- loc = @localisation.new_record? ? :en : @localisation.locale.to_sym
|
7
|
+
- Globalize.with_locale(loc) do
|
8
|
+
= form_for [@product, @localisation], :url => @localisation.new_record? ? product_localisations_path(@product) : product_localisation_path(@product, @localisation), :html => {:multipart => true} do |f|
|
9
|
+
= f.error_messages
|
10
|
+
|
11
|
+
= field_set_tag t('shoppe.product.category_details') do
|
12
|
+
.splitContainer
|
13
|
+
%dl.half
|
14
|
+
%dt= f.label :name, t('shoppe.product.name')
|
15
|
+
%dd= f.text_field :name, :class => 'focus text'
|
16
|
+
%dl.half
|
17
|
+
%dt= f.label :locale
|
18
|
+
%dd= f.select :locale, I18n.available_locales, {}, {class: "chosen"}
|
19
|
+
%dl
|
20
|
+
%dt= f.label :permalink, t('shoppe.product.permalink')
|
21
|
+
%dd= f.text_field :permalink, :class => 'text'
|
22
|
+
%dl.cleared
|
23
|
+
%dt= f.label :description, t('shoppe.product.description')
|
24
|
+
%dd= f.text_area :description, :class => 'text'
|
25
|
+
%dl.cleared
|
26
|
+
%dt= f.label :short_description, t('shoppe.product.short_description')
|
27
|
+
%dd= f.text_area :short_description, :class => 'text'
|
28
|
+
|
29
|
+
%p.submit
|
30
|
+
- unless @localisation.new_record?
|
31
|
+
%span.right= link_to t('shoppe.delete'), product_localisation_path(@product, @localisation), :class => 'button purple', :method => :delete, :data => {:confirm => t('shoppe.localisations.delete_confirmation')}
|
32
|
+
= f.submit t('shoppe.localisations.save_localisation'), :class => 'button green'
|
@@ -0,0 +1,26 @@
|
|
1
|
+
- @page_title = "#{t('shoppe.localisations.localisations')} - #{@product.name}"
|
2
|
+
|
3
|
+
= content_for :header do
|
4
|
+
%p.buttons
|
5
|
+
= link_to t('shoppe.localisations.back'), [:edit, @product], :class => 'button'
|
6
|
+
= link_to t('shoppe.localisations.new_localisation'), [:new, @product, :localisation], :class => 'button green'
|
7
|
+
|
8
|
+
%h2.products= t('shoppe.localisations.localisations_of', name: @product.name)
|
9
|
+
|
10
|
+
.table
|
11
|
+
%table.data
|
12
|
+
%thead
|
13
|
+
%tr
|
14
|
+
%th{:width => '20%'}= t('shoppe.localisations.language')
|
15
|
+
%th{:width => '50%'}= t('shoppe.products.name')
|
16
|
+
%th{:width => '15%'}= t('shoppe.products.permalink')
|
17
|
+
%tbody
|
18
|
+
- if @localisations.empty?
|
19
|
+
%tr.empty
|
20
|
+
%td{:colspan => 4}= t('shoppe.localisations.no_localisations')
|
21
|
+
- else
|
22
|
+
- for localisation in @localisations
|
23
|
+
%tr
|
24
|
+
%td= localisation.locale
|
25
|
+
%td= link_to localisation.name, edit_product_localisation_path(@product, localisation)
|
26
|
+
%td= localisation.permalink
|
@@ -0,0 +1,118 @@
|
|
1
|
+
= form_for @product, :html => {:multipart => true} do |f|
|
2
|
+
= f.error_messages
|
3
|
+
= field_set_tag t('shoppe.products.product_information') do
|
4
|
+
%dl
|
5
|
+
%dt= f.label :product_categories, t('shoppe.product_category.product_categories')
|
6
|
+
%dd= f.collection_select :product_category_ids, Shoppe::ProductCategory.ordered, :id, :name, {:prompt => false}, {:class => 'chosen', :multiple => true, :data => {:placeholder => t('shoppe.product_category.choose_product_category') }}
|
7
|
+
|
8
|
+
.splitContainer
|
9
|
+
%dl.third
|
10
|
+
%dt= f.label :name, t('shoppe.products.name')
|
11
|
+
%dd= f.text_field :name, :class => 'text focus'
|
12
|
+
%dl.third
|
13
|
+
%dt= f.label :permalink, t('shoppe.products.permalink')
|
14
|
+
%dd= f.text_field :permalink, :class => 'text'
|
15
|
+
%dl.third
|
16
|
+
%dt= f.label :sku, t('shoppe.products.sku')
|
17
|
+
%dd= f.text_field :sku, :class => 'text'
|
18
|
+
%dl
|
19
|
+
%dt= f.label :description, t('shoppe.products.description')
|
20
|
+
%dd= f.text_area :description, :class => 'text'
|
21
|
+
%dl
|
22
|
+
%dt= f.label :short_description, t('shoppe.products.short_description')
|
23
|
+
%dd= f.text_area :short_description, :class => 'text'
|
24
|
+
%dl
|
25
|
+
%dt= f.label :in_the_box, t('shoppe.products.in_the_box')
|
26
|
+
%dd= f.text_area :in_the_box, :class => 'text'
|
27
|
+
|
28
|
+
= field_set_tag t('shoppe.products.attributes') do
|
29
|
+
.margin
|
30
|
+
%table.productAttributes
|
31
|
+
%thead
|
32
|
+
%tr
|
33
|
+
%td= t('shoppe.products.name')
|
34
|
+
%td= t('shoppe.products.value')
|
35
|
+
%td.searchable= t('shoppe.products.searchable?')
|
36
|
+
%td.searchable= t('shoppe.products.public?')
|
37
|
+
%td.remove= t('shoppe.products.remove')
|
38
|
+
%td
|
39
|
+
%tbody
|
40
|
+
%tr.template{:style => 'display:none;'}
|
41
|
+
%td= text_field_tag 'product[product_attributes_array][][key]', '', :placeholder => t('shoppe.products.name')
|
42
|
+
%td= text_field_tag 'product[product_attributes_array][][value]', '', :placeholder => t('shoppe.products.value')
|
43
|
+
%td.searchable= check_box_tag 'product[product_attributes_array][][searchable]', '1'
|
44
|
+
%td.searchable= check_box_tag 'product[product_attributes_array][][public]', '1'
|
45
|
+
%td.remove= link_to t('shoppe.remove') , '#', :class => 'button button-mini purple'
|
46
|
+
%td.handle
|
47
|
+
- for attribute in @product.product_attributes
|
48
|
+
%tr
|
49
|
+
%td= text_field_tag 'product[product_attributes_array][][key]', attribute.key, :placeholder => t('shoppe.products.name')
|
50
|
+
%td= text_field_tag 'product[product_attributes_array][][value]', attribute.value, :placeholder => t('shoppe.products.value')
|
51
|
+
%td.searchable= check_box_tag 'product[product_attributes_array][][searchable]', '1', attribute.searchable?
|
52
|
+
%td.searchable= check_box_tag 'product[product_attributes_array][][public]', '1', attribute.public?
|
53
|
+
%td.remove= link_to t("shoppe.remove"), '#', :class => 'button button-mini purple'
|
54
|
+
%td.handle
|
55
|
+
%p.addAttribute= link_to t('shoppe.products.add_attribute') , '#', :data => {:behavior => 'addAttributeToAttributesTable'}, :class => 'button button-mini green'
|
56
|
+
|
57
|
+
= field_set_tag t('shoppe.products.attachments') do
|
58
|
+
.splitContainer
|
59
|
+
%dl.half
|
60
|
+
%dt= f.label :default_image_file, t('shoppe.products.default_image')
|
61
|
+
%dd
|
62
|
+
= attachment_preview @product.default_image
|
63
|
+
%p= f.file_field :default_image_file
|
64
|
+
%dl.half
|
65
|
+
%dt= f.label :data_sheet_file, t('shoppe.products.datasheet')
|
66
|
+
%dd
|
67
|
+
= attachment_preview @product.data_sheet
|
68
|
+
%p= f.file_field :data_sheet_file
|
69
|
+
|
70
|
+
- unless @product.has_variants?
|
71
|
+
= field_set_tag t('shoppe.products.pricing') do
|
72
|
+
.splitContainer
|
73
|
+
%dl.third
|
74
|
+
%dt= f.label :price, t('shoppe.products.price')
|
75
|
+
%dd
|
76
|
+
.moneyInput
|
77
|
+
.currency= Shoppe.settings.currency_unit.html_safe
|
78
|
+
= f.text_field :price, :class => 'text'
|
79
|
+
%dl.third
|
80
|
+
%dt= f.label :cost_price, t('shoppe.products.cost_price')
|
81
|
+
%dd
|
82
|
+
.moneyInput
|
83
|
+
.currency= Shoppe.settings.currency_unit.html_safe
|
84
|
+
= f.text_field :cost_price, :class => 'text'
|
85
|
+
%dl.third
|
86
|
+
%dt= f.label :tax_rate_id, t('shoppe.products.tax_rate')
|
87
|
+
%dd= f.collection_select :tax_rate_id, Shoppe::TaxRate.ordered, :id, :description, {:include_blank => true}, {:class => 'chosen-with-deselect', :data => {:placeholder => t('shoppe.products.no_tax')}}
|
88
|
+
|
89
|
+
= field_set_tag t('shoppe.products.stock_control') do
|
90
|
+
.splitContainer
|
91
|
+
%dl.half
|
92
|
+
%dt= f.label :weight, t('shoppe.products.weight')
|
93
|
+
%dd= f.text_field :weight, :class => 'text'
|
94
|
+
|
95
|
+
%dl.half
|
96
|
+
%dt= f.label :stock_control, t('shoppe.products.stock_control')
|
97
|
+
%dd.checkbox
|
98
|
+
= f.check_box :stock_control
|
99
|
+
= f.label :stock_control, t('shoppe.products.enable_stock_control?')
|
100
|
+
|
101
|
+
= field_set_tag t('shoppe.products.website_properties') do
|
102
|
+
.splitContainer
|
103
|
+
%dl.half
|
104
|
+
%dt= f.label :active, t('shoppe.products.on_sale?')
|
105
|
+
%dd.checkbox
|
106
|
+
= f.check_box :active
|
107
|
+
= f.label :active, t('shoppe.products.on_sale_info')
|
108
|
+
%dl.half
|
109
|
+
%dt= f.label :featured, t('shoppe.products.featured?')
|
110
|
+
%dd.checkbox
|
111
|
+
= f.check_box :featured
|
112
|
+
= f.label :featured, t('shoppe.products.featured_info')
|
113
|
+
|
114
|
+
%p.submit
|
115
|
+
- unless @product.new_record?
|
116
|
+
%span.right= link_to t('shoppe.delete') , @product, :class => 'button purple', :method => :delete, :data => {:confirm => "Are you sure you wish to remove this product?"}
|
117
|
+
= f.submit t('shoppe.submit'), :class => 'button green'
|
118
|
+
= link_to t('shoppe.cancel'), :products, :class => 'button'
|