added coupons

This commit is contained in:
JT Smith 2008-04-30 21:43:16 +00:00
parent 05f14b3b76
commit 102b5fd1ae
13 changed files with 456 additions and 23 deletions

View file

@ -0,0 +1,34 @@
package WebGUI::Help::Asset_FlatDiscount;
use strict;
our $HELP = {
'template' => {
title => 'flat discount coupon template',
body => 'flat discount coupon template help',
isa => [
{
tag => 'sku properties',
namespace => 'Asset_Sku',
},
],
fields => [
],
variables => [
{ name => "formHeader" , required=>1},
{ name => "formFooter" , required=>1 },
{ name => "addToCartButton" , required=>1 },
{ name => "mustSpend", description=>"must spend help" },
{ name => "percentageDiscount", description=>"percentage discount help" },
{ name => "priceDiscount", description=>"price discount help" },
{ name => "templateId", description=>"template help" },
],
related => [
],
},
};
1;