php fedex设置签名标签ADULT

时间:2014-04-26 13:41:05

标签: php wordpress woocommerce fedex

我正在使用wordpress网站并使用woocommerce扩展程序http://www.woothemes.com/products/fedex-shipping-module/

我将值Signature值传递给成年人。但它无法正常工作

请纠正我错在哪里

$request['RequestedShipment']['RateRequestTypes'] = $this->request_type;
$request['RequestedShipment']['PackageDetail'] = 'INDIVIDUAL_PACKAGES';
$request['RequestedShipment']['SpecialServicesRequested'][] = array(
    'SpecialServiceTypes' => 'SIGNATURE_OPTION',
    'SignatureOptionDetail' => array(
            'OptionType' => 'ADULT'
    )
);

`

我是否需要更改 RateService_v13.wsdl 文件中的内容

请建议

由于

1 个答案:

答案 0 :(得分:1)

我解决了这个问题

对于具有相同问题的其他用户,可以通过以下代码解决此问题

$item['SpecialServicesRequested'] = array(
                    'SpecialServiceTypes' => 'SIGNATURE_OPTION',
                    'SignatureOptionDetail' => array(
                        'OptionType' => 'ADULT'
                         )
                    ); 
$request['RequestedShipment']['RequestedPackageLineItems'][] = $item;