{if $type == "shipment"}
[`If an order contains items with fractional quantities then information about such items is converted before being passed to the shipping service—the quantity value and the quantity unit name are added to the order item name and the quantity value becomes equal to 1.`]
{else}
[`If an order contains items with fractional quantities then information about such items is converted before being passed to the payment gateway—the quantity value and the quantity unit name are added to the order item name and the quantity value becomes equal to 1.`]
{/if}
[`Example`]
[`
Mango: 1.75 lb. × $5.20/lb. = $9.10 is converted to`]
[`
Mango 1.75 lb.: 1 pc. × $9.10/pc. = $9.10`]
{if $type == "shipment"}
[`Order items with integer quantity values are passed on to the shipping service without a conversion.`]
{else}
[`Order items with integer quantity values are passed on to the payment gateway without a conversion.`]
{/if}