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

(-)a/C4/Acquisition.pm (-2 / +1 lines)
Lines 193-199 sub NewBasket { Link Here
193
    $dbh->do($query);
193
    $dbh->do($query);
194
#find & return basketno MYSQL dependant, but $dbh->last_insert_id always returns null :-(
194
#find & return basketno MYSQL dependant, but $dbh->last_insert_id always returns null :-(
195
    my $basket = $dbh->{'mysql_insertid'};
195
    my $basket = $dbh->{'mysql_insertid'};
196
    ModBasketHeader($basket, $basketname || '', $basketnote || '', $basketbooksellernote || '', $basketcontractnumber || undef);
196
    ModBasketHeader($basket, $basketname || '', $basketnote || '', $basketbooksellernote || '', $basketcontractnumber || undef, $booksellerid);
197
    return $basket;
197
    return $basket;
198
}
198
}
199
199
200
- 

Return to bug 8247