<& /includes/header_n.masn &>
Shopping Cart
Please review your order or continue shopping.

To place an order to be shipped or picked up at our Factory Outlet Store, please call Damien Howard at 718-772-0654 or dhoward@perscholas.org

 
% unless ( scalar( @$items ) ) { % } else { % foreach ( @$items ) { % } % }
Item Qty
[Recalculate]
Unit Price Total Price Remove?
There are no items in your cart
<% $_->product->name %> <% $_->product->price_readable %> <% $_->qty_price_readable %>
% if ( scalar(@$items) ) {
 
% }

<& /includes/footer_n.masn &> <%init> my $cartinfo = $CurrentSession->state_named('shopping_cart'); my $cart; if ( my $cart_id = $cartinfo->data('order_id') ) { $cart = EBiz::Order::Order->fetch_id( $cart_id ); } else { $cart = EBiz::Order::Order->new(); $cart->note( 'Website Order' ); $cart->save_record; $cartinfo->data('order_id', $cart->id); } my $items = $cart->items; my $hook_login = $CurrentSession->state_named('hook_login'); my $h_code = $hook_login->data( 'logged_in' );