Allow creationDate to be settable in the Cart.

This commit is contained in:
Colin Kuskie 2010-07-07 15:52:16 -07:00
parent a60a2cc4a8
commit 4cbbed3509

View file

@ -7,36 +7,36 @@ use Moose;
use WebGUI::Definition;
property 'shippingAddressId' => (
is => 'rw',
noFormPost => 1,
default => '',
);
property 'billingAddressId' => (
is => 'rw',
noFormPost => 1,
default => '',
);
property 'shipperId' => (
is => 'rw',
noFormPost => 1,
default => '',
);
property 'gatewayId' => (
is => 'rw',
noFormPost => 1,
default => '',
);
property 'posUserId' => (
is => 'rw',
noFormPost => 1,
default => '',
);
has [ qw/cartId creationDate session/] => (
property creationDate => (
required => 1,
noFormPost => 1,
default => '',
);
has [ qw/cartId session/] => (
is => 'ro',
required => 1,
);