webgui/lib/WebGUI/Help/Asset_Sku.pm
Colin Kuskie db290f91f9 Add an option to the Sku to require individual shipping of this sku, separate
from other items in the cart.  Update the FlatRate driver to support calculating that.
2009-04-29 16:52:16 +00:00

28 lines
774 B
Perl

package WebGUI::Help::Asset_Sku;
use strict;
our $HELP = {
'sku properties' => {
private => 1,
title => 'sku properties title',
body => '',
isa => [
{ tag => 'asset template asset variables',
namespace => 'Asset'
},
],
fields => [],
variables => [
{ 'name' => 'sku', description=>'sku help'},
{ 'name' => 'description', description=>'description help' },
{ 'name' => 'displayTitle', description=>'display title help' },
{ 'name' => 'vendorId', description=>'vendor help' },
{ 'name' => 'shipsSeparately', description=>'shipsSeparately help' },
],
related => []
},
};
1;