[%# $Id$ %] [% USE hcart = Handel.Cart %] [% IF (cart = hcart.create({ description => 'My First Shopping Cart', id => '32EAE1FC-FAD1-4C58-8826-5B9064DE0D63', name => 'New Cart 1', shopper => 'F304CEDF-A62D-4078-8773-1DB3143BBE77', type => hcart.CART_TYPE_SAVED })) %] [% CALL cart.add({ description => 'Description 1', id => '68631AFE-E953-4866-9BAD-AFA3CA654255', price => 1.11, quantity => 1, sku => 'SKU1' }) %] [% CALL cart.add({ description => 'Description 2', id => '22C94C74-8CCD-4894-A489-F0FEFDFA64ED', price => 2.22, quantity => 2, sku => 'SKU2' }) %] [% ELSE %] Error adding cart [% END %] [% IF (cart = hcart.create({ description => 'My Second Shopping Cart', id => '01B9CE36-B18D-4D30-A860-DB54993D4F80', name => 'New Cart 2', shopper => 'A6BD0414-D074-4B28-B166-9CDA2EEDF08B', type => hcart.CART_TYPE_SAVED })) %] [% CALL cart.add({ description => 'Description 1', id => '7A369B09-48BD-49BB-85FE-6660452FDA5D', price => 0.95, quantity => 1, sku => 'SKU1' }) %] [% CALL cart.add({ description => 'Description 3', id => '4F1FE29A-0BA9-428B-A098-F4F69CD48827', price => 3.33, quantity => 3, sku => 'SKU3' }) %] [% ELSE %] Error adding cart [% END %] [% IF (cart = hcart.search({ id => '32EAE1FC-FAD1-4C58-8826-5B9064DE0D63' }).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 => '01B9CE36-B18D-4D30-A860-DB54993D4F80'}, hcart.CART_MODE_MERGE) %] [% 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 %]