Lines 117-124
if ( $method eq 'updateconfirm' and $houseboundprofile ) {
Link Here
|
117 |
$method = undef; |
117 |
$method = undef; |
118 |
} elsif ( $method eq 'visit_update_or_create' ) { |
118 |
} elsif ( $method eq 'visit_update_or_create' ) { |
119 |
# We want to edit, edit a visit, so we must pass its details. |
119 |
# We want to edit, edit a visit, so we must pass its details. |
120 |
$deliverers = Koha::Patrons->new->search_housebound_deliverers; |
120 |
$deliverers = Koha::Patrons->search_housebound_deliverers; |
121 |
$choosers = Koha::Patrons->new->search_housebound_choosers; |
121 |
$choosers = Koha::Patrons->search_housebound_choosers; |
122 |
$houseboundvisit = $visit; |
122 |
$houseboundvisit = $visit; |
123 |
} elsif ( $method eq 'visit_delete' and $visit ) { |
123 |
} elsif ( $method eq 'visit_delete' and $visit ) { |
124 |
# We want ot delete a specific visit. |
124 |
# We want ot delete a specific visit. |
125 |
- |
|
|