计算 ups 运输的重量
我想计算需要通过 ups 运输的产品的重量。
为了使用 ups api,我们需要重量、长度、宽度、高度。
例如,产品是尺寸为 4" x 3" 的名片,数量为 50 张。
只有上述名片信息,我可以从 UPS 获得费率吗?
我正在使用 php 集成 ups api。
有什么建议吗?
抱歉我忘了,纸张是14pt的。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该要求负责包装该产品的人员提供这些详细信息。然后,您需要在应用程序中放置各种规则,即,订单数量是否 > 100且< 200,将使用某种类型的包装,其重量为...等,并从那里计算。您的企业还应该意识到,有时会出现例外情况,最终的运输成本可能会高于客户在结账时收取的费用。在这种情况下,公司将不得不承担这些过剩的费用。
This should be a matter of asking those in charge of packaging this product to provide these details. You'll then need to place the various rules in your application, i.e., if quantity order is > 100 and < 200, such and such type of packing will be used, which has a weight of... etc., and calculate from there. Your business should also be aware that sometimes exceptions occur and the final shipping cost may be greater than what the customer was charged during checkout. In these cases, the company will have to eat these overages.