|
Lines 1707-1714
sub extended_attributes {
Link Here
|
| 1707 |
Koha::Patron::Attribute::Types->search( |
1707 |
Koha::Patron::Attribute::Types->search( |
| 1708 |
{ |
1708 |
{ |
| 1709 |
mandatory => 1, |
1709 |
mandatory => 1, |
|
|
1710 |
category_code => [ undef, $self->categorycode ], |
| 1710 |
'borrower_attribute_types_branches.b_branchcode' => |
1711 |
'borrower_attribute_types_branches.b_branchcode' => |
| 1711 |
undef |
1712 |
undef, |
| 1712 |
}, |
1713 |
}, |
| 1713 |
{ join => 'borrower_attribute_types_branches' } |
1714 |
{ join => 'borrower_attribute_types_branches' } |
| 1714 |
)->get_column('code'); |
1715 |
)->get_column('code'); |
| 1715 |
- |
|
|