Skip to content
Snippets Groups Projects
Commit 35b44f1a authored by Demian Katz's avatar Demian Katz
Browse files

Eliminate tabs.

parent a02e013e
No related merge requests found
......@@ -734,23 +734,23 @@ class KohaILSDI extends \VuFind\ILS\Driver\AbstractBase implements
//TODO - test this new functionality
/*
if ( $level == "title" ) {
$rsp2 = $this->makeIlsdiRequest("HoldTitle",
array("patron_id" => $patron_id,
"bib_id" => $bib_id,
"request_location" => $request_location,
"pickup_location" => $pickup_location,
"pickup_expiry_date" => $needed_before_date,
"needed_before_date" => $needed_before_date
));
$rsp2 = $this->makeIlsdiRequest("HoldTitle",
array("patron_id" => $patron_id,
"bib_id" => $bib_id,
"request_location" => $request_location,
"pickup_location" => $pickup_location,
"pickup_expiry_date" => $needed_before_date,
"needed_before_date" => $needed_before_date
));
} else {
$rsp2 = $this->makeIlsdiRequest("HoldItem",
array("patron_id" => $patron_id,
"bib_id" => $bib_id,
"item_id" => $item_id,
"pickup_location" => $pickup_location,
"pickup_expiry_date" => $needed_before_date,
"needed_before_date" => $needed_before_date
));
$rsp2 = $this->makeIlsdiRequest("HoldItem",
array("patron_id" => $patron_id,
"bib_id" => $bib_id,
"item_id" => $item_id,
"pickup_location" => $pickup_location,
"pickup_expiry_date" => $needed_before_date,
"needed_before_date" => $needed_before_date
));
}
*/
$this->debug("Title: " . $rsp->{'title'});
......
......@@ -594,18 +594,18 @@ class PAIA extends DAIA
if (isset($fees['fee'])) {
foreach ($fees['fee'] as $fee) {
$result = [
// fee.amount 1..1 money amount of a single fee
// fee.amount 1..1 money amount of a single fee
'amount' => $feeConverter($fee['amount']),
'checkout' => '',
// fee.feetype 0..1 string textual description of the type
// fee.feetype 0..1 string textual description of the type
// of service that caused the fee
'fine' => (isset($fee['feetype']) ? $fee['feetype'] : null),
'balance' => $feeConverter($fee['amount']),
// fee.date 0..1 date date when the fee was claimed
// fee.date 0..1 date date when the fee was claimed
'createdate' => (isset($fee['date'])
? $this->convertDate($fee['date']) : null),
'duedate' => '',
// fee.edition 0..1 URI edition that caused the fee
// fee.edition 0..1 URI edition that caused the fee
'id' => (isset($fee['edition'])
? $this->getAlternativeItemId($fee['edition']) : ''),
];
......@@ -636,9 +636,9 @@ class PAIA extends DAIA
}
// custom PAIA fields
// fee.about 0..1 string textual information about the fee
// fee.item 0..1 URI item that caused the fee
// fee.feeid 0..1 URI URI of the type of service that
// fee.about 0..1 string textual information about the fee
// fee.item 0..1 URI item that caused the fee
// fee.feeid 0..1 URI URI of the type of service that
// caused the fee
$additionalData['feeid'] = (isset($fee['feeid'])
? $fee['feeid'] : null);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment