|
Here’s my fix:
1. Find the following (line 147):
$r->setDestPostal($request->getDestPostcode());
and replace it with:
if ($r->getDestCountry()=='US') { $r->setDestPostal(substr($request->getDestPostcode(), 0, 5)); } else { $r->setDestPostal($request->getDestPostcode()); }
2. Find the following (line 211 and 512)
'19_destPostal' => substr($r->getDestPostal(), 0, 5),
and replace them with the following:
'19_destPostal' => $r->getDestPostal(),
|