Guest Posted December 14, 2005 Posted December 14, 2005 We have a client who uses the new 2.8b mod for USPS. They use the Domestic Shipping Methods Express, Priority, and Parcel. With USPS Options Display weight, Display transit time. Every time they a customer selects Parcel postage the price is about $3 above that price listed on the USPS website. Weights tested so far are: 2.0, 4.0, 10.0, and 2.1 all displaying the wrong postage, but if you have 2 orders and the weight is 2.5 the price comes out correctly. Both the Express and Priority are functioning properly every time. Does anyone have the fix or know why this is happening? Thanks in advance, DavesWebdesigning.com Quote
Guest Posted December 14, 2005 Posted December 14, 2005 Handling fee maybe? We have the handling fee is $0.75. But the issue only happens on the Parcel not the other two. Daveswebdesigning.com Quote
Guest Posted December 19, 2005 Posted December 19, 2005 Has anyone ever seen this issue? Some work and some don't. We can't get the parcel to come up with the right shiping price, it is almost always off by $3.00. Have tried changing all the weights and normal shipping attributes. Could this be in the code? Since both the other shipping methods works fine. Need to get this back up and working quickly, thanks. website with issue: http://www.thebrushking.com/securecart/ Thanks in advance, DavesWebdesigning.com Quote
Guest Posted December 22, 2005 Posted December 22, 2005 We have a client who uses the new 2.8b mod for USPS. They use the Domestic Shipping Methods Express, Priority, and Parcel. With USPS Options Display weight, Display transit time. Every time they a customer selects Parcel postage the price is about $3 above that price listed on the USPS website. Weights tested so far are: 2.0, 4.0, 10.0, and 2.1 all displaying the wrong postage, but if you have 2 orders and the weight is 2.5 the price comes out correctly. Both the Express and Priority are functioning properly every time. Does anyone have the fix or know why this is happening? Thanks in advance, DavesWebdesigning.com We found an old bug report # 963 We switched the lines 84 and 87 below in the "../includes/modules/shipping/usps.php.": // Thanks Ryan if($shipping_pounds > 35 || $shipping_ounces < 6){ 84 $this->_setMachinable('True'); } else{ 87 $this->_setMachinable('False'); } Now all is working great the issue is Parcel requires the Machinable line using the new API and error out if the system hesitates thats why it worked sometimes and not other. With the True first the error does not occur. Thanks to the help of past bug reports. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.