Lines 1389-1395
sub GetItemsLocationInfo {
Link Here
|
1389 |
my @results; |
1389 |
my @results; |
1390 |
|
1390 |
|
1391 |
my $dbh = C4::Context->dbh; |
1391 |
my $dbh = C4::Context->dbh; |
1392 |
my $query = "SELECT a.branchname as homebranch, b.branchname as holdingbranch, |
1392 |
my $query = "SELECT items.*,a.branchname as homebranch, b.branchname as holdingbranch, |
1393 |
location, itemcallnumber, cn_sort |
1393 |
location, itemcallnumber, cn_sort |
1394 |
FROM items, branches as a, branches as b |
1394 |
FROM items, branches as a, branches as b |
1395 |
WHERE homebranch = a.branchcode AND holdingbranch = b.branchcode |
1395 |
WHERE homebranch = a.branchcode AND holdingbranch = b.branchcode |