made it more obvious how to check out

This commit is contained in:
JT Smith 2008-11-24 15:15:52 +00:00
parent eafdddc84b
commit f927c0f128
4 changed files with 6 additions and 5 deletions

View file

@ -1,5 +1,6 @@
7.6.4 7.6.4
- Brand new Survey system. Make sure to export your old results as they will - Brand new Survey system. Make sure to export your old results as they will
- Made it more obvious how to check out when viewing the cart.
- Added a wait timeout parameter to the WAITING method, so that Spectre - Added a wait timeout parameter to the WAITING method, so that Spectre
doesn't have to check something that the workflow activity knows it will doesn't have to check something that the workflow activity knows it will
have to wait on for a while. have to wait on for a while.

View file

@ -792,13 +792,13 @@ sub www_view {
. WebGUI::Form::hidden($session, {name=>"itemId", value=>""}) . WebGUI::Form::hidden($session, {name=>"itemId", value=>""})
. WebGUI::Form::hidden($session, {name=>"callback", value=>""}), . WebGUI::Form::hidden($session, {name=>"callback", value=>""}),
formFooter => WebGUI::Form::formFooter($session), formFooter => WebGUI::Form::formFooter($session),
updateButton => WebGUI::Form::submit($session, {value=>$i18n->get("update cart button")}), updateButton => WebGUI::Form::submit($session, {value=>$i18n->get("update cart button"), extras=>q|id="updateCartButton"|}),
checkoutButton => WebGUI::Form::submit($session, {value=>$i18n->get("checkout button"), checkoutButton => WebGUI::Form::submit($session, {value=>$i18n->get("checkout button"),
extras=>q|onclick="this.form.method.value='checkout';this.form.submit;"|}), extras=>q|onclick="this.form.method.value='checkout';this.form.submit;" id="checkoutButton"|}),
continueShoppingButton => WebGUI::Form::submit($session, {value=>$i18n->get("continue shopping button"), continueShoppingButton => WebGUI::Form::submit($session, {value=>$i18n->get("continue shopping button"),
extras=>q|onclick="this.form.method.value='continueShopping';this.form.submit;"|}), extras=>q|onclick="this.form.method.value='continueShopping';this.form.submit;" id="continueShoppingButton"|}),
chooseShippingButton => WebGUI::Form::submit($session, {value=>$i18n->get("choose shipping button"), chooseShippingButton => WebGUI::Form::submit($session, {value=>$i18n->get("choose shipping button"),
extras=>q|onclick="setCallbackForAddressChooser(this.form);"|}), extras=>q|onclick="setCallbackForAddressChooser(this.form);" id="chooseAddressButton"|}),
shipToButton => WebGUI::Form::submit($session, {value=>$i18n->get("ship to button"), shipToButton => WebGUI::Form::submit($session, {value=>$i18n->get("ship to button"),
extras=>q|onclick="setCallbackForAddressChooser(this.form);"|}), extras=>q|onclick="setCallbackForAddressChooser(this.form);"|}),
subtotalPrice => $self->formatCurrency($self->calculateSubtotal()), subtotalPrice => $self->formatCurrency($self->calculateSubtotal()),

View file

@ -916,7 +916,7 @@ our $I18N = {
}, },
'choose shipping button' => { 'choose shipping button' => {
message => q|Choose Address|, message => q|Choose Address & Checkout|,
lastUpdated => 1224818677, lastUpdated => 1224818677,
context => q|a button the user clicks on to choose shipping information and tax calculation| context => q|a button the user clicks on to choose shipping information and tax calculation|
}, },