View | Details | Raw Unified | Return to bug 11253
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt (-1 / +1 lines)
Lines 249-255 $(document).ready(function(){ Link Here
249
            [% result.damaged | html %]
249
            [% result.damaged | html %]
250
            </td>
250
            </td>
251
            <td>
251
            <td>
252
            [% result.datelastseen | html | $KohaDates%]
252
            [% result.datelastseen | $KohaDates | html %]
253
            </td>
253
            </td>
254
            <td>
254
            <td>
255
            [% IF result.problem == 'wrongplace' %]
255
            [% IF result.problem == 'wrongplace' %]
(-)a/tools/inventory.pl (-2 / +1 lines)
Lines 151-157 my @errorloop; Link Here
151
if ( $uploadbarcodes && length($uploadbarcodes) > 0 ) {
151
if ( $uploadbarcodes && length($uploadbarcodes) > 0 ) {
152
    my $dbh = C4::Context->dbh;
152
    my $dbh = C4::Context->dbh;
153
    my $date = dt_from_string( $input->param('setdate') );
153
    my $date = dt_from_string( $input->param('setdate') );
154
    $date = output_pref( $date, 'iso' );
154
    $date = output_pref ( { dt => $date, dateformat => 'iso' } );
155
155
156
    my $strsth  = "select * from issues, items where items.itemnumber=issues.itemnumber and items.barcode =?";
156
    my $strsth  = "select * from issues, items where items.itemnumber=issues.itemnumber and items.barcode =?";
157
    my $qonloan = $dbh->prepare($strsth);
157
    my $qonloan = $dbh->prepare($strsth);
158
- 

Return to bug 11253