orderfile

Displays the contents of a shopping cart.
[orderfile FilePath]
orderfile tags
[/orderfile]

To display the contents of a cart (either an active shopping cart or a completed order), place an [orderfile] context into a template. You may display the header fields directly between the [orderfile] tags, but to see the items (products) themselves, you must put a [lineitems] context inside. ([orderfile] with [lineitems] is very much like [search] with [founditems].)

Example WebDNA code:

[orderfile [cart]]
Name: [name]
Address: [address1]
[address2]
[lineitems]
[lineindex] [quantity] [sku] [price]
[/lineitems]
Grand Total: [grandTotal]
[/orderfile]



ParameterDescription
cartName of the shopping cart file to use. cart=[cart] will look inside the ShoppingCarts folder (a preference value lets you set the path to the shopping carts folder) for the order file named [cart].
file(Optional) Path to the shopping cart file. This is used instead of cart when the file is in a different folder (such as the Orders folder or the Problems folder or some folder of your choosing. Shopping carts can reside anywhere, as long as you tell WebDNA where to find them.)


See [setheader] for the field values available inside [orderfile]. See [lineitems] for the array of variables available inside that context.