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

(-)a/circ/transferstoreceive.pl (-1 / +1 lines)
Lines 119-125 foreach my $br ( keys %$branches ) { Link Here
119
119
120
$template->param(
120
$template->param(
121
    branchesloop => \@branchesloop,
121
    branchesloop => \@branchesloop,
122
    show_date    => output_pref({ dt => dt_from_string, dateonly => 1 }),
122
    show_date    => output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }),
123
	TransfersMaxDaysWarning => C4::Context->preference('TransfersMaxDaysWarning'),
123
	TransfersMaxDaysWarning => C4::Context->preference('TransfersMaxDaysWarning'),
124
	latetransfers => $latetransfers ? 1 : 0,
124
	latetransfers => $latetransfers ? 1 : 0,
125
);
125
);
(-)a/circ/waitingreserves.pl (-1 / +1 lines)
Lines 157-163 $template->param( Link Here
157
    reservecount => $reservcount,
157
    reservecount => $reservcount,
158
    overloop    => \@overloop,
158
    overloop    => \@overloop,
159
    overcount   => $overcount,
159
    overcount   => $overcount,
160
    show_date   => output_pref({ dt => dt_from_string, dateonly => 1 }),
160
    show_date   => output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }),
161
    ReservesMaxPickUpDelay => C4::Context->preference('ReservesMaxPickUpDelay')
161
    ReservesMaxPickUpDelay => C4::Context->preference('ReservesMaxPickUpDelay')
162
);
162
);
163
163
(-)a/members/printinvoice.pl (-2 / +1 lines)
Lines 89-95 for ( my $i = 0 ; $i < $numaccts ; $i++ ) { Link Here
89
    }
89
    }
90
90
91
    my %row = (
91
    my %row = (
92
        'date'                    => output_pref({ dt => dt_from_string( $accts->[$i]{'date'}, 'iso' ), dateonly => 1 }),
92
        'date'                    => output_pref({ dt => dt_from_string( $accts->[$i]{'date'} ), dateonly => 1 }),
93
        'amountcredit'            => $accts->[$i]{'amountcredit'},
93
        'amountcredit'            => $accts->[$i]{'amountcredit'},
94
        'amountoutstandingcredit' => $accts->[$i]{'amountoutstandingcredit'},
94
        'amountoutstandingcredit' => $accts->[$i]{'amountoutstandingcredit'},
95
        'toggle'                  => $accts->[$i]{'toggle'},
95
        'toggle'                  => $accts->[$i]{'toggle'},
96
- 

Return to bug 13813