Skip to content

Commit cba1508

Browse files
committed
Add 852 $i and $j to Location.callCode
1 parent 7908616 commit cba1508

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/Fields/Location.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,11 @@ public function getShelvinglocation()
4545
public function getCallcode()
4646
{
4747
return $this->toString([
48+
'h', // Classification part (NR)
49+
'i', // Item part (R)
50+
'j', // Shelving control number (NR)
4851
'k', // Call number prefix
4952
'l', // Shelving form of title
50-
'h', // Classification portion of the call number
5153
'm', // Call number suffix
5254
]);
5355
}
@@ -64,6 +66,6 @@ public function getPublicNote()
6466

6567
public function __toString()
6668
{
67-
return $this->toString(['a', 'b', 'c', 'k', 'l', 'h', 'm']);
69+
return $this->toString(['a', 'b', 'c', 'h', 'i', 'j', 'k', 'l', 'm']);
6870
}
6971
}

0 commit comments

Comments
 (0)