0

尝试提交“帐单地址”表单时出现错误(消息)。(http://mystore:3000/checkout/address)

味精-> No shipping methods available for selected location, please change your address and try again.

如果我在“国家”字段中选择“美国”或“加拿大”,它可以正常工作,但对于其他国家,它不会提交:)

我的宝石文件

source 'http://rubygems.org'

gem 'rails', '3.2.13'

# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'

gem 'sqlite3'


# Gems used only for assets and not required
# in production environments by default.
group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'

  # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  # gem 'therubyracer', :platforms => :ruby

  gem 'uglifier', '>= 1.0.3'
end

gem 'jquery-rails'

# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'

# To use Jbuilder templates for JSON
# gem 'jbuilder'

# Use unicorn as the app server
# gem 'unicorn'

# Deploy with Capistrano
# gem 'capistrano'

# To use debugger
# gem 'debugger'
gem 'spree', '1.3.2'
gem 'spree_gateway', :github => 'spree/spree_gateway', :branch => '1-3-stable'
gem 'spree_auth_devise', :github => 'spree/spree_auth_devise', :branch => '1-3-stable'

谢谢 :)

4

3 回答 3

2

另一件事会导致这个烦人的模棱两可的错误,即使您config.track_inventory_levels设置为 false也没有设置任何库存位置。

由于这个错误可能是由 9000 件事情中的一件造成的,所以我已经为这个错误做了很多事情。

于 2014-05-09T08:53:54.713 回答
1

解决了 :)

非常感谢 NICWN -> https://groups.google.com/forum/?fromgroups=#!searchin/spree-user/No $20shipping$20methods$20available$20for$20selected$20location,$20please$20change$20your $20address$20and$20try$20​​again/spree-user/-imHA2H9KxI/Z_-EKBhq0twJ

  1. 打造“亚洲”新区
  2. 添加国家“日本”
  3. 在配置>州,选择“日本”并添加州“关东”

  4. 当然,我为亚洲区域添加了新的运输方式。{ name -> Japan (JPY) {您必须在括号中指定货币 :) & 它必须与字段“CURRENCY:”中的相同&如果它不是美元,您必须在“GENERAL SETTINGS”中更改它通过在“CHOOSE CURRENCY”中选择货币} }

  5. 不选择任何运输类别的运输方式。“运输类别”-> 无。

于 2013-04-17T06:58:18.280 回答
0

您应该检查管理门户中的区域。您可以维护 2 个区域。第一个选项可以是“美国”+“加拿大”,默认为国内运输。另一个默认选项是用于国际运输的EU_VAT。对于不属于国内航运的任何其他国家,应成为国际航运的成员。如果您使用FedEx,那么您还需要从 fedex 获取开发人员密钥以用于开发环境

可以找到有关如何获取联邦快递开发人员测试密钥的解决方案 http://arvind-ror.blogspot.in/2013/08/how-to-obtain-developers-test-keys-from.html

于 2013-09-11T14:50:46.143 回答