Hello,
@Netpastor :
What seems to be happening for me is that any call exceeds a 20Kg limit that shows an error message. So same 'order' using the v1 plugin doesn't show this error, but the same order shows the weight exceeded message using v2.
The AuPost V2 shipping plugin have a 20 KG limit for International deliveries and a 22KG limit for local deliveries, if you want to remove or edit that limitation you'll have to edit these lines through the "aupost2.php" file :
if(@$order->shipping_address_full->shipping_address->address_country->zone_code_2 == 'AU') {
$limit['w'] = 22000;
$limit['volume'] = 250000000;
$limit['x'] = 1050;
} else {
$domestic = 0;
$limit['w'] = 20000;
$limit['girth'] = 1400;
$limit['x'] = 1050;
}
And change the value of the "$limit" variable which is the weight limitation in g.
Also note that editing the weight limit won't do the job, the AuPost v2 plugin needs 1 call to the AuPost V2 platform for each package which is not the case for the moment.
@WangNET :
We are firstly working on the adaptation of the AuPost v2 regarding their API update, and then we'll work on the adaptation of our rate calculation so that it will send 1 request to the AuPost platform per package.
We apologize for the delay and any inconvenience this may cause.