[%# $Id$ %]
[% USE hcart = Handel.Cart %]
[% IF (cart = hcart.create({
description => 'My New Shopping Cart',
id => '279C429E-547C-4429-9DA9-357659E3F654',
name => 'New Cart',
shopper => '15EAE035-FCF2-4CE2-911C-D2D5EEA1FEB4',
type => hcart.CART_TYPE_TEMP
})) %]
[% 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({
id => '279C429E-547C-4429-9DA9-357659E3F654',
type => hcart.CART_TYPE_TEMP
}).first) %]
[% cart.count %]
[% cart.description %]
[% cart.id %]
[% cart.name %]
[% cart.shopper %]
[% cart.subtotal.value %]
[% cart.type %]
[% CALL cart.save %]
[% cart.type %]
[% ELSE %]
Could not find cart
[% END %]