Add a billing address to the cart. Add form processing for an address form to the AddressBook. Support for choosing shipping methods without an address.

This commit is contained in:
Colin Kuskie 2010-04-26 09:30:40 -07:00
parent 8504a34c65
commit 9838d20458
6 changed files with 134 additions and 59 deletions

View file

@ -1731,6 +1731,24 @@ our $I18N = {
context => q|commerce setting help|
},
'Billing Address' => {
message => q|Billing Address|,
lastUpdated => 0,
context => q|template label for the cart|
},
'Shipping Address' => {
message => q|Shipping Address|,
lastUpdated => 0,
context => q|template label for the cart|
},
'use same shipping as billing' => {
message => q|Use the same shipping address as billing address.|,
lastUpdated => 0,
context => q|template label for the cart|
},
};
1;