https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32435
--- Comment #28 from Marcel de Rooy <[email protected]> --- Passing QA but with the following remarks: WARN t/db_dependent/Koha/Ticket.t WARN tidiness The file is less tidy than before (bad/messy lines before: 44, now: 48) WARN t/db_dependent/Koha/Ticket/Update.t WARN tidiness The file is less tidy than before (bad/messy lines before: 10, now: 14) Added Resolved_2 status. Resolved a concern. Resolved_2 does not show up under main status. But is listed (suboptimal) when clicking details. my $av = Koha::AuthorisedValues->search( { category => 'TICKET_STATUS', authorised_value => $self->status, } ); # Fall back to TICKET_RESOLUTION as needed if ( !$av->count ) { $av = Koha::AuthorisedValues->search( { category => 'TICKET_RESOLUTION', authorised_value => $self->status, } ); } No blocker. But not sure if we create maintainable code when we are going to look for statuses in several AVs. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
