added EMS Schedule table
This commit is contained in:
parent
8de4e6fed2
commit
0fb2b7775d
7 changed files with 411 additions and 4 deletions
|
|
@ -32,6 +32,7 @@ use WebGUI::HTMLForm;
|
|||
use WebGUI::International;
|
||||
use WebGUI::Utility;
|
||||
use WebGUI::Workflow::Instance;
|
||||
use Tie::IxHash;
|
||||
|
||||
|
||||
|
||||
|
|
@ -53,12 +54,27 @@ sub definition {
|
|||
},
|
||||
templateId => {
|
||||
fieldType => 'template',
|
||||
defaultValue => '2rC4ErZ3c77OJzJm7O5s3w',
|
||||
defaultValue => '2rC4ErZ3c77OJzJm7O5s3w',
|
||||
tab => 'display',
|
||||
label => $i18n->get('main template'),
|
||||
hoverHelp => $i18n->get('main template help'),
|
||||
namespace => 'EMS',
|
||||
},
|
||||
scheduleTemplateId => {
|
||||
fieldType => 'template',
|
||||
defaultValue => 'S2_LsvVa95OSqc66ITAoig',
|
||||
tab => 'display',
|
||||
label => $i18n->get('schedule template'),
|
||||
hoverHelp => $i18n->get('schedule template help'),
|
||||
namespace => 'EMS',
|
||||
},
|
||||
scheduleColumnsPerPage => {
|
||||
fieldType => 'Integer',
|
||||
defaultValue => '5',
|
||||
tab => 'display',
|
||||
label => $i18n->get('schedule number of columns'),
|
||||
hoverHelp => $i18n->get('schedule number of columns help'),
|
||||
},
|
||||
badgeBuilderTemplateId => {
|
||||
fieldType => 'template',
|
||||
defaultValue => 'BMybD3cEnmXVk2wQ_qEsRQ',
|
||||
|
|
@ -257,6 +273,35 @@ sub getEventFieldsForImport {
|
|||
return \@fields;
|
||||
}
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
=head2 getLocations ()
|
||||
|
||||
Returns an array of all locations for this EMS
|
||||
SQL optimized for quick access
|
||||
|
||||
=cut
|
||||
|
||||
sub getLocations {
|
||||
my $self = shift;
|
||||
|
||||
my %hash;
|
||||
my $tickets = $self->getTickets;
|
||||
for my $ticket ( @$tickets ) {
|
||||
my $name = $ticket->get('location');
|
||||
next if not defined $name;
|
||||
$hash{$name} = 1;
|
||||
}
|
||||
my @locations = sort keys %hash;
|
||||
# @locations = $self->session->db->read(q{
|
||||
# select distinct(EMSTicket.location)
|
||||
# from EMSTicket join asset using (assetId)
|
||||
# where asset.parentId = ?
|
||||
# order by EMSTicket.location
|
||||
# },[$self->getId])->array;
|
||||
|
||||
return @locations;
|
||||
}
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
|
|
@ -410,6 +455,7 @@ sub view {
|
|||
my %var = (
|
||||
addBadgeUrl => $self->getUrl('func=add;class=WebGUI::Asset::Sku::EMSBadge'),
|
||||
buildBadgeUrl => $self->getUrl('func=buildBadge'),
|
||||
viewScheduleUrl => $self->getUrl('func=viewSchedule'),
|
||||
manageBadgeGroupsUrl=> $self->getUrl('func=manageBadgeGroups'),
|
||||
getBadgesUrl => $self->getUrl('func=getBadgesAsJson'),
|
||||
canEdit => $self->canEdit,
|
||||
|
|
@ -1085,6 +1131,103 @@ sub www_getRibbonsAsJson {
|
|||
}
|
||||
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
=head2 www_getScheduleDataJSON ()
|
||||
|
||||
returns the JSON data for a page of the schedule table
|
||||
|
||||
=cut
|
||||
|
||||
|
||||
sub www_getScheduleDataJSON {
|
||||
my $self = shift;
|
||||
my $session = $self->session;
|
||||
# the following two are expected to be configurable...
|
||||
my $locationsPerPage = $self->get('scheduleColumnsPerPage');
|
||||
|
||||
my ($db, $form) = $session->quick(qw(db form));
|
||||
my $pageNumber = $form->get('pageNumber') || 1;
|
||||
my @ticketLocations = $self->getLocations();
|
||||
# the total number of pages is the number of locations divided by the number of locations per page
|
||||
my $numberOfPages = int( .9 + scalar(@ticketLocations) / $locationsPerPage );
|
||||
# skip everything else if there are no locations/pages
|
||||
return JSON->new->encode( {
|
||||
records => [ ], totalRecords => 0, recordsReturned => 0, startIndex => 0,
|
||||
currentPage => 0, totalPages => 0,
|
||||
sort => undef, dir => 'asc', pageSize => 0,
|
||||
}) if $numberOfPages == 0;
|
||||
# now we pick out the locations to be displayed on this page
|
||||
my $indexFirstLocation = ($pageNumber-1)*$locationsPerPage;
|
||||
my $indexLastLocation = $pageNumber*$locationsPerPage - 1;
|
||||
@ticketLocations = @ticketLocations[$indexFirstLocation..$indexLastLocation];
|
||||
my $tickets = $db->read( q{
|
||||
select assetData.assetId, sku.description, assetData.title, EMSTicket.startDate, EMSTicket.location
|
||||
from EMSTicket
|
||||
join sku using (assetId,revisionDate)
|
||||
join assetData using (assetId,revisionDate)
|
||||
join asset using (assetId)
|
||||
where asset.parentId = ?
|
||||
and EMSTicket.location in ( } .
|
||||
join( ',', (map { $db->quote($_) } (@ticketLocations))) .
|
||||
q{ )
|
||||
and assetData.revisionDate = (
|
||||
select max(revisionDate)
|
||||
from assetData
|
||||
where assetData.assetId=asset.assetId
|
||||
and ( assetData.status = 'approved'
|
||||
or assetData.tagId = ? )
|
||||
)
|
||||
order by EMSTicket.startDate
|
||||
},[ $self->getId,
|
||||
$session->scratch->get("versionTag")
|
||||
]);
|
||||
my %hash;
|
||||
tie %hash, 'Tie::IxHash';
|
||||
while( my $row = $tickets->hashRef ) {
|
||||
$row->{type} = 'ticket';
|
||||
$hash{$row->{startDate}}{$row->{location}} = $row;
|
||||
}
|
||||
my %results = ();
|
||||
$results{records} = []; ##Initialize to an empty array
|
||||
my $ctr = 0;
|
||||
my %locationMap = map { 'col' . ++$ctr , $_ } @ticketLocations;
|
||||
# fill out the columns in the table
|
||||
while( $ctr < $locationsPerPage ) { $locationMap{ 'col' . ++$ctr } = '' };
|
||||
push @{$results{records}}, { colDate => '' , map { $_ , { type => 'label', title => $locationMap{$_} || '' } } ( keys %locationMap ) };
|
||||
for my $startDate ( keys %hash ) {
|
||||
my $row = { colDate => $startDate };
|
||||
my $empty = 1;
|
||||
for my $col ( keys %locationMap ) {
|
||||
my $location = $locationMap{$col};
|
||||
if( exists $hash{$startDate}{$location} ) {
|
||||
$row->{$col} = $hash{$startDate}{$location};
|
||||
$empty = 0;
|
||||
} else {
|
||||
$row->{$col} = { type => 'empty' };
|
||||
}
|
||||
}
|
||||
next if $empty;
|
||||
push @{$results{records}}, $row;
|
||||
}
|
||||
|
||||
my $rowCount = scalar(@{$results{records}});
|
||||
$results{totalRecords} = $rowCount;
|
||||
$results{recordsReturned} = $rowCount;
|
||||
$results{rowsPerPage} = $rowCount;
|
||||
$results{startIndex} = 0;
|
||||
$results{sort} = undef;
|
||||
$results{dir} = "asc";
|
||||
$results{pageSize} = 10;
|
||||
# these next two are used to configure the paginator
|
||||
$results{totalPages} = $numberOfPages;
|
||||
$results{currentPage} = $pageNumber;
|
||||
$session->http->setMimeType('application/json');
|
||||
return JSON->new->encode(\%results);
|
||||
}
|
||||
|
||||
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
=head2 www_getTicketsAsJson ()
|
||||
|
|
@ -1240,6 +1383,7 @@ className='WebGUI::Asset::Sku::EMSTicket' and state='published' and revisionDate
|
|||
}
|
||||
|
||||
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
=head2 www_getTokensAsJson ()
|
||||
|
|
@ -1872,4 +2016,36 @@ sub www_toggleRegistrantCheckedIn {
|
|||
}
|
||||
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
=head2 www_viewSchedule ()
|
||||
|
||||
view the schedule table
|
||||
|
||||
=cut
|
||||
|
||||
sub www_viewSchedule {
|
||||
my $self = shift;
|
||||
my $db = $self->session->db;
|
||||
my $rowsPerPage = 25;
|
||||
my $locationsPerPage = $self->get('scheduleColumnsPerPage');
|
||||
|
||||
my @columnNames = map { "'col" . $_ . "'" } ( 1..$locationsPerPage );
|
||||
my $fieldList = join ',', @columnNames;
|
||||
my $dataColumns = join ",\n", map {
|
||||
'{key:' . $_ . ',sortable:false,label:"",formatter:formatViewScheduleItem}'
|
||||
} @columnNames;
|
||||
|
||||
return $self->processStyle(
|
||||
$self->processTemplate({
|
||||
backUrl => $self->getUrl,
|
||||
rowsPerPage => $rowsPerPage,
|
||||
dataColumns => $dataColumns,
|
||||
fieldList => $fieldList,
|
||||
dataSourceUrl => $self->getUrl('func=getScheduleDataJSON'),
|
||||
},$self->get('scheduleTemplateId')));
|
||||
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
|
|
|
|||
|
|
@ -80,6 +80,18 @@ our $I18N = {
|
|||
context => q|a link label|,
|
||||
},
|
||||
|
||||
'view schedule' => {
|
||||
message => q|Schedule|,
|
||||
lastUpdated => 0,
|
||||
context => q|a link label:Brings up the schedule for the event.|,
|
||||
},
|
||||
|
||||
'schedule back link' => {
|
||||
message => q|Back|,
|
||||
lastUpdated => 0,
|
||||
context => q|a link label:goes back to the main Event Manager form|,
|
||||
},
|
||||
|
||||
'view tickets' => {
|
||||
message => q|View Tickets|,
|
||||
lastUpdated => 0,
|
||||
|
|
@ -1842,6 +1854,30 @@ normal templates.|,
|
|||
context => q|Event data field|,
|
||||
},
|
||||
|
||||
'schedule template' => {
|
||||
message => q|Schedule Template|,
|
||||
lastUpdated => 1147050475,
|
||||
context => q|Select a template to display the schedule tables.|,
|
||||
},
|
||||
|
||||
'schedule template help' => {
|
||||
message => q|This template is used to display the schedule for events|,
|
||||
lastUpdated => 1147050475,
|
||||
context => q|Help text for the Schedule Template field|,
|
||||
},
|
||||
|
||||
'schedule number of columns' => {
|
||||
message => q|Number of columns per page|,
|
||||
lastUpdated => 1147050475,
|
||||
context => q|the number of columns per page in the schedule table|,
|
||||
},
|
||||
|
||||
'schedule number of columns help' => {
|
||||
message => q|This controls how many event locations will be displayed per page in the schedule. If your event only has a few locations then set this to that number; for ten to twenty locations: use half or a third of the number; for a large number of locations use the default|,
|
||||
lastUpdated => 1147050475,
|
||||
context => q|help text for the columns per page field|,
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue