首页 新闻 会员 周边

The Return Policy field Refund in the input has been ignored.Return Policy input not Applicable

0
悬赏园豆:10 [待解决问题]

ReturnPolicy 是这样设置的:

ReturnPolicyType returnPolicy = new ReturnPolicyType
{
ReturnsAcceptedOption = "ReturnsAccepted",
RefundOption = "MoneyBack",
ReturnsWithinOption = "Days_30",
Description = @"",
Refund = "Items returned that do not have any quality issues are subject to a 11% restocking fee of the original total order, in order for us to offer the enormous selection of products at below-retail prices."
};

后来改成这样:

ReturnPolicyType returnPolicy = new ReturnPolicyType
{
ReturnsAcceptedOption = "ReturnsAccepted",
RefundOption = "MoneyBack",
ReturnsWithinOption = "Days_30",
Description = @" Items returned that do not have any quality issues are subject to a 11% restocking fee of the original total order, in order for us to offer the enormous selection of products at below-retail prices.",
};

结果上传产品的时候,还是报错了。

谁帮忙解决此问题,谢谢!

fanny_wan的主页 fanny_wan | 初学一级 | 园豆:194
提问于:2012-08-29 17:15
< >
分享
所有回答(2)
0
sdas_sdas | 园豆:202 (菜鸟二级) | 2012-08-29 17:54

我之前看的这个页面,因为我调用的是AddItem 这个方法

http://developer.ebay.com/devzone/xml/docs/reference/ebay/AddItem.html#Request.Item.ReturnPolicy

里面有对description 和 Refund 的描述。

支持(0) 反对(0) fanny_wan | 园豆:194 (初学一级) | 2012-08-29 18:11
0

使用GetEbayDetails 方法来获取当前帐号可使用的return policy

DetailNameCodeType request.DetailName = new DetailNameCodeType[] { DetailNameCodeType.ReturnPolicyDetails };

根据提示,我将return policy 改成如下就可以上传产品了:

ReturnPolicyType returnPolicy = new ReturnPolicyType
{
Refund = "MoneyBack",
ReturnsWithin = "Days_30",
ReturnsAccepted = "ReturnsAccepted",
ReturnsAcceptedOption = "ReturnsAccepted",
Description = "Items returned that do not have any quality issues are subject to a 11% restocking fee of the original total order, in order for us to offer the enormous selection of products at below-retail price"
};

fanny_wan | 园豆:194 (初学一级) | 2013-01-02 15:20
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册