我正在使用以下FedEx API包装器: https://github.com/JeremyDunn/php-fedex-api-wrapper
我的问题是,在创建发货时,我为所有国际订单附加了商业发票(必填)。商业发票根据我收到的以下API响应成功附加:
["CompletedEtdDetail"]=>
object(FedEx\ShipService\ComplexType\CompletedEtdDetail)#169 (2) {
["name":protected]=>
string(18) "CompletedEtdDetail"
["values":protected]=>
array(3) {
["FolderId"]=>
string(16) "012345678910"
["Type"]=>
string(25) "ELECTRONIC_DOCUMENTS_ONLY"
["UploadDocumentReferenceDetails"]=>
array(2) {
[0]=>
object(FedEx\ShipService\ComplexType\UploadDocumentReferenceDetail)#192 (2) {
["name":protected]=>
string(29) "UploadDocumentReferenceDetail"
["values":protected]=>
array(3) {
["LineNumber"]=>
int(0)
["DocumentType"]=>
string(9) "ETD_LABEL"
["DocumentId"]=>
string(16) "012345678910"
}
}
[1]=>
object(FedEx\ShipService\ComplexType\UploadDocumentReferenceDetail)#139 (2) {
["name":protected]=>
string(29) "UploadDocumentReferenceDetail"
["values":protected]=>
array(4) {
["LineNumber"]=>
int(0)
["DocumentProducer"]=>
string(8) "CUSTOMER"
["DocumentType"]=>
string(18) "COMMERCIAL_INVOICE"
["DocumentId"]=>
string(16) "012345678910"
}
}
}
}
}
尽管当FedEx司机到达取货并扫描标签时,它没有显示附有电子商业发票。相反,他们必须从每个包装中取出纸质副本,然后逐个扫描它们。
我用于创建货运和附加商业发票的过程如下:
有人看到我可能要去哪里了吗?