0

opencart2.0.1.1

USPS 设置:-重量等级= 磅,地理区域= 所有区域,尺寸(长 x 宽 x 高)=10x10x10,邮政编码=33446

产品:- 重量等级 = 磅,尺寸(长 x 宽 x 高)=10x10x10,重量 =4。

它在国内服务中正常工作但是当我使用其他国家(墨西哥)结帐时,国际服务没有显示,

4

1 回答 1

0

我只是发现$this->config->get('usps_girth')没有返回任何价值,

所以我用公式找出周长 = L + W * 2 + H * 2 ;

在 \catalog\model\shipping\usps.php 我在第 300 行 aprx 处进行了更改。

来自 usps.php

$xml .= '       <Container>' . $this->config->get('usps_container') . '</Container>';
$xml .= '       <Size>' . $this->config->get('usps_size') . '</Size>';
$xml .= '       <Width>' . $this->config->get('usps_width') . '</Width>';
$xml .= '       <Length>' . $this->config->get('usps_length') . '</Length>';
$xml .= '       <Height>' . $this->config->get('usps_height') . '</Height>';
$xml .= '       <Girth>' . $this->config->get('usps_girth') . '</Girth>';
$xml .= '       <CommercialFlag>N</CommercialFlag>';
$xml .= '   </Package>';
$xml .= '</IntlRateV2Request>';
$request = 'API=IntlRateV2&XML=' . urlencode($xml);

到 usps.php

//$this->config->get('usps_girth') -> to -> girth = L + W * 2 + H * 2          
$girth =($this->config->get('usps_width'))+(($this->config->get('usps_length'))*2)+(($this->config->get('usps_height'))*2);

$xml .= '       <Container>' . $this->config->get('usps_container') . '</Container>';
$xml .= '       <Size>' . $this->config->get('usps_size') . '</Size>';
$xml .= '       <Width>' . $this->config->get('usps_width') . '</Width>';
$xml .= '       <Length>' . $this->config->get('usps_length') . '</Length>';
$xml .= '       <Height>' . $this->config->get('usps_height') . '</Height>';
$xml .= '       <Girth>' . $girth . '</Girth>';
$xml .= '       <CommercialFlag>N</CommercialFlag>';
$xml .= '   </Package>';
$xml .= '</IntlRateV2Request>';
$request = 'API=IntlRateV2&XML=' . urlencode($xml);
于 2015-03-24T12:09:02.207 回答