基于所选货币的运输限制
Posted
技术标签:
【中文标题】基于所选货币的运输限制【英文标题】:shipping restriction based on the selected currency 【发布时间】:2015-09-23 14:00:31 【问题描述】:我需要根据所选货币实施送货限制。
例如:
如果人们选择/使用美元结账,他们的收货地址只能在美国,如果人们在货币下拉菜单中选择英镑,他们的收货地址只能在英国。
有谁知道我怎样才能做到这一点?我是一名初级开发人员,这是我的第一个 Maganto 项目。
这是我的可用.phtml 文件:
<?php $_shippingRateGroups = $this->getShippingRates(); ?>
<?php if (!$_shippingRateGroups): ?>
<p><?php echo $this->__('Sorry, no quotes are available for this order at this time.') ?></p>
<?php else: ?>
<dl class="sp-methods">
<?php $shippingCodePrice = array(); ?>
<?php $_sole = count($_shippingRateGroups) == 1; foreach ($_shippingRateGroups as $code => $_rates): ?>
<dt><?php echo $this->escapeHtml($this->getCarrierName($code)) ?></dt>
<dd>
<ul>
<?php $_sole = $_sole && count($_rates) == 1; foreach ($_rates as $_rate): ?>
<?php $shippingCodePrice[] = "'".$_rate->getCode()."':".(float)$_rate->getPrice(); ?>
<li>
<?php if ($_rate->getErrorMessage()): ?>
<ul class="messages"><li class="error-msg"><ul><li><?php echo $this->escapeHtml($_rate->getErrorMessage()) ?></li></ul></li></ul>
<?php else: ?>
<?php if ($_sole) : ?>
<span class="no-display"><input name="shipping_method" type="radio" value="<?php echo $_rate->getCode() ?>" id="s_method_<?php echo $_rate->getCode() ?>" checked="checked" /></span>
<?php else: ?>
<input name="shipping_method" type="radio" value="<?php echo $_rate->getCode() ?>" id="s_method_<?php echo $_rate->getCode() ?>"<?php if($_rate->getCode()===$this->getAddressShippingMethod()) echo ' checked="checked"' ?> class="radio"/>
<?php if ($_rate->getCode() === $this->getAddressShippingMethod()): ?>
<script type="text/javascript">
//<![CDATA[
lastPrice = <?php echo (float)$_rate->getPrice(); ?>;
//]]>
</script>
<?php endif; ?>
<?php endif; ?>
<label for="s_method_<?php echo $_rate->getCode() ?>"><?php echo $this->escapeHtml($_rate->getMethodTitle()) ?>
<?php $_excl = $this->getShippingPrice($_rate->getPrice(), $this->helper('tax')->displayShippingPriceIncludingTax()); ?>
<?php $_incl = $this->getShippingPrice($_rate->getPrice(), true); ?>
<?php echo $_excl; ?>
<?php if ($this->helper('tax')->displayShippingBothPrices() && $_incl != $_excl): ?>
(<?php echo $this->__('Incl. Tax'); ?> <?php echo $_incl; ?>)
<?php endif; ?>
</label>
<?php endif ?>
</li>
<?php endforeach; ?>
</ul>
</dd>
<?php endforeach; ?>
</dl>
<script type="text/javascript">
//<![CDATA[
<?php if (!empty($shippingCodePrice)): ?>
var shippingCodePrice = <?php echo implode(',',$shippingCodePrice); ?>;
<?php endif; ?>
$$('input[type="radio"][name="shipping_method"]').each(function(el)
Event.observe(el, 'click', function()
if (el.checked == true)
var getShippingCode = el.getValue();
<?php if (!empty($shippingCodePrice)): ?>
var newPrice = shippingCodePrice[getShippingCode];
if (!lastPrice)
lastPrice = newPrice;
quoteBaseGrandTotal += newPrice;
if (newPrice != lastPrice)
quoteBaseGrandTotal += (newPrice-lastPrice);
lastPrice = newPrice;
<?php endif; ?>
checkQuoteBaseGrandTotal = quoteBaseGrandTotal;
return false;
);
);
//]]>
</script>
<?php endif; ?>
【问题讨论】:
【参考方案1】:您可以根据货币类型限制运输方式。只是去
app\design\frontend\base\default\template\checkout\onepage\shipping_method\available.phtml
并通过这里的购物车获得货币。现在,您可以根据货币通过简单的 If/Else 条件来限制运输方式。
【讨论】:
您可以通过根据付款验证邮政编码来做到这一点。编写一个用于验证 zip 的 ajax 代码 感谢您的帮助,您已经向我解释了很多。但是我仍然对如何实现它有疑问。我理解的方式是: getStore()->getCurrentCurrencyCode(); if($currency_code == "USD") $uk_shipping = false; elseif($currency_code == "英镑") $uk_shipping = true; ?> 如何在实际的结账过程中实现它? 调用 ajax 并从送货地址传递邮政编码。并使用***.com/questions/19764303/…。用于根据邮政编码检查国家/地区。 您能否说得更具体一些。我不熟悉阿贾克斯。这也是我的第一个 magento 项目。您的第一个解决方案模拟逻辑。你能告诉我如何实现它。谢谢以上是关于基于所选货币的运输限制的主要内容,如果未能解决你的问题,请参考以下文章