Allow creationDate to be settable in the Cart.
This commit is contained in:
parent
a60a2cc4a8
commit
4cbbed3509
1 changed files with 6 additions and 6 deletions
|
|
@ -7,36 +7,36 @@ use Moose;
|
||||||
use WebGUI::Definition;
|
use WebGUI::Definition;
|
||||||
|
|
||||||
property 'shippingAddressId' => (
|
property 'shippingAddressId' => (
|
||||||
is => 'rw',
|
|
||||||
noFormPost => 1,
|
noFormPost => 1,
|
||||||
default => '',
|
default => '',
|
||||||
);
|
);
|
||||||
|
|
||||||
property 'billingAddressId' => (
|
property 'billingAddressId' => (
|
||||||
is => 'rw',
|
|
||||||
noFormPost => 1,
|
noFormPost => 1,
|
||||||
default => '',
|
default => '',
|
||||||
);
|
);
|
||||||
|
|
||||||
property 'shipperId' => (
|
property 'shipperId' => (
|
||||||
is => 'rw',
|
|
||||||
noFormPost => 1,
|
noFormPost => 1,
|
||||||
default => '',
|
default => '',
|
||||||
);
|
);
|
||||||
|
|
||||||
property 'gatewayId' => (
|
property 'gatewayId' => (
|
||||||
is => 'rw',
|
|
||||||
noFormPost => 1,
|
noFormPost => 1,
|
||||||
default => '',
|
default => '',
|
||||||
);
|
);
|
||||||
|
|
||||||
property 'posUserId' => (
|
property 'posUserId' => (
|
||||||
is => 'rw',
|
|
||||||
noFormPost => 1,
|
noFormPost => 1,
|
||||||
default => '',
|
default => '',
|
||||||
);
|
);
|
||||||
|
|
||||||
has [ qw/cartId creationDate session/] => (
|
property creationDate => (
|
||||||
|
required => 1,
|
||||||
|
noFormPost => 1,
|
||||||
|
default => '',
|
||||||
|
);
|
||||||
|
has [ qw/cartId session/] => (
|
||||||
is => 'ro',
|
is => 'ro',
|
||||||
required => 1,
|
required => 1,
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue