- or download this
# This looks wrong, but it's what you gave us
my $batches = $data->{Jobs}{Job}{Blocks}{Block}{Batches}{Batch};
...
print $item->{CorporateName} . "\n";
print $item->{Amount} . "\n";
}
- or download this
my $jobs =$data->{Jobs}{Job};
for my $job (@$jobs) {
...
}
}
}
- or download this
GroupTags => {
Jobs => 'Job',
Blocks => 'Block',
Batches => 'Batch',
},