user interface mostly working for ems
This commit is contained in:
parent
3ce33df7ec
commit
29b95c45ee
3 changed files with 155 additions and 36 deletions
|
|
@ -186,6 +186,23 @@ sub getQuantityAvailable {
|
|||
return $self->get("seatsAvailable") - $seatsTaken;
|
||||
}
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
=head2 indexContent ( )
|
||||
|
||||
Adding location and eventNumber as a keyword. See WebGUI::Asset::indexContent() for additonal details.
|
||||
|
||||
=cut
|
||||
|
||||
sub indexContent {
|
||||
my $self = shift;
|
||||
my $indexer = $self->SUPER::indexContent;
|
||||
$indexer->addKeywords($self->get('location').' '.$self->get('eventNumber'));
|
||||
return $indexer;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
=head2 onCompletePurchase
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue