SELECT 
'Order shipping' title,'Order shipping' text, order_shipping_price value, 'ot_shipping' class, 1 sort_order
FROM <@PREFIX>hikashop_order 
where  order_id = <@ORDERS_ID@> and order_shipping_price <> 0
union
SELECT 
'Order total' title,'Order total' text,  order_full_price  value, 'ot_total' class, 2 sort_order
FROM <@PREFIX>hikashop_order 
where  order_id = <@ORDERS_ID@>
union
SELECT 
'Order discount' title,'Order discount' text, order_discount_price value, 'ot_discount' class, 3 sort_order
FROM <@PREFIX>hikashop_order 
where  order_id = <@ORDERS_ID@> and order_discount_price <> 0

