The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Mango::Cart::Item - Module representing an individual shopping cart item

SYNOPSIS

    use Mango::Cart::Item;
    
    my $items = $cart->items;
    while (my $item = $items->next) {
        print $item->sku;
    };

DESCRIPTION

Mango::Cart::Item represent a part in the shopping cart to be ordered.

METHODS

id

Returns the id of the current cart item.

    print $item->id;

sku

Arguments: $sku

Gets/sets the sku (stock keeping unit/part number) for the cart item.

    $item->sku('ABC123');
    print $item->sku;

quantity

Arguments: $quantity

Gets/sets the quantity, or the number of this item being purchased.

    $item->quantity(3);
    print $item->quantity;

price

Arguments: $price

Gets/sets the price for the cart item. The price is returned as a stringified Mango::Currency object.

    $item->price(12.95);
    print $item->price;
    print $item->price->format;

total

Returns the total price for the cart item as a stringified Mango::Currency object. This is really just quantity*total and is provided for convenience.

    print $item->total;
    print $item->total->format;

description

Arguments: $description

Gets/sets the description for the current cart item.

    $item->description('Best Item Ever');
    print $item->description;

update

Saves any changes made to the current item.

SEE ALSO

Mango::Cart, Mango::Schema::Cart::Item, Mango::Currency

AUTHOR

    Christopher H. Laco
    CPAN ID: CLACO
    claco@chrislaco.com
    http://today.icantfocus.com/blog/