[%# $Id$ %] [% USE hcart = Handel.Cart %] [% IF (cart = hcart.create({ description => 'My New Shopping Cart', id => '6509982B-14B3-4AB0-8DEB-B5160B115521', name => 'New Cart', shopper => 'BEF1EC2E-DA24-42B3-907A-F1EA796E13E9', type => hcart.CART_TYPE_TEMP })) %] [% CALL cart.add({ description => 'Description 1', id => 'E766EAC7-CB67-4BFC-A54F-592B1F029363', price => 1.11, quantity => 1, sku => 'SKU1' }) %] [% CALL cart.add({ description => 'Description 2', id => 'AC156B65-0779-4D96-AE72-CAB2E981F34E', price => 2.22, quantity => 2, sku => 'SKU2' }) %] [% ELSE %] Error creating shopping cart [% END %] [% IF (cart = hcart.search({ type => hcart.CART_TYPE_TEMP, id => '6509982B-14B3-4AB0-8DEB-B5160B115521' }).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 %] [% CALL item.description('My Updated Item') %] [% CALL item.price(10.13) %] [% CALL item.quantity(22) %] [% CALL item.sku('UPDATED123') %] [% item.description %] [% item.id %] [% item.price.value %] [% item.quantity %] [% item.sku %] [% item.total.value %] [% END %] [% cart.subtotal.value %] [% ELSE %] Could not find cart [% END %]