cart.storeOrderPDF

Available Since: V1.3.0

Formats the order PDF for use by the store owner.

<!DOCTYPE html>
<html lang="lang">
<head>
	<meta charset="utf-8" />
	<style type=\"text/css\">
		<!--
		body { font-size: 85%; }
		h1 { font-size: 140%; }
		#cartAddresses, #cartShopDetails { clear: both; margin: 0 0 0 0; }
		#cartInvoiceAddr, #cartShopAddr { width: 45%; display: inline-block; }
		#cartDeliveryAddr, #cartOrderDetails { margin-left: 8%; width: 45%; display: inline-block; }
		table.cart { margin: 20px 0 0 0; }
		table.cart td { border-bottom: 1px dotted #aaa; padding: 2px 4px; }
		table.cart th { padding: 2px 10px; }
		table.cart .extax { font-size: 75%; color: #a00; }
		table.cart .sku { font-size: 75%; }
		table.cart .linenote { font-size: 75%; text-align: center; color: #a00; }
		.cartpricecurrency { text-align: center; }
		#cartOrderNumber { clear: both; padding-top: 25px; }
		td .discountItems { text-align: left; font-weight: normal; font-size: 85%; }
		th .discountItems { text-align: left; font-weight: normal; margin-left: 50%; font-size: 85%; }
		.price2 { font-size: 75%; color: #a00; }
		-->
	</style>
</head>

<body>
	<h1>Order: [[+orderNumber]]</h1>
	[[+orderSummary]]
</body>
</html>
Placeholder Description
orderNumber The order number.
orderSummary Summary of the order.
orderDetails Order summary including status updates.
orderStatus Order status updates.
orderDate The date of the order.
orderOnly The order without any other details.
amountDue The amount due on the invoice.
payTerms Payment terms in days.
shipAddress The shipping address.




TOP