registrant management is mostly working
This commit is contained in:
parent
57934cf1bc
commit
9d99c7e71d
6 changed files with 363 additions and 1689 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -146,8 +146,6 @@ sub toHtml {
|
|||
}
|
||||
my $i=0;
|
||||
my $options = $self->getOptions;
|
||||
$self->session->errorHandler->warn(JSON->new->encode($options));
|
||||
|
||||
foreach my $key (keys %{$options}) {
|
||||
$i++;
|
||||
my @values = $self->getDefaultValue;
|
||||
|
|
|
|||
|
|
@ -223,7 +223,6 @@ sub update {
|
|||
$newProperties->{ configuredTitle } = $sku->getConfiguredTitle;
|
||||
$newProperties->{ isRecurring } = $sku->isRecurring;
|
||||
$newProperties->{ recurInterval } = $sku->getRecurInterval if $sku->isRecurring;
|
||||
|
||||
my $address = $item->getShippingAddress;
|
||||
$newProperties->{ shippingAddressId } = $address->getId;
|
||||
$newProperties->{ shippingAddressName } = $address->get('name');
|
||||
|
|
|
|||
|
|
@ -213,7 +213,7 @@ our $I18N = {
|
|||
},
|
||||
|
||||
'lookup registrant template' => {
|
||||
message => q|Lookup Registrant|,
|
||||
message => q|Lookup Registrant Template|,
|
||||
lastUpdated => 0,
|
||||
context => q|a property label|,
|
||||
},
|
||||
|
|
@ -224,6 +224,30 @@ our $I18N = {
|
|||
context => q|help for a property label|,
|
||||
},
|
||||
|
||||
'print badge template' => {
|
||||
message => q|Print Badge Template|,
|
||||
lastUpdated => 0,
|
||||
context => q|a property label|,
|
||||
},
|
||||
|
||||
'print badge template help' => {
|
||||
message => q|Which template would you like to use for printing badges?|,
|
||||
lastUpdated => 0,
|
||||
context => q|help for a property label|,
|
||||
},
|
||||
|
||||
'print ticket template' => {
|
||||
message => q|Print Ticket Template|,
|
||||
lastUpdated => 0,
|
||||
context => q|a property label|,
|
||||
},
|
||||
|
||||
'print ticket template help' => {
|
||||
message => q|Which template would you like to use for printing tickets?|,
|
||||
lastUpdated => 0,
|
||||
context => q|help for a property label|,
|
||||
},
|
||||
|
||||
'badge builder template' => {
|
||||
message => q|Badge Builder Template|,
|
||||
lastUpdated => 0,
|
||||
|
|
@ -314,6 +338,54 @@ our $I18N = {
|
|||
context => q|a property label|,
|
||||
},
|
||||
|
||||
'print' => {
|
||||
message => q|Print|,
|
||||
lastUpdated => 0,
|
||||
context => q|a link label|,
|
||||
},
|
||||
|
||||
'checked in' => {
|
||||
message => q|Checked In|,
|
||||
lastUpdated => 0,
|
||||
context => q|used in registration management to alert staff whether user has already picked up badge|,
|
||||
},
|
||||
|
||||
'not checked in' => {
|
||||
message => q|Not Checked In|,
|
||||
lastUpdated => 0,
|
||||
context => q|used in registration management to alert staff whether user has already picked up badge|,
|
||||
},
|
||||
|
||||
'mark as not checked in' => {
|
||||
message => q|Mark As Not Checked In|,
|
||||
lastUpdated => 0,
|
||||
context => q|a link label|,
|
||||
},
|
||||
|
||||
'mark as checked in' => {
|
||||
message => q|Mark As Checked In|,
|
||||
lastUpdated => 0,
|
||||
context => q|a link label|,
|
||||
},
|
||||
|
||||
'refund' => {
|
||||
message => q|Refund|,
|
||||
lastUpdated => 0,
|
||||
context => q|a link label|,
|
||||
},
|
||||
|
||||
'add more items' => {
|
||||
message => q|Add More Items|,
|
||||
lastUpdated => 0,
|
||||
context => q|a link label|,
|
||||
},
|
||||
|
||||
'notes' => {
|
||||
message => q|Notes|,
|
||||
lastUpdated => 0,
|
||||
context => q|a property label for registrant notes|,
|
||||
},
|
||||
|
||||
'ribbon instructions help' => {
|
||||
message => q|Give the user some help on what to do with a ribbon.|,
|
||||
lastUpdated => 0,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue