[%# $Id$ %]
[% USE hcart = Handel.Cart %]
[% UNLESS (cart = hcart.create({
description => 'My New Shopping Cart',
id => '535FD0DD-A88E-42B0-B503-7FFB4384B4D6',
name => 'New Cart',
shopper => '3558080C-9C97-424B-B5CB-D2133A31B3BD',
type => hcart.CART_TYPE_SAVED
})) %]
Error creating shopping cart
[% END %]
[% IF (cart = hcart.search({
type => hcart.CART_TYPE_SAVED,
id => '535FD0DD-A88E-42B0-B503-7FFB4384B4D6'
}).first) %]
[% cart.count %]
[% cart.description %]
[% cart.id %]
[% cart.name %]
[% cart.shopper %]
[% cart.subtotal.value %]
[% cart.type %]
[% CALL cart.description('My New Description') %]
[% CALL cart.shopper('846E82AC-E8BF-4348-86CD-C521C1E3194A') %]
[% CALL cart.name('My New Name') %]
[% CALL cart.type(hcart.CART_TYPE_TEMP) %]
[% cart.count %]
[% cart.description %]
[% cart.id %]
[% cart.name %]
[% cart.shopper %]
[% cart.subtotal.value %]
[% cart.type %]
[% ELSE %]
Could not find cart
[% END %]