Lines 672-678
sub GetBasketsByBookseller {
Link Here
|
672 |
my $baskets = GetBasketsInfosByBookseller($supplierid, $allbaskets); |
672 |
my $baskets = GetBasketsInfosByBookseller($supplierid, $allbaskets); |
673 |
|
673 |
|
674 |
The optional second parameter allbaskets is a boolean allowing you to |
674 |
The optional second parameter allbaskets is a boolean allowing you to |
675 |
select all baskets from the supplier; by default only active baskets (open or |
675 |
select all baskets from the supplier; by default only active baskets (open or |
676 |
closed but still something to receive) are returned. |
676 |
closed but still something to receive) are returned. |
677 |
|
677 |
|
678 |
Returns in a arrayref of hashref all about booksellers baskets, plus: |
678 |
Returns in a arrayref of hashref all about booksellers baskets, plus: |
Lines 1280-1287
sub GetOrder {
Link Here
|
1280 |
&ModOrder(\%hashref); |
1280 |
&ModOrder(\%hashref); |
1281 |
|
1281 |
|
1282 |
Modifies an existing order. Updates the order with order number |
1282 |
Modifies an existing order. Updates the order with order number |
1283 |
$hashref->{'ordernumber'} and biblionumber $hashref->{'biblionumber'}. All |
1283 |
$hashref->{'ordernumber'} and biblionumber $hashref->{'biblionumber'}. All |
1284 |
other keys of the hash update the fields with the same name in the aqorders |
1284 |
other keys of the hash update the fields with the same name in the aqorders |
1285 |
table of the Koha database. |
1285 |
table of the Koha database. |
1286 |
|
1286 |
|
1287 |
=cut |
1287 |
=cut |
Lines 1977-1983
sub get_rounded_price {
Link Here
|
1977 |
|
1977 |
|
1978 |
Retreives some acquisition history information |
1978 |
Retreives some acquisition history information |
1979 |
|
1979 |
|
1980 |
params: |
1980 |
params: |
1981 |
title |
1981 |
title |
1982 |
author |
1982 |
author |
1983 |
name |
1983 |
name |
Lines 1986-1992
params:
Link Here
|
1986 |
from_placed_on |
1986 |
from_placed_on |
1987 |
to_placed_on |
1987 |
to_placed_on |
1988 |
basket - search both basket name and number |
1988 |
basket - search both basket name and number |
1989 |
booksellerinvoicenumber |
1989 |
booksellerinvoicenumber |
1990 |
basketgroupname |
1990 |
basketgroupname |
1991 |
budget |
1991 |
budget |
1992 |
orderstatus (note that orderstatus '' will retrieve orders |
1992 |
orderstatus (note that orderstatus '' will retrieve orders |
1993 |
- |
|
|