Added first name and last name address options for products.

This commit is contained in:
Kaleb Murphy 2008-07-29 20:46:17 +00:00
parent 77aec308c1
commit 2c41d60933
7 changed files with 58 additions and 21 deletions

View file

@ -325,7 +325,7 @@ sub view {
$info->text(
name => 'name',
label => $i18n->get('name','Shop'),
defaultValue => (defined $address) ? $address->get("name") : $form->get('name'),
defaultValue => (defined $address) ? $address->get("firstName")." ".$address->get('lastName') : $form->get('name'),
);
$info->text(
name => 'organization',