Skip to content

Commit

Permalink
Add 852 $i and $j to Location.callCode
Browse files Browse the repository at this point in the history
  • Loading branch information
danmichaelo committed Sep 13, 2019
1 parent 7908616 commit cba1508
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Fields/Location.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,11 @@ public function getShelvinglocation()
public function getCallcode()
{
return $this->toString([
'h', // Classification part (NR)
'i', // Item part (R)
'j', // Shelving control number (NR)
'k', // Call number prefix
'l', // Shelving form of title
'h', // Classification portion of the call number
'm', // Call number suffix
]);
}
Expand All @@ -64,6 +66,6 @@ public function getPublicNote()

public function __toString()
{
return $this->toString(['a', 'b', 'c', 'k', 'l', 'h', 'm']);
return $this->toString(['a', 'b', 'c', 'h', 'i', 'j', 'k', 'l', 'm']);
}
}

0 comments on commit cba1508

Please sign in to comment.