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

(-)a/C4/Acquisition.pm (+1 lines)
Lines 1665-1670 sub SearchOrders { Link Here
1665
               biblioitems.isbn,
1665
               biblioitems.isbn,
1666
               biblioitems.biblioitemnumber,
1666
               biblioitems.biblioitemnumber,
1667
               aqbasket.authorisedby,
1667
               aqbasket.authorisedby,
1668
               aqbasket.booksellerid,
1668
               aqbasket.closedate,
1669
               aqbasket.closedate,
1669
               aqbasket.creationdate,
1670
               aqbasket.creationdate,
1670
               aqbasket.basketname,
1671
               aqbasket.basketname,
(-)a/t/db_dependent/Acquisition.t (-2 / +1 lines)
Lines 639-644 ok( Link Here
639
  datecancellationprinted
639
  datecancellationprinted
640
  budget_id
640
  budget_id
641
  authorisedby
641
  authorisedby
642
  booksellerid
642
);
643
);
643
644
644
# note that authorisedby was added to the return of SearchOrder by the
645
# note that authorisedby was added to the return of SearchOrder by the
Lines 703-709 ok( Link Here
703
#
704
#
704
# Test GetBudgetByOrderNumber
705
# Test GetBudgetByOrderNumber
705
#
706
#
706
707
ok( GetBudgetByOrderNumber( $ordernumbers[0] )->{'budget_id'} eq $budgetid,
707
ok( GetBudgetByOrderNumber( $ordernumbers[0] )->{'budget_id'} eq $budgetid,
708
    "GetBudgetByOrderNumber returns expected budget" );
708
    "GetBudgetByOrderNumber returns expected budget" );
709
709
710
- 

Return to bug 11755