[%# $Id$ %]
[% USE hcart = Handel.Cart %]
[% IF (cart = hcart.create({
description => 'My New Shopping Cart',
id => 'B0462540-0564-4E27-B9FD-C3985A227C49',
name => 'New Cart',
shopper => 'E24FF465-F485-477B-8565-FDF30BB4DE13',
type => hcart.CART_TYPE_TEMP
})) %]
[% UNLESS cart.add({
description => 'My New Item',
id => '3C757B09-9F58-4C2E-A07C-D945CCF59CDB',
price => 1.23,
quantity => 2,
sku => 'NEWSKU123'
}) %]
Error adding cart item
[% END %]
[% cart.count %]
[% cart.description %]
[% cart.id %]
[% cart.name %]
[% cart.shopper %]
[% cart.subtotal.value %]
[% cart.type %]
[% ELSE %]
Error creating shopping cart
[% END %]
[% IF (cart = hcart.search({
type => hcart.CART_TYPE_TEMP,
id => 'B0462540-0564-4E27-B9FD-C3985A227C49'
}).first) %]
[% cart.count %]
[% cart.description %]
[% cart.id %]
[% cart.name %]
[% cart.shopper %]
[% cart.subtotal.value %]
[% cart.type %]
[% CALL cart.clear %]
[% cart.count %]
[% cart.subtotal.value %]
[% ELSE %]
Could not find cart
[% END %]