##
%hash = (
'One' => [
{
'apptype' => 'xxx',
'count' => '123',
'companyid' => 'xxx',
'state' => 'xx'
},
{
'apptype' => 'xxx',
'count' => '123',
'companyid' => 'xxx',
'state' => 'xx'
},
{
'apptype' => 'xxx',
'count' => '123',
'companyid' => 'xxx',
'state' => 'xx'
}
],
'Two' => [
{
'apptype' => 'xxx',
'count' => '123',
'companyid' => 'xxx',
'state' => 'xx'
},
]
);
####
foreach my $rep (sort keys %hash) {
$template->param(
REP => {
rep => $rep,
DATA => $hash{$rep}
},
);
}
####
|
|
|
|
|
|
|
|
|