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

(-)a/C4/Acquisition.pm (-2 / +1 lines)
Lines 700-706 sub GetBasketsInfosByBookseller { Link Here
700
          COUNT(DISTINCT aqorders.biblionumber) AS total_biblios,
700
          COUNT(DISTINCT aqorders.biblionumber) AS total_biblios,
701
          SUM(
701
          SUM(
702
            IF(aqorders.datereceived IS NULL
702
            IF(aqorders.datereceived IS NULL
703
              AND aqorders.datecancellationprinted IS NULL
703
              AND (aqorders.datecancellationprinted IS NULL OR aqorders.datecancellationprinted='0000-00-00')
704
            , aqorders.quantity
704
            , aqorders.quantity
705
            , 0)
705
            , 0)
706
          ) AS expected_items
706
          ) AS expected_items
707
- 

Return to bug 21385