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

(-)a/acqui/lateorders.pl (-3 / +2 lines)
Lines 110-121 my @lateorders = Koha::Acquisition::Orders->filter_by_lates( Link Here
110
        delay        => $delay,
110
        delay        => $delay,
111
        (
111
        (
112
            $estimateddeliverydatefrom
112
            $estimateddeliverydatefrom
113
            ? ( estimated_from => $estimateddeliverydatefrom )
113
            ? ( estimated_from => dt_from_string($estimateddeliverydatefrom, 'iso') )
114
            : ()
114
            : ()
115
        ),
115
        ),
116
        (
116
        (
117
            $estimateddeliverydateto
117
            $estimateddeliverydateto
118
            ? ( estimated_to => $estimateddeliverydateto )
118
            ? ( estimated_to => dt_from_string($estimateddeliverydateto, 'iso') )
119
            : ()
119
            : ()
120
        )
120
        )
121
    },
121
    },
122
- 

Return to bug 30718