[Koha-bugs] [Bug 10366] Alert librarian if an invoice number is duplicated

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Mon Jun 3 06:04:27 CEST 2013


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10366

Srdjan Jankovic <srdjan at catalyst.net.nz> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |srdjan at catalyst.net.nz

--- Comment #2 from Srdjan Jankovic <srdjan at catalyst.net.nz> ---
@invoices should be checked only if AcqWarnOnDuplicateInvoice is set, otherwise
it is an unnecessary db read.
Can you please amend to something like
my $duplicate_invoices;
if ( C4::Context->preference('AcqWarnOnDuplicateInvoice') ) {
    if ( GetInvoices(...) ) {
        $duplicate_invoices = 1;
    }
}
if ($duplicate_invoices) {
    ...
} else {
    $op = 'confirm';
}

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list