nimbleshop_core 0.0.1.rc1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +13 -0
- data/Rakefile +15 -0
- data/app/assets/images/engines/nimbleshop_authorizedotnet/american_express.png +0 -0
- data/app/assets/images/engines/nimbleshop_authorizedotnet/authorize_net_big.png +0 -0
- data/app/assets/images/engines/nimbleshop_authorizedotnet/authorizedotnet_big.png +0 -0
- data/app/assets/images/engines/nimbleshop_authorizedotnet/discover.png +0 -0
- data/app/assets/images/engines/nimbleshop_authorizedotnet/mastercard.png +0 -0
- data/app/assets/images/engines/nimbleshop_authorizedotnet/visa.png +0 -0
- data/app/assets/images/engines/nimbleshop_cod/cod_small.png +0 -0
- data/app/assets/images/engines/nimbleshop_paypalwp/paypal_big.png +0 -0
- data/app/assets/images/engines/nimbleshop_paypalwp/paypal_small.png +0 -0
- data/app/assets/images/engines/nimbleshop_splitable/splitable.png +0 -0
- data/app/assets/images/engines/nimbleshop_splitable/splitable_big.png +0 -0
- data/app/assets/images/engines/nimbleshop_splitable/splitable_small.png +0 -0
- data/app/assets/javascripts/admin/products/edit.js.coffee +19 -0
- data/app/assets/javascripts/admin/shipping_methods/edit.js.coffee +6 -0
- data/app/assets/javascripts/admin.js +25 -0
- data/app/assets/javascripts/fadeout_success.js.coffee +2 -0
- data/app/assets/javascripts/payment_method.js.coffee +19 -0
- data/app/assets/javascripts/product-group-condition.js.coffee +33 -0
- data/app/assets/javascripts/remove_deletion_of_product_pictures.js.coffee +5 -0
- data/app/assets/javascripts/shipit.js.coffee +10 -0
- data/app/assets/javascripts/twitter_bootstrap.js.coffee +4 -0
- data/app/assets/stylesheets/admin.css +9 -0
- data/app/assets/stylesheets/admin_bootstrap_and_overrides.css.less +38 -0
- data/app/assets/stylesheets/admin_custom.css +104 -0
- data/app/assets/twitter/bootstrap/glyphicons-halflings-white.png +0 -0
- data/app/assets/twitter/bootstrap/glyphicons-halflings.png +0 -0
- data/app/controllers/admin/custom_fields_controller.rb +56 -0
- data/app/controllers/admin/link_groups_controller.rb +76 -0
- data/app/controllers/admin/main_controller.rb +9 -0
- data/app/controllers/admin/navigations_controller.rb +49 -0
- data/app/controllers/admin/orders_controller.rb +47 -0
- data/app/controllers/admin/payment_methods_controller.rb +26 -0
- data/app/controllers/admin/product_groups_controller.rb +70 -0
- data/app/controllers/admin/products_controller.rb +71 -0
- data/app/controllers/admin/shipments_controller.rb +19 -0
- data/app/controllers/admin/shipping_methods_controller.rb +93 -0
- data/app/controllers/admin/shipping_zones_controller.rb +62 -0
- data/app/controllers/admin/shops_controller.rb +33 -0
- data/app/controllers/admin_controller.rb +38 -0
- data/app/helpers/admin_helper.rb +83 -0
- data/app/helpers/nimbleshop_helper.rb +43 -0
- data/app/helpers/payment_method_helper.rb +52 -0
- data/app/mailers/admin_mailer.rb +22 -0
- data/app/mailers/mailer.rb +31 -0
- data/app/models/address.rb +69 -0
- data/app/models/country_shipping_zone.rb +36 -0
- data/app/models/creditcard.rb +95 -0
- data/app/models/custom_field.rb +8 -0
- data/app/models/custom_field_answer/field.rb +101 -0
- data/app/models/custom_field_answer.rb +17 -0
- data/app/models/line_item.rb +48 -0
- data/app/models/link.rb +3 -0
- data/app/models/link_group.rb +8 -0
- data/app/models/navigation.rb +7 -0
- data/app/models/order.rb +158 -0
- data/app/models/payment_method.rb +20 -0
- data/app/models/payment_transaction.rb +11 -0
- data/app/models/picture.rb +30 -0
- data/app/models/product.rb +76 -0
- data/app/models/product_group.rb +65 -0
- data/app/models/product_group_condition.rb +8 -0
- data/app/models/regional_shipping_zone.rb +25 -0
- data/app/models/shipment.rb +19 -0
- data/app/models/shipment_carrier.rb +3 -0
- data/app/models/shipping_cost_calculator.rb +9 -0
- data/app/models/shipping_method.rb +103 -0
- data/app/models/shipping_zone.rb +9 -0
- data/app/models/shop.rb +26 -0
- data/app/models/tax_calculator.rb +18 -0
- data/app/observers/order_observer.rb +53 -0
- data/app/uploaders/picture_uploader.rb +65 -0
- data/app/views/admin/custom_fields/_form.html.erb +45 -0
- data/app/views/admin/custom_fields/edit.html.erb +7 -0
- data/app/views/admin/custom_fields/index.html.erb +31 -0
- data/app/views/admin/custom_fields/new.html.erb +7 -0
- data/app/views/admin/link_groups/_form.html.erb +31 -0
- data/app/views/admin/link_groups/_link_group.html.erb +50 -0
- data/app/views/admin/link_groups/_link_group_title.html.erb +5 -0
- data/app/views/admin/link_groups/edit.html.erb +8 -0
- data/app/views/admin/link_groups/index.html.erb +29 -0
- data/app/views/admin/link_groups/new.html.erb +9 -0
- data/app/views/admin/mailer/new_order_notification.text.erb +31 -0
- data/app/views/admin/main/index.html.erb +5 -0
- data/app/views/admin/navigations/new.html.erb +29 -0
- data/app/views/admin/orders/_line_item.html.erb +11 -0
- data/app/views/admin/orders/_line_items.html.erb +39 -0
- data/app/views/admin/orders/_payment_info.html.erb +20 -0
- data/app/views/admin/orders/_shipping_info.html.erb +40 -0
- data/app/views/admin/orders/index.html.erb +33 -0
- data/app/views/admin/orders/show.html.erb +40 -0
- data/app/views/admin/payment_methods/index.html.erb +6 -0
- data/app/views/admin/product_groups/_condition.html.mustache +20 -0
- data/app/views/admin/product_groups/_form.html.erb +72 -0
- data/app/views/admin/product_groups/edit.html.erb +7 -0
- data/app/views/admin/product_groups/index.html.erb +30 -0
- data/app/views/admin/product_groups/new.html.erb +7 -0
- data/app/views/admin/product_groups/show.html.erb +9 -0
- data/app/views/admin/products/_custom_field_answer.html.erb +9 -0
- data/app/views/admin/products/_form.html.erb +69 -0
- data/app/views/admin/products/_handle_pictures.html.erb +32 -0
- data/app/views/admin/products/_pictures.html.erb +33 -0
- data/app/views/admin/products/edit.html.erb +26 -0
- data/app/views/admin/products/index.html.erb +34 -0
- data/app/views/admin/products/new.html.erb +9 -0
- data/app/views/admin/shipping_methods/_form.html.erb +58 -0
- data/app/views/admin/shipping_methods/_shipping_method.html.erb +31 -0
- data/app/views/admin/shipping_methods/edit.html.erb +18 -0
- data/app/views/admin/shipping_methods/new.html.erb +7 -0
- data/app/views/admin/shipping_zones/_form.html.erb +31 -0
- data/app/views/admin/shipping_zones/_shipping_method.html.erb +13 -0
- data/app/views/admin/shipping_zones/_shipping_zone.html.erb +47 -0
- data/app/views/admin/shipping_zones/edit.html.erb +8 -0
- data/app/views/admin/shipping_zones/index.html.erb +16 -0
- data/app/views/admin/shipping_zones/new.html.erb +8 -0
- data/app/views/admin/shops/edit.html.erb +119 -0
- data/app/views/layouts/_admin_footer.html.erb +23 -0
- data/app/views/layouts/_admin_sidebar.html.erb +0 -0
- data/app/views/layouts/_container.html.erb +33 -0
- data/app/views/layouts/_top_nav_bar.html.erb +30 -0
- data/app/views/layouts/admin.html.erb +35 -0
- data/app/views/layouts/payment_method.html.erb +12 -0
- data/app/views/mailer/order_notification_to_buyer.text.erb +31 -0
- data/app/views/mailer/shipment_notification_to_buyer.text.erb +34 -0
- data/config/initializers/001_settings_application.rb +10 -0
- data/config/initializers/002_load_core_extensions.rb +8 -0
- data/config/initializers/field_with_error.rb +2 -0
- data/config/initializers/strip_and_nullify.rb +13 -0
- data/config/initializers/time_formats.rb +1 -0
- data/config/locales/en.yml +61 -0
- data/config/routes.rb +56 -0
- data/db/development.sqlite3 +0 -0
- data/db/migrate/20111022144421_create_product_groups.rb +12 -0
- data/db/migrate/20111022144426_create_products.rb +16 -0
- data/db/migrate/20111022144653_create_orders.rb +21 -0
- data/db/migrate/20111022144725_create_line_items.rb +15 -0
- data/db/migrate/20111022234951_create_shops.rb +20 -0
- data/db/migrate/20111026193227_create_link_groups.rb +12 -0
- data/db/migrate/20111026193435_create_navigations.rb +10 -0
- data/db/migrate/20111031135810_create_links.rb +10 -0
- data/db/migrate/20111106193938_create_custom_fields.rb +10 -0
- data/db/migrate/20111106195112_create_custom_field_answers.rb +14 -0
- data/db/migrate/20111106201548_create_product_group_conditions.rb +12 -0
- data/db/migrate/20111107035350_create_creditcard_transactions.rb +15 -0
- data/db/migrate/20111109190754_create_addresses.rb +24 -0
- data/db/migrate/20111125173344_create_pictures.rb +16 -0
- data/db/migrate/20111201024408_create_shipping_methods.rb +16 -0
- data/db/migrate/20111202143154_create_shipping_zones.rb +17 -0
- data/db/migrate/20111203034020_create_payment_methods.rb +14 -0
- data/db/migrate/20111221190000_create_preferences.rb +14 -0
- data/db/migrate/20120105234047_create_shipments.rb +11 -0
- data/db/migrate/20120105234553_create_shipment_carriers.rb +11 -0
- data/db/migrate/20120606165355_create_delayed_jobs.rb +22 -0
- data/db/production.sqlite3 +0 -0
- data/db/schema.rb +265 -0
- data/db/seeds.rb +1 -0
- data/db/test.sqlite3 +0 -0
- data/lib/assets/javascripts/loading_state_for_buttons.js.coffee +3 -0
- data/lib/assets/javascripts/show_help_on_hover.js.coffee +2 -0
- data/lib/assets/javascripts/utils/autoresize.js.coffee +3 -0
- data/lib/assets/javascripts/utils/focus.js.coffee +3 -0
- data/lib/assets/javascripts/utils/formatNumber.js.coffee +25 -0
- data/lib/assets/javascripts/utils/formatPrice.js.coffee +24 -0
- data/lib/generators/nimbleshop/app/app_generator.rb +84 -0
- data/lib/generators/nimbleshop/app/templates/config/application.yml +61 -0
- data/lib/generators/nimbleshop/app/templates/config/initializers/airbrake.rb +3 -0
- data/lib/generators/nimbleshop/app/templates/config/initializers/cache_images.rb +4 -0
- data/lib/generators/nimbleshop/app/templates/config/initializers/carrierwave.rb +36 -0
- data/lib/generators/nimbleshop/app/templates/config/initializers/delayed_job.rb +15 -0
- data/lib/generators/nimbleshop/app/templates/config/initializers/setup_email.rb +24 -0
- data/lib/nimbleshop/core_ext/activerecord_base.rb +18 -0
- data/lib/nimbleshop/core_ext/filelessio.rb +4 -0
- data/lib/nimbleshop/core_ext/force_ssl.rb +26 -0
- data/lib/nimbleshop/core_ext/mustache_templater_handler.rb +10 -0
- data/lib/nimbleshop/engine.rb +23 -0
- data/lib/nimbleshop/permalink/builder.rb +46 -0
- data/lib/nimbleshop/processor/base.rb +51 -0
- data/lib/nimbleshop/processor.rb +3 -0
- data/lib/nimbleshop/product_group_search/base_field.rb +19 -0
- data/lib/nimbleshop/product_group_search/core_field_strategy.rb +31 -0
- data/lib/nimbleshop/product_group_search/custom_field_strategy.rb +39 -0
- data/lib/nimbleshop/product_group_search/date_field.rb +16 -0
- data/lib/nimbleshop/product_group_search/extension.rb +46 -0
- data/lib/nimbleshop/product_group_search/number_field.rb +17 -0
- data/lib/nimbleshop/product_group_search/text_field.rb +33 -0
- data/lib/nimbleshop/product_group_search.rb +74 -0
- data/lib/nimbleshop/sampledata/data.rb +246 -0
- data/lib/nimbleshop/sampledata/pictures/product1/pic1.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product2/pic1.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product2/pic2.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product3/pic1.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product3/pic2.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product3/pic3.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product3/pic4.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product3/pic5.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product4/pic1.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product4/pic2.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product5/pic1.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product5/pic2.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product6/pic1.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product6/pic10.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product6/pic11.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product6/pic12.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product6/pic13.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product6/pic14.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product6/pic15.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product6/pic16.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product6/pic17.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product6/pic2.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product6/pic3.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product6/pic4.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product6/pic5.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product6/pic6.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product6/pic7.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product6/pic8.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product6/pic9.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product7/pic1.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product7/pic2.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product7/pic3.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product8/pic1.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product8/pic2.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product8/pic3.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product8/pic4.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product8/pic5.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product8/pic6.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product8/pic7.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product8/pic8.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product9/pic1.jpg +0 -0
- data/lib/nimbleshop/sampledata/pictures/product9/pic2.jpg +0 -0
- data/lib/nimbleshop/util.rb +60 -0
- data/lib/nimbleshop/version.rb +18 -0
- data/lib/nimbleshop_core.rb +23 -0
- data/lib/tasks/localhost2public.rake +8 -0
- data/lib/tasks/setup.rake +26 -0
- data/test/factories/address_factory.rb +31 -0
- data/test/factories/creditcard_factory.rb +30 -0
- data/test/factories/custom_field_answer_factory.rb +6 -0
- data/test/factories/custom_field_factory.rb +21 -0
- data/test/factories/line_item_factory.rb +7 -0
- data/test/factories/link_factory.rb +6 -0
- data/test/factories/link_group_factory.rb +5 -0
- data/test/factories/navigation_factory.rb +6 -0
- data/test/factories/order_factory.rb +49 -0
- data/test/factories/payment_method_factory.rb +6 -0
- data/test/factories/payment_transaction_factory.rb +42 -0
- data/test/factories/picture_factory.rb +11 -0
- data/test/factories/product_group_condition_factory.rb +40 -0
- data/test/factories/product_group_factory.rb +5 -0
- data/test/factories/products_factory.rb +11 -0
- data/test/factories/shipment_carrier_factory.rb +6 -0
- data/test/factories/shipment_factory.rb +6 -0
- data/test/factories/shipping_method_factory.rb +15 -0
- data/test/factories/shipping_zone_factory.rb +5 -0
- data/test/factories/shop_factory.rb +8 -0
- data/test/fixtures/files/avatar.png +0 -0
- data/test/fixtures/link_groups.yml +13 -0
- data/test/fixtures/payment_methods.yml +39 -0
- data/test/fixtures/shops.yml +15 -0
- data/test/helpers/admin_helper_test.rb +37 -0
- data/test/helpers/nimbleshop_helper_test.rb +17 -0
- data/test/integration/admin/link_groups_acceptance_test.rb +39 -0
- data/test/integration/admin/orders_acceptance_test.rb +63 -0
- data/test/integration/admin/payment_methods_acceptance_test.rb +13 -0
- data/test/integration/admin/product_groups_acceptance_test.rb +89 -0
- data/test/integration/admin/products_acceptance_test.rb +105 -0
- data/test/integration/admin/shipping_methods_acceptance_test.rb +63 -0
- data/test/integration/admin/shipping_zones_acceptance_test.rb +16 -0
- data/test/integration/admin/shops_acceptance_test.rb +44 -0
- data/test/integration/checkout/cart_acceptance_test.rb +113 -0
- data/test/integration/checkout/payment_confirmation_acceptance_test.rb +24 -0
- data/test/integration/checkout/paypal_acceptance_test.rb +34 -0
- data/test/integration/checkout/shipping_address_acceptance_test.rb +91 -0
- data/test/integration/checkout/shipping_method_acceptance_test.rb +51 -0
- data/test/integration/homepage_acceptance_test.rb +24 -0
- data/test/integration/products_acceptance_test.rb +12 -0
- data/test/integration/static_pages_acceptance_test.rb +13 -0
- data/test/mailers/mailer_test.rb +25 -0
- data/test/rails_app/Gemfile +27 -0
- data/test/rails_app/Gemfile.lock +218 -0
- data/test/rails_app/Rakefile +10 -0
- data/test/rails_app/app/controllers/application_controller.rb +6 -0
- data/test/rails_app/app/helpers/application_helper.rb +3 -0
- data/test/rails_app/app/views/layouts/application.html.erb +10 -0
- data/test/rails_app/config/application.rb +25 -0
- data/test/rails_app/config/application.yml +61 -0
- data/test/rails_app/config/boot.rb +5 -0
- data/test/rails_app/config/database.yml +18 -0
- data/test/rails_app/config/environment.rb +5 -0
- data/test/rails_app/config/environments/development.rb +18 -0
- data/test/rails_app/config/environments/production.rb +33 -0
- data/test/rails_app/config/environments/test.rb +33 -0
- data/test/rails_app/config/initializers/backtrace_silencers.rb +7 -0
- data/test/rails_app/config/initializers/inflections.rb +2 -0
- data/test/rails_app/config/initializers/secret_token.rb +2 -0
- data/test/rails_app/config/routes.rb +10 -0
- data/test/rails_app/config.ru +4 -0
- data/test/rails_app/db/development.sqlite3 +0 -0
- data/test/rails_app/db/migrate/20100401102949_create_tables.rb +74 -0
- data/test/rails_app/db/schema.rb +52 -0
- data/test/rails_app/log/development.log +94 -0
- data/test/rails_app/log/test.log +0 -0
- data/test/rails_app/public/404.html +26 -0
- data/test/rails_app/public/422.html +26 -0
- data/test/rails_app/public/500.html +26 -0
- data/test/rails_app/public/favicon.ico +0 -0
- data/test/rails_app/script/rails +10 -0
- data/test/support/address_test_helper.rb +24 -0
- data/test/support/checkout_test_helper.rb +40 -0
- data/test/support/dbify_sql_helper.rb +12 -0
- data/test/support/images/cookware.jpg +0 -0
- data/test/support/must_be_like.rb +24 -0
- data/test/support/shipping_method_test_helper.rb +5 -0
- data/test/support/wait_for_ajax.rb +4 -0
- data/test/test_helper.rb +65 -0
- data/test/unit/address_test.rb +33 -0
- data/test/unit/country_shipping_zone_test.rb +17 -0
- data/test/unit/creditcard_test.rb +33 -0
- data/test/unit/custom_field_answer/field_test.rb +93 -0
- data/test/unit/order_test.rb +70 -0
- data/test/unit/payment_method/authorizedotnet_test.rb +21 -0
- data/test/unit/payment_method/paypalwp_test.rb +17 -0
- data/test/unit/payment_method/splitable_test.rb +18 -0
- data/test/unit/picture_test.rb +24 -0
- data/test/unit/processor/authorize_net_test.rb +236 -0
- data/test/unit/processor/paypal_test.rb +40 -0
- data/test/unit/processor/splitable_test.rb +123 -0
- data/test/unit/product_group_condition_test.rb +188 -0
- data/test/unit/product_group_test.rb +109 -0
- data/test/unit/product_test.rb +60 -0
- data/test/unit/shipping_cost_calculator_test.rb +19 -0
- data/test/unit/shipping_method_test.rb +197 -0
- data/test/unit/shop_test.rb +11 -0
- data/test/unit/tax_calculator_test.rb +13 -0
- data/test/vcr_cassettes/authorize_net/authorize-failure.yml +38 -0
- data/test/vcr_cassettes/authorize_net/authorize-success.yml +38 -0
- data/test/vcr_cassettes/authorize_net/capture-failure.yml +38 -0
- data/test/vcr_cassettes/authorize_net/capture-success.yml +38 -0
- data/test/vcr_cassettes/authorize_net/purchase-failure.yml +38 -0
- data/test/vcr_cassettes/authorize_net/purchase-success.yml +38 -0
- data/test/vcr_cassettes/authorize_net/refund-failure.yml +38 -0
- data/test/vcr_cassettes/authorize_net/refund-success.yml +38 -0
- data/test/vcr_cassettes/authorize_net/void-authorize.yml +38 -0
- data/test/vcr_cassettes/authorize_net/void-failure.yml +38 -0
- data/test/vcr_cassettes/authorize_net/void-success.yml +38 -0
- data/test/vcr_cassettes/splitable/split-create-failure.yml +48 -0
- data/test/vcr_cassettes/splitable/split-create-success.yml +50 -0
- data/test/vcr_cassettes/splitable/split-draft-create-failure.yml +50 -0
- data/test/vcr_cassettes/splitable/split-draft-create-success.yml +50 -0
- data/vendor/assets/javascripts/accounting.js +406 -0
- data/vendor/assets/javascripts/autoresize.js +275 -0
- data/vendor/assets/javascripts/jquery-1.7.1.js +9267 -0
- data/vendor/assets/javascripts/jquery-form.js +980 -0
- data/vendor/assets/javascripts/jquery-json.js +193 -0
- data/vendor/assets/javascripts/jquery-ui-1.8.16.js +11768 -0
- data/vendor/assets/javascripts/jquery-ujs.js +374 -0
- data/vendor/assets/javascripts/mustache.js +436 -0
- data/vendor/assets/javascripts/nested_form.js +51 -0
- metadata +740 -0
@@ -0,0 +1,39 @@
|
|
1
|
+
<div class='row'>
|
2
|
+
<div class='span10 well'>
|
3
|
+
<table class='table table-striped'>
|
4
|
+
<thead>
|
5
|
+
<tr>
|
6
|
+
<th colspan="2" class="start">Description</th>
|
7
|
+
<th>Price</th>
|
8
|
+
<th>Quantity</th>
|
9
|
+
<th>Total</th>
|
10
|
+
</tr>
|
11
|
+
</thead>
|
12
|
+
<tbody>
|
13
|
+
<% @order.line_items.each do |line_item| %>
|
14
|
+
<%= render 'line_item', line_item: line_item %>
|
15
|
+
<% end %>
|
16
|
+
|
17
|
+
<% if @order.shipping_method %>
|
18
|
+
<tr>
|
19
|
+
<td> </td>
|
20
|
+
<td>
|
21
|
+
Shippping
|
22
|
+
</td>
|
23
|
+
<td> <%= number_to_currency(@order.shipping_method.shipping_cost) %> </td>
|
24
|
+
<td> </td>
|
25
|
+
<td><%= number_to_currency(@order.shipping_method.shipping_cost) %> </td>
|
26
|
+
</tr>
|
27
|
+
<% end %>
|
28
|
+
|
29
|
+
<tr>
|
30
|
+
<td> </td>
|
31
|
+
<td>Total</td>
|
32
|
+
<td> </td>
|
33
|
+
<td> </td>
|
34
|
+
<td> <strong> <%= number_to_currency(@order.total_amount) %> </strong> </td>
|
35
|
+
</tr>
|
36
|
+
</tbody>
|
37
|
+
</table>
|
38
|
+
</div>
|
39
|
+
</div>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<div class='span5'>
|
2
|
+
<h2> Payment status <%= display_payment_status(@order) %> </h2>
|
3
|
+
|
4
|
+
<%= next_payment_processing_action(@order) %>
|
5
|
+
|
6
|
+
<% if @order.payment_method %>
|
7
|
+
<p>
|
8
|
+
Payment method: <%= @order.payment_method.name %> <br />
|
9
|
+
<%= order_show_extra_info(@order) %>
|
10
|
+
</p>
|
11
|
+
<% end %>
|
12
|
+
|
13
|
+
<% if @order.final_billing_address.present? %>
|
14
|
+
<h4> Billing address</h4>
|
15
|
+
<p>
|
16
|
+
<address> <%= display_address(@order.final_billing_address) %> </address>
|
17
|
+
</p>
|
18
|
+
<% end %>
|
19
|
+
|
20
|
+
</div>
|
@@ -0,0 +1,40 @@
|
|
1
|
+
<div class='span5'>
|
2
|
+
<h2> Shipping status <%= display_shipping_status(@order) %> </h2>
|
3
|
+
|
4
|
+
<p>
|
5
|
+
<strong> Shipping method: </strong> <%= @order.shipping_method.name %>
|
6
|
+
</p>
|
7
|
+
|
8
|
+
<div class='shipment_tracking_info'>
|
9
|
+
|
10
|
+
<% if @order.shipping_pending? %>
|
11
|
+
<%= link_to 'Ship items', '#', class: 'btn btn-success ship-items-link' %>
|
12
|
+
<% elsif @order.shipped? %>
|
13
|
+
<p>
|
14
|
+
Shipped on <%= @shipment.created_at.to_s(:long) %> <br/>
|
15
|
+
via <%= shipment_info(@shipment) %>
|
16
|
+
</p>
|
17
|
+
<% end %>
|
18
|
+
|
19
|
+
<div id='ship_items_action_box' style='display:none;'>
|
20
|
+
<%= form_for([:admin, @order, @shipment], html: {class: 'well form-inline'}) do |f| %>
|
21
|
+
<p>
|
22
|
+
<%= f.select :shipment_carrier_id, ShipmentCarrier.all.collect {|p| [p.name, p.id] }, {}, class: 'span2' %>
|
23
|
+
<%= f.text_field :tracking_number, class: 'input-medium', placeholder: 'Tracking number' %>
|
24
|
+
<label class='checkbox'> <%= f.check_box :notify_customer %> Notify customer </label>
|
25
|
+
</p>
|
26
|
+
<p>
|
27
|
+
<%= f.submit 'Submit', class: 'btn btn-primary' %>
|
28
|
+
<%= link_to 'Cancel', '#', id: 'ship_items_cancel' %>
|
29
|
+
</p>
|
30
|
+
<% end %>
|
31
|
+
</div>
|
32
|
+
|
33
|
+
<% if @order.shipping_address.present? %>
|
34
|
+
<h4>Shipping address</h4>
|
35
|
+
<p>
|
36
|
+
<%= @order.shipping_address.full_address_array.join('<br />').html_safe %>
|
37
|
+
</p>
|
38
|
+
<% end %>
|
39
|
+
</div>
|
40
|
+
</div>
|
@@ -0,0 +1,33 @@
|
|
1
|
+
<% page_title 'orders' %>
|
2
|
+
|
3
|
+
<div class='page-header'>
|
4
|
+
<h1 class='ns-page-title'><%= t(:orders) %></h1>
|
5
|
+
<div class='clear'></div>
|
6
|
+
</div>
|
7
|
+
|
8
|
+
<table class="table">
|
9
|
+
<thead>
|
10
|
+
<tr>
|
11
|
+
<th>Order number</th>
|
12
|
+
<th>Amount</th>
|
13
|
+
<th>Payment Status</th>
|
14
|
+
<th>Ordered at</th>
|
15
|
+
<th>Shipped at</th>
|
16
|
+
</tr>
|
17
|
+
</thead>
|
18
|
+
<tbody>
|
19
|
+
<% @orders.each do |order| %>
|
20
|
+
<tr>
|
21
|
+
<td> <%= link_to order.number, admin_order_path(order) %> </td>
|
22
|
+
<td> <%= number_to_currency(order.total_amount) %> </td>
|
23
|
+
<td>
|
24
|
+
<%= display_payment_status(order) %>
|
25
|
+
|
26
|
+
<%= icon_for_order_payment(order) %>
|
27
|
+
</td>
|
28
|
+
<td><%= order.created_at.to_s(:long) %></td>
|
29
|
+
<td><%= display_shipping_status(order) %></td>
|
30
|
+
</tr>
|
31
|
+
<% end %>
|
32
|
+
</tbody>
|
33
|
+
</table>
|
@@ -0,0 +1,40 @@
|
|
1
|
+
<% page_title "order ##{@order.number}" %>
|
2
|
+
|
3
|
+
<div class='row'>
|
4
|
+
<div class='span10'>
|
5
|
+
<div class='ns-page-title'>
|
6
|
+
<h1>
|
7
|
+
Order #<%= @order.number %>
|
8
|
+
</h1>
|
9
|
+
</div>
|
10
|
+
|
11
|
+
<div class='new-action'>
|
12
|
+
<div style='float:left;'> <%= gravatar_for(@order.email) %> </div>
|
13
|
+
|
14
|
+
<div style='float:right;margin-left: 7px;'>
|
15
|
+
<h4><%= @order.final_billing_address.try(:name) %></h4>
|
16
|
+
<div><i class="icon-envelope"></i> <%= @order.email %></div>
|
17
|
+
<%= link_to '', '#' %>
|
18
|
+
</div>
|
19
|
+
|
20
|
+
<div style='clear:both;'></div>
|
21
|
+
</div>
|
22
|
+
</div>
|
23
|
+
</div>
|
24
|
+
|
25
|
+
<hr />
|
26
|
+
|
27
|
+
<div class='row'>
|
28
|
+
<%= render 'payment_info' %>
|
29
|
+
|
30
|
+
<% if @order.shipping_method %>
|
31
|
+
<%= render 'shipping_info' %>
|
32
|
+
<% end %>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
|
36
|
+
<% if @order.line_items.any? %>
|
37
|
+
<%= render 'line_items' %>
|
38
|
+
<% else %>
|
39
|
+
This order has no line items.
|
40
|
+
<% end %>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<div class="input condition" data-index="{{index}}">
|
2
|
+
<select name="product_group[product_group_conditions_attributes][{{index}}][name]" id="product_group_product_group_conditions_attributes_{{index}}_name" class="field">
|
3
|
+
{{#fields}}
|
4
|
+
<option value="{{id}}">{{name}}</option>
|
5
|
+
{{/fields}}
|
6
|
+
</select>
|
7
|
+
|
8
|
+
<select name="product_group[product_group_conditions_attributes][{{index}}][operator]" id="product_group_product_group_conditions_attributes_{{index}}_operator" class="operator">
|
9
|
+
{{#operators.text}}
|
10
|
+
<option value="{{value}}">{{name}}</option>
|
11
|
+
{{/operators.text}}
|
12
|
+
</select>
|
13
|
+
|
14
|
+
<input type="text" size="30" name="product_group[product_group_conditions_attributes][{{index}}][value]" id="product_group_product_group_conditions_attributes_{{index}}_value" class="value">
|
15
|
+
|
16
|
+
<a href='#' class='remove-condition btn'>
|
17
|
+
<i class='icon-remove icon-white'></i>
|
18
|
+
</a>
|
19
|
+
|
20
|
+
</div>
|
@@ -0,0 +1,72 @@
|
|
1
|
+
<div class='well'>
|
2
|
+
<%= form_for([:admin, @product_group], html: { id: 'product-group-edit-form', class: 'form-horizontal' }) do |f| %>
|
3
|
+
|
4
|
+
<% if @product_group.errors.any? %>
|
5
|
+
<div class="alert alert-error">
|
6
|
+
<p> <%= t(:error_bang) %> </p>
|
7
|
+
<ul>
|
8
|
+
<% @product_group.errors.full_messages.each do |message| %>
|
9
|
+
<li><%= message %></li>
|
10
|
+
<% end %>
|
11
|
+
</ul>
|
12
|
+
</div>
|
13
|
+
<% end %>
|
14
|
+
|
15
|
+
<fieldset>
|
16
|
+
<div class="control-group">
|
17
|
+
<%= f.label :name, 'Product group name', class: 'control-label' %>
|
18
|
+
<div class="controls">
|
19
|
+
<%= f.text_field :name, class: 'input-xlarge focus' %>
|
20
|
+
</div>
|
21
|
+
</div>
|
22
|
+
|
23
|
+
<div class="clearfix">
|
24
|
+
<div id ="product-group-condition-klass" data-fields="<%= ProductGroup.fields.to_json %>" data-operators="<%= ProductGroup.operators.to_json %>">
|
25
|
+
</div>
|
26
|
+
<% @product_group.product_group_conditions.each_with_index do | condition, index | %>
|
27
|
+
<div class="input condition" data-index="<%= index %>">
|
28
|
+
<%= f.fields_for :product_group_conditions, condition do | condition_field | %>
|
29
|
+
<% unless condition.marked_for_destruction? %>
|
30
|
+
<%= condition_field.select :name, ProductGroup.fields.map { |t| t.values_at("name", "id") }, {}, {class: 'field'} %>
|
31
|
+
<%= condition_field.select :operator, ProductGroup.operators[condition_field.object.field_type.to_sym].map { |t| t.values_at(:name, :value) }, {}, class: 'operator' %>
|
32
|
+
<%= condition_field.text_field :value, class: 'value' %>
|
33
|
+
<% end %>
|
34
|
+
|
35
|
+
<% if index.nonzero? %>
|
36
|
+
<!-- FIXME do not hardcode Rails.env.test? -->
|
37
|
+
<% if Rails.env.test? %>
|
38
|
+
<%= link_to 'Remove', '#', class: "remove-condition btn" %>
|
39
|
+
<% else %>
|
40
|
+
<%= link_to '#', class: "remove-condition btn" do %>
|
41
|
+
<i class='icon-remove icon-white'></i>
|
42
|
+
<% end %>
|
43
|
+
<% end %>
|
44
|
+
<% end %>
|
45
|
+
|
46
|
+
|
47
|
+
<% if condition.persisted? && !condition.marked_for_destruction? %>
|
48
|
+
<%= condition_field.hidden_field :_destroy, class: 'destroy-flag' %>
|
49
|
+
<% end %>
|
50
|
+
<% end %>
|
51
|
+
</div>
|
52
|
+
<% end %>
|
53
|
+
|
54
|
+
<br />
|
55
|
+
<%= link_to '#', class: 'add-condition btn btn-success' do %>
|
56
|
+
<i class='icon-plus'> </i> Add
|
57
|
+
<% end %>
|
58
|
+
|
59
|
+
<script type="text/html" id="product_template">
|
60
|
+
<%= render "condition" %>
|
61
|
+
</script>
|
62
|
+
</div>
|
63
|
+
</fieldset>
|
64
|
+
|
65
|
+
<div class="form-actions">
|
66
|
+
<%= f.submit 'Submit', class: 'btn btn-primary', 'data-loading-text' => 'processing ...' %>
|
67
|
+
|
68
|
+
<%= link_to 'Cancel', admin_product_groups_path, class: 'btn' %>
|
69
|
+
</div>
|
70
|
+
|
71
|
+
<% end %>
|
72
|
+
</div>
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<% page_title 'product groups' %>
|
2
|
+
|
3
|
+
<div>
|
4
|
+
<h1 class='ns-page-title'><%= t(:product_groups) %></h1>
|
5
|
+
<%= link_to(new_admin_product_group_path, class: 'btn btn-success new-action', id: 'add_new_product_group') do %>
|
6
|
+
<i class="icon-plus"></i> Add new product group
|
7
|
+
<% end %>
|
8
|
+
<div class='clear'></div>
|
9
|
+
</div>
|
10
|
+
|
11
|
+
<br />
|
12
|
+
|
13
|
+
<table class="table table-striped">
|
14
|
+
<tbody>
|
15
|
+
<% @product_groups.each do |product_group| %>
|
16
|
+
<tr>
|
17
|
+
<td><%= product_group.name %></td>
|
18
|
+
<td><%= product_group.summarize %></td>
|
19
|
+
<td>
|
20
|
+
<%= link_to t(:edit), edit_admin_product_group_path(product_group), title: 'Edit' %>
|
21
|
+
|
|
22
|
+
<%= link_to [:admin, product_group], data: { confirm: t(:delete_confirmation_for_product_group) }, method: 'delete', class: 'delete', title: 'Delete' do %>
|
23
|
+
<%= delete_icon %>
|
24
|
+
<% end %>
|
25
|
+
</td>
|
26
|
+
</td>
|
27
|
+
</tr>
|
28
|
+
<% end %>
|
29
|
+
</tbody>
|
30
|
+
</table>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<%= f.fields_for :custom_field_answers, answer do | field | %>
|
2
|
+
<div class="control-group custom-fields">
|
3
|
+
<%= field.label :value, answer.custom_field.name.titleize, class: 'control-label' %>
|
4
|
+
<%= field.hidden_field :custom_field_id %>
|
5
|
+
<div class="controls">
|
6
|
+
<%= field.text_field :value, class: 'input-xlarge' %>
|
7
|
+
</div>
|
8
|
+
</div>
|
9
|
+
<% end %>
|
@@ -0,0 +1,69 @@
|
|
1
|
+
<div class='well'>
|
2
|
+
<%= nested_form_for([:admin, @product], html: {multipart: true, class: 'nested-form form-horizontal'}) do |f| %>
|
3
|
+
|
4
|
+
<% if @product.errors.any? %>
|
5
|
+
<div class="alert alert-error">
|
6
|
+
<p> <%= t(:error_bang) %> </p>
|
7
|
+
<ul>
|
8
|
+
<% @product.errors.full_messages.each do |message| %>
|
9
|
+
<li><%= message %></li>
|
10
|
+
<% end %>
|
11
|
+
</ul>
|
12
|
+
</div>
|
13
|
+
<% end %>
|
14
|
+
|
15
|
+
<fieldset>
|
16
|
+
<div class="control-group">
|
17
|
+
<label class="control-label">Status</label>
|
18
|
+
<div class='controls'>
|
19
|
+
<label class="radio">
|
20
|
+
<%= f.radio_button :status, :active %>
|
21
|
+
Active
|
22
|
+
</label>
|
23
|
+
<label class="radio">
|
24
|
+
<%= f.radio_button :status, :hidden %>
|
25
|
+
Hidden
|
26
|
+
</label>
|
27
|
+
<label class="radio">
|
28
|
+
<%= f.radio_button :status, :sold_out %>
|
29
|
+
Sold Out
|
30
|
+
</label>
|
31
|
+
</div>
|
32
|
+
</div>
|
33
|
+
|
34
|
+
<div class="control-group">
|
35
|
+
<%= f.label :name, 'Name', class: 'control-label' %>
|
36
|
+
<div class="controls">
|
37
|
+
<%= f.text_field :name, class: 'span8 focus' %>
|
38
|
+
</div>
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<div class="control-group">
|
42
|
+
<%= f.label :description, 'Description', class: 'control-label' %>
|
43
|
+
<div class="controls">
|
44
|
+
<%= f.text_area :description, class: 'span8 autoresize', rows: 5 %>
|
45
|
+
</div>
|
46
|
+
</div>
|
47
|
+
|
48
|
+
<div class="control-group">
|
49
|
+
<%= f.label :price, 'Price', class: 'control-label' %>
|
50
|
+
<div class="controls">
|
51
|
+
<%= f.text_field :price, class: 'span1', :'data-behavior' => 'price-formatted' %> USD
|
52
|
+
</div>
|
53
|
+
</div>
|
54
|
+
|
55
|
+
<% @product.custom_field_answers.each do | answer | %>
|
56
|
+
<%= render :partial => '/admin/products/custom_field_answer', :locals => { :f => f, :answer => answer } %>
|
57
|
+
<% end %>
|
58
|
+
</fieldset>
|
59
|
+
|
60
|
+
<%= render 'handle_pictures', f: f %>
|
61
|
+
|
62
|
+
<div class="form-actions">
|
63
|
+
<%= f.submit 'Submit', class: 'btn btn-primary', 'data-loading-text' => 'processing ...' %>
|
64
|
+
|
65
|
+
<%= link_to t(:cancel), admin_products_path, class: 'btn' %>
|
66
|
+
</div>
|
67
|
+
|
68
|
+
<% end %>
|
69
|
+
</div>
|
@@ -0,0 +1,32 @@
|
|
1
|
+
<div class="control-group handle-pictures-umbrella">
|
2
|
+
<% unless @product.new_record? %>
|
3
|
+
<div class='pictures-list'>
|
4
|
+
<label class="control-label">Pictures</label>
|
5
|
+
<div class='controls'>
|
6
|
+
<ul class="thumbnails product_pictures">
|
7
|
+
<% @product.pictures.each do |picture| %>
|
8
|
+
<%= content_tag_for(:li, picture, "data-id" => picture.id) do %>
|
9
|
+
<%= link_to image_tag(picture.picture_url(:medium)), '#', class: 'thumbnail' %>
|
10
|
+
|
11
|
+
<div class="actions">
|
12
|
+
<%= link_to '#', class: 'move' do %>
|
13
|
+
<i class='icon-move icon-white'></i>
|
14
|
+
<% end %>
|
15
|
+
<%= link_to '#', class: 'delete', "data-action-id" => picture.id do %>
|
16
|
+
<i class='icon-remove icon-white'></i>
|
17
|
+
<% end %>
|
18
|
+
</div>
|
19
|
+
<% end %>
|
20
|
+
<% end %>
|
21
|
+
</ul>
|
22
|
+
</div>
|
23
|
+
</div>
|
24
|
+
<% end %>
|
25
|
+
|
26
|
+
<%= f.hidden_field :pictures_order, id: 'product_pictures_order' %>
|
27
|
+
<%= f.fields_for :pictures do |picture_form| %>
|
28
|
+
<%= picture_form.file_field :picture %>
|
29
|
+
<%= picture_form.link_to_remove 'X', id: "delete_picture_#{picture_form.object.id}" %>
|
30
|
+
<% end %>
|
31
|
+
<%= f.link_to_add 'Add picture', :pictures %>
|
32
|
+
</div>
|
@@ -0,0 +1,33 @@
|
|
1
|
+
<div class="control-group">
|
2
|
+
<% if @product.persisted? %>
|
3
|
+
<label class="control-label">Pictures</label>
|
4
|
+
|
5
|
+
<div class='controls'>
|
6
|
+
<ul class="thumbnails product_pictures">
|
7
|
+
<% @product.pictures.each do |picture| %>
|
8
|
+
<%= content_tag_for(:li, picture, "data-id" => picture.id) do %>
|
9
|
+
<%= link_to image_tag(picture.picture_url(:medium)), '#', class: 'thumbnail' %>
|
10
|
+
|
11
|
+
<div class="actions">
|
12
|
+
<%= link_to '#', class: 'move' do %>
|
13
|
+
<i class='icon-move icon-white'></i>
|
14
|
+
<% end %>
|
15
|
+
<%= link_to '#', class: 'delete', "data-action-id" => picture.id do %>
|
16
|
+
<i class='icon-remove icon-white'></i>
|
17
|
+
<% end %>
|
18
|
+
</div>
|
19
|
+
<% end %>
|
20
|
+
<% end %>
|
21
|
+
</ul>
|
22
|
+
</div>
|
23
|
+
<% end %>
|
24
|
+
|
25
|
+
<%= f.hidden_field :pictures_order, id: 'product_pictures_order' %>
|
26
|
+
|
27
|
+
<%= f.fields_for :pictures do |picture_form| %>
|
28
|
+
<%= picture_form.file_field :picture %>
|
29
|
+
<%= picture_form.link_to_remove 'X', id: "delete_picture_#{picture_form.object.id}" %>
|
30
|
+
<% end %>
|
31
|
+
|
32
|
+
<%= f.link_to_add 'Add picture', :pictures %>
|
33
|
+
</div>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<% page_title "edit #{@product.name}" %>
|
2
|
+
|
3
|
+
<div class='page-header'>
|
4
|
+
<h1 style='float:left;'><%= t(:edit_product) %></h1>
|
5
|
+
<div style='clear:both;'></div>
|
6
|
+
</div>
|
7
|
+
|
8
|
+
<%= render 'form' %>
|
9
|
+
|
10
|
+
<% if @product_groups.any? %>
|
11
|
+
<div>
|
12
|
+
<p> This product belongs to following product groups: </p>
|
13
|
+
<ul>
|
14
|
+
<% @product_groups.each do |pg| %>
|
15
|
+
<li>
|
16
|
+
<h3>
|
17
|
+
<%= pg.name %>
|
18
|
+
<small>
|
19
|
+
<%= pg.summarize %>
|
20
|
+
</small>
|
21
|
+
</h3>
|
22
|
+
</li>
|
23
|
+
<% end %>
|
24
|
+
</ul>
|
25
|
+
</div>
|
26
|
+
<% end %>
|
@@ -0,0 +1,34 @@
|
|
1
|
+
<% page_title 'products' %>
|
2
|
+
|
3
|
+
<div>
|
4
|
+
<h1 class='ns-page-title'><%= t(:products) %></h1>
|
5
|
+
<%= link_to(new_admin_product_path, class: 'btn btn-success new-action', id: 'add_new_product') do %>
|
6
|
+
<i class="icon-plus"></i> Add new product
|
7
|
+
<% end %>
|
8
|
+
<div class='clear'></div>
|
9
|
+
</div>
|
10
|
+
|
11
|
+
<br />
|
12
|
+
|
13
|
+
<table class="table table-striped">
|
14
|
+
<tbody>
|
15
|
+
<% @products.each do |product| %>
|
16
|
+
<tr>
|
17
|
+
<td>
|
18
|
+
<% if product.picture %>
|
19
|
+
<%= link_to image_tag(product.picture.picture_url(:small)), admin_product_path(product) %>
|
20
|
+
<% end %>
|
21
|
+
</td>
|
22
|
+
<td><%= link_to product.name, edit_admin_product_path(product) %></td>
|
23
|
+
<td>
|
24
|
+
<%= link_to 'Edit', edit_admin_product_path(product), title: 'Edit' %>
|
25
|
+
|
|
26
|
+
<%= link_to [:admin, product], data: { confirm: t(:delete_confirmation_for_product) }, method: 'delete', title: 'Delete', class: 'delete' do %>
|
27
|
+
<%= delete_icon %>
|
28
|
+
<% end %>
|
29
|
+
</td>
|
30
|
+
</td>
|
31
|
+
</tr>
|
32
|
+
<% end %>
|
33
|
+
</tbody>
|
34
|
+
</table>
|
@@ -0,0 +1,58 @@
|
|
1
|
+
<div class="well">
|
2
|
+
<%= nested_form_for([:admin, @shipping_zone, @shipping_method], html: {class: 'form-horizontal'}) do |f| %>
|
3
|
+
|
4
|
+
<% if @shipping_method.errors.any? %>
|
5
|
+
<div class="alert alert-error">
|
6
|
+
<p> <%= t(:error_bang) %> </p>
|
7
|
+
<ul>
|
8
|
+
<% @shipping_method.errors.full_messages.each do |message| %>
|
9
|
+
<li><%= message %></li>
|
10
|
+
<% end %>
|
11
|
+
</ul>
|
12
|
+
</div>
|
13
|
+
<% end %>
|
14
|
+
|
15
|
+
<fieldset>
|
16
|
+
<div class="control-group">
|
17
|
+
<%= f.label :name, 'Shipping method name', class: 'control-label' %>
|
18
|
+
<div class="controls">
|
19
|
+
<%= f.text_field :name, class: 'input-xlarge focus' %>
|
20
|
+
</div>
|
21
|
+
</div>
|
22
|
+
|
23
|
+
<div class="control-group">
|
24
|
+
<%= f.label :base_price, 'Shipping cost', class: 'control-label' %>
|
25
|
+
<div class="controls">
|
26
|
+
<%= f.text_field :base_price, class: 'span1', :'data-behavior' => 'price-formatted' %> USD
|
27
|
+
</div>
|
28
|
+
</div>
|
29
|
+
|
30
|
+
<div class="control-group">
|
31
|
+
<%= f.label :minimum_order_amount, 'Minimum order amount', class: 'control-label' %>
|
32
|
+
<%= link_to '?', '#', 'data-content' => 'If the order amount is below this amount then this shipping method will not be applied.',
|
33
|
+
'data-original-title' => 'Minimum order amount' %>
|
34
|
+
<div class="controls">
|
35
|
+
<%= f.text_field :minimum_order_amount, class: 'span1', 'data-behavior' => 'price-formatted' %> USD
|
36
|
+
</div>
|
37
|
+
</div>
|
38
|
+
|
39
|
+
<div class="control-group">
|
40
|
+
<%= f.label :maximum_order_amount, 'Maximum order amount', class: 'control-label' %>
|
41
|
+
<%= link_to '?', '#', 'data-content' => 'If the order amount is above this amount then this shipping method will not be applied.',
|
42
|
+
'data-original-title' => 'Maximum order amount' %>
|
43
|
+
|
44
|
+
<div class="controls">
|
45
|
+
<%= f.text_field :maximum_order_amount, class: 'span1', :'data-behavior' => 'price-formatted', placeholder: '∞'.html_safe %> USD
|
46
|
+
</div>
|
47
|
+
</div>
|
48
|
+
|
49
|
+
</fieldset>
|
50
|
+
|
51
|
+
<div class="form-actions">
|
52
|
+
<%= f.submit 'Submit', class: 'btn btn-primary', 'data-loading-text' => 'processing ...' %>
|
53
|
+
|
54
|
+
<%= link_to t(:cancel), admin_shipping_zones_path, class: 'btn' %>
|
55
|
+
</div>
|
56
|
+
|
57
|
+
<% end %>
|
58
|
+
</div>
|
@@ -0,0 +1,31 @@
|
|
1
|
+
<tr>
|
2
|
+
<td>
|
3
|
+
<%= shipping_method.shipping_zone.name %>
|
4
|
+
</td>
|
5
|
+
<td>
|
6
|
+
<% if shipping_method.active %>
|
7
|
+
<%= link_to "+", update_offset_admin_regional_shipping_zone_shipping_method_path(regional_shipping_zone_id: shipping_method.shipping_zone,
|
8
|
+
id: shipping_method.id,
|
9
|
+
offset: 0.10),
|
10
|
+
method: :put, remote: true, class: 'update-shipping' %>
|
11
|
+
|
12
|
+
<%= number_to_currency(shipping_method.offset.to_f) %>
|
13
|
+
|
14
|
+
<%= link_to "-", update_offset_admin_regional_shipping_zone_shipping_method_path(regional_shipping_zone_id: shipping_method.shipping_zone,
|
15
|
+
id: shipping_method.id, offset: -0.10),
|
16
|
+
method: :put, remote: true, class: 'update-shipping' %>
|
17
|
+
|
18
|
+
<% else %>
|
19
|
+
<%= link_to 'Shipping has been disabled', '#' %>
|
20
|
+
<% end %>
|
21
|
+
</td>
|
22
|
+
<td>
|
23
|
+
<% if shipping_method.active %>
|
24
|
+
<%= link_to 'Disable', [ :disable, :admin, shipping_method.shipping_zone, shipping_method ],
|
25
|
+
method: 'put', remote: true, class: 'update-shipping', rel: "disable-#{shipping_method.shipping_zone_id}" %>
|
26
|
+
<% else %>
|
27
|
+
<%= link_to 'Enable', [ :enable, :admin, shipping_method.shipping_zone, shipping_method ],
|
28
|
+
method: 'put', remote: true, class: 'update-shipping', rel: "enable-#{shipping_method.shipping_zone_id}" %>
|
29
|
+
<% end %>
|
30
|
+
</td>
|
31
|
+
</tr>
|