View | Details | Raw Unified | Return to bug 31894
Collapse All | Expand All

(-)a/Koha/Hold.pm (-4 / +3 lines)
Lines 204-210 sub set_transfer { Link Here
204
        'after_hold_action',
204
        'after_hold_action',
205
        {
205
        {
206
            action  => 'transfer',
206
            action  => 'transfer',
207
            payload => { hold => $self->get_from_storage }
207
            payload => { hold => $self }
208
        }
208
        }
209
    );
209
    );
210
210
Lines 269-275 sub set_waiting { Link Here
269
        'after_hold_action',
269
        'after_hold_action',
270
        {
270
        {
271
            action  => 'waiting',
271
            action  => 'waiting',
272
            payload => { hold => $self->get_from_storage }
272
            payload => { hold => $self }
273
        }
273
        }
274
    );
274
    );
275
275
Lines 365-371 sub set_processing { Link Here
365
        'after_hold_action',
365
        'after_hold_action',
366
        {
366
        {
367
            action  => 'processing',
367
            action  => 'processing',
368
            payload => { hold => $self->get_from_storage }
368
            payload => { hold => $self }
369
        }
369
        }
370
    );
370
    );
371
371
372
- 

Return to bug 31894