• ORDER ${order._id}
  • DATE ${h.format_date(order.creation_date)}
  • TOTAL € ${h.format_price(order.total+order.applied_discount)}
  • PAYMENT METHOD ${order.payment_type}

ORDER DETAILS

PRODUCT
QTY
TOT.
${h.i_entity_value(item, 'name')}
${item.details.producer_name}
${h.i_entity_value(item, 'variety')}
${item.qty}
€ ${h.format_price(item.gross_price*item.qty)}
ORDER TOTAL
€ ${h.format_price(order.gross_total)}
(include € ${h.format_price(order.tax)} VAT)
SHIPPING CHARGES AND HANDLING
€ ${h.format_price(order.shipping_charges)}
TOTAL
€ ${h.format_price(order.total)}
DISCOUNT
€ ${h.format_price(-order.applied_discount)}
PAYED
€ ${h.format_price(order.total+order.applied_discount)}

CUSTOMER DETAIL


BILLING ADDRESS

  • ${order.bill_info.company}
  • ${order.bill_info.vat}
  • ${order.bill_info.fiscal_code}
  • ${order.bill_info.address}
  • ${order.bill_info.zip_code} ${order.bill_info.city} ${order.bill_info.province}
  • ${order.bill_info.country}

SHIPPING ADDRESS

  • ${order.shipment_info.receiver}
  • ${order.shipment_info.address}
  • ${order.shipment_info.zip_code} ${order.shipment_info.city} ${order.shipment_info.province}
  • ${order.shipment_info.country}

USER DATA

  • Email ${order.details.email}
  • Phone ${order.details.phone}

NOTES

  • ${order.notes}

MESSAGE

  • ${order.message}