[%# $Id$ %]
[% USE hcart = Handel.Cart %]
[% IF (cart = hcart.create({
description => 'My First Shopping Cart',
id => '76DFA8B1-644A-44C5-B545-7D0BAE09313D',
name => 'New Cart 1',
shopper => '471DAC4F-BDAB-409C-B64C-5C7745252BC2',
type => hcart.CART_TYPE_SAVED
})) %]
[% CALL cart.add({
description => 'Description 1',
id => 'ACB8CA46-C119-47C1-B38B-73119770294E',
price => 1.11,
quantity => 1,
sku => 'SKU1'
}) %]
[% CALL cart.add({
description => 'Description 2',
id => 'D1D94E55-D270-43D5-A8EE-128FD053B97A',
price => 2.22,
quantity => 2,
sku => 'SKU2'
}) %]
[% ELSE %]
Error adding cart
[% END %]
[% IF (cart = hcart.create({
description => 'My Second Shopping Cart',
id => 'CB2787E4-FC6B-48C8-A76D-F64AA9EC48CF',
name => 'New Cart 2',
shopper => 'FA24824B-B889-4B3F-A8E3-91D346CD566E',
type => hcart.CART_TYPE_SAVED
})) %]
[% CALL cart.add({
description => 'Description 3',
id => 'E89B54F9-34EB-4A55-90E9-765345BD2E37',
price => 3.33,
quantity => 3,
sku => 'SKU3'
}) %]
[% CALL cart.add({
description => 'Description 4',
id => '846B56E4-B273-4F4B-9AE2-7AC2C91A7E81',
price => 4.44,
quantity => 4,
sku => 'SKU4'
}) %]
[% ELSE %]
Error adding cart
[% END %]
[% IF (cart = hcart.search({
id => '76DFA8B1-644A-44C5-B545-7D0BAE09313D'
}).first) %]
[% cart.count %]
[% cart.description %]
[% cart.id %]
[% cart.name %]
[% cart.shopper %]
[% cart.subtotal.value %]
[% cart.type %]
[% FOREACH item = cart.items.all %]
-
[% item.description %]
[% item.id %]
[% item.price.value %]
[% item.quantity %]
[% item.sku %]
[% item.total.value %]
[% END %]
[% CALL cart.restore({id => 'CB2787E4-FC6B-48C8-A76D-F64AA9EC48CF'}, hcart.CART_MODE_APPEND) %]
[% cart.count %]
[% cart.subtotal.value %]
[% FOREACH item = cart.items.all %]
[% item.description %]
[% item.price.value %]
[% item.quantity %]
[% item.sku %]
[% item.total.value %]
[% END %]
[% ELSE %]
Could not find cart
[% END %]