I have been evaluating OC for a few weeks now on my local PC under XAMPP in consideration of a move away from many years with CS-CART and have a question on how the Australia Post Module works.
As most of my products are drop shipped I don't know their physical dimensions BUT I do know their weight. So with the Australia Post module in Open Cart do products have to have a size (i.e. LxWxH) or does the module with an API key work just based on weight (i.e. product sizes are just 0cm x ocm x 0cm)
Your help is greatly appreciated and thanks
As most of my products are drop shipped I don't know their physical dimensions BUT I do know their weight. So with the Australia Post module in Open Cart do products have to have a size (i.e. LxWxH) or does the module with an API key work just based on weight (i.e. product sizes are just 0cm x ocm x 0cm)
Your help is greatly appreciated and thanks
OC version. Requires an API key.
Dedication and passion goes to those who are able to push and merge a project.
Regards,
Straightlight
Programmer / Opencart Tester
In catalog/model/extension/shipping/auspost.php file (out-of-the-box):
Code: Select all
curl_setopt($curl, CURLOPT_HTTPHEADER, ['AUTH-KEY: ' . $api_key]);
curl_setopt($curl, CURLOPT_URL, 'https://digitalapi.auspost.com.au/postage/parcel/domestic/service.json?from_postcode=' . urlencode($this->config->get('shipping_auspost_postcode')) . '&to_postcode=' . urlencode($address['postcode']) . '&height=' . $height . '&width=' . $width . '&length=' . $height . '&weight=' . urlencode($weight));
Dedication and passion goes to those who are able to push and merge a project.
Regards,
Straightlight
Programmer / Opencart Tester
Who is online
Users browsing this forum: No registered users and 18 guests