
Originally Posted by
RodG
No, at least not easily.
That said, like regular parcels, what can fit into a satchel are both dimension and weight based, so as long as you have the pre-paid satchels enabled as a valid shipping method, the module will attempt to determine whether any given order will fit.
Assuming a 3kg satchel, the limits are max weight 3kg (obviously), with a maximum length of 37cm and a maximum girth of 60cm.
The girth being 2x width plus 2x height.
Using your new dimensions of 16x24x7
A single sheet will be calculated at Length 24cm, girth (2x16) + (2x7) = 46cm. It will fit.
2 sheets will be length 24cm, girth (2x16) + 2x(2x7) = 60cm They should fit (just).
3 sheets will be length 24cm, girth (2x16) + 3x(2x7) = 75cm. They won't fit. (in theory)
Now, having said that, due to the fact that these satchels are flat, and real products are 3 dimensional, combined with the fact that the satchels can be stretched a little, it isn't an 'exact science' as to exactly what will or won't fit, so I've coded the module to err on the side of caution, and have set the allowable dimensions a little on the low side of things, you may indeed be able to fit 3 sheets into a single 3Kg satchel, and if that is the case, you can modify the the module to allow it to pass the check by loading /includes/modules/shipping/austpost.php into a text editor and changing the line that reads
if ((in_array("3kg Satchels", $this->allowed_methods)) && ( $sweight < 3000 ) && ( $girth < 600 ) && ( $var[2] < 370 ))
So that it reads something like
if ((in_array("3kg Satchels", $this->allowed_methods)) && ( $sweight < 3000 ) && ( $girth < 750 ) && ( $var[2] < 370 ))
That will allow 3 of your sheets to fit into a 3kg satchel. Any more than this will be quoted as a regular parcel.
Cheers
Rod