Request/LabelRequest.php:105-115 passes the order shipping to the SLS Service block:
new Service(
$productCode,
new DateTime(),
$order->getRef(),
$order->getPostage(),
3,
...
)
order.postage is stored tax included. La Poste's SLS documentation should be checked for what transportationAmount expects: if it is a tax-excluded amount, the value has to be $order->getUntaxedPostage(), and every label produced so far declares a shipping cost inflated by its VAT.
Flagging it rather than changing it, since only the SLS contract can settle which basis is right.
order.postage is stored tax included; the core side of that convention is documented in thelia/thelia#3698.
Request/LabelRequest.php:105-115passes the order shipping to the SLSServiceblock:order.postageis stored tax included. La Poste's SLS documentation should be checked for whattransportationAmountexpects: if it is a tax-excluded amount, the value has to be$order->getUntaxedPostage(), and every label produced so far declares a shipping cost inflated by its VAT.Flagging it rather than changing it, since only the SLS contract can settle which basis is right.
order.postageis stored tax included; the core side of that convention is documented in thelia/thelia#3698.