sub check_status
{
@status_atividades = @_;
$status_possivel="";
$l = 0;
foreach $status(@status_atividades)
{
if ($l < 1)
{
if ($status eq "1" or $status eq "9")
{
$status_possivel .= "\n";
$status_possivel .= "\n";
$l++;
}
elsif ($status eq "3" or $status eq "9")
{
$status_possivel .= "\n";
$l++;
}
}
return($status_possivel);
}
}