Document per-item cart template variables relating to taxes.

This commit is contained in:
Colin Kuskie 2010-06-30 10:29:15 -07:00
parent 89e20a3073
commit 0853a95873
3 changed files with 41 additions and 0 deletions

View file

@ -1,5 +1,6 @@
7.9.9
- fixed #11693: Shopping cart does not show for visitor user
- fixed: missing per-item template variables for the cart.
7.9.8
- fixed #11651: First Day of Week is a string...

View file

@ -113,6 +113,22 @@ our $HELP = {
name => "shippingAddress",
description => "shippingAddress help",
},
{
name => "taxRate",
description => "item taxRate help",
},
{
name => "taxAmount",
description => "item taxAmount help",
},
{
name => "pricePlusTax",
description => "item pricePlusTax help",
},
{
name => "extendedPricePlusTax",
description => "item extendedPricePlusTax help",
},
],
},
{

View file

@ -1989,6 +1989,30 @@ our $I18N = {
context => q|Template variable help|
},
'item taxRate help' => {
message => q|The tax rate for this item. This variable will only be populated if the current user is not Visitor.|,
lastUpdated => 0,
context => q|Template variable help|
},
'item taxAmount help' => {
message => q|The amount of tax for this item. This variable will only be populated if the current user is not Visitor.|,
lastUpdated => 0,
context => q|Template variable help|
},
'item pricePlusTax help' => {
message => q|The amount of tax plus the price for this item. This variable will only be populated if the current user is not Visitor.|,
lastUpdated => 0,
context => q|Template variable help|
},
'item extendedPricePlusTax help' => {
message => q|The amount of tax plus the price for this item, times the quantity of this item in the cart. This variable will only be populated if the current user is not Visitor.|,
lastUpdated => 0,
context => q|Template variable help|
},
};
1;