Lines 303-308
sub redirect_add_subscription {
Link Here
|
303 |
my @irregularity = $query->multi_param('irregularity'); |
303 |
my @irregularity = $query->multi_param('irregularity'); |
304 |
my $locale = $query->param('locale'); |
304 |
my $locale = $query->param('locale'); |
305 |
my $graceperiod = $query->param('graceperiod') || 0; |
305 |
my $graceperiod = $query->param('graceperiod') || 0; |
|
|
306 |
my $warn_when_late = $query->param('warn_when_late'); |
306 |
|
307 |
|
307 |
my $subtype = $query->param('subtype'); |
308 |
my $subtype = $query->param('subtype'); |
308 |
my $sublength = $query->param('sublength'); |
309 |
my $sublength = $query->param('sublength'); |
Lines 356-362
sub redirect_add_subscription {
Link Here
|
356 |
$lastvalue3, $innerloop3, $status, $notes, $letter, $firstacquidate, |
357 |
$lastvalue3, $innerloop3, $status, $notes, $letter, $firstacquidate, |
357 |
join(";",@irregularity), $numberpattern, $locale, $callnumber, |
358 |
join(";",@irregularity), $numberpattern, $locale, $callnumber, |
358 |
$manualhistory, $internalnotes, $serialsadditems, |
359 |
$manualhistory, $internalnotes, $serialsadditems, |
359 |
$staffdisplaycount, $opacdisplaycount, $graceperiod, $location, $enddate, |
360 |
$staffdisplaycount, $opacdisplaycount, $graceperiod, $warn_when_late, $location, $enddate, |
360 |
$skip_serialseq, $itemtype, $previousitemtype, $mana_id, $ccode, $published_on_template |
361 |
$skip_serialseq, $itemtype, $previousitemtype, $mana_id, $ccode, $published_on_template |
361 |
); |
362 |
); |
362 |
if ( (C4::Context->preference('Mana') == 1) and ( grep { $_ eq "subscription" } split(/,/, C4::Context->preference('AutoShareWithMana'))) ){ |
363 |
if ( (C4::Context->preference('Mana') == 1) and ( grep { $_ eq "subscription" } split(/,/, C4::Context->preference('AutoShareWithMana'))) ){ |
Lines 434-439
sub redirect_mod_subscription {
Link Here
|
434 |
my $staffdisplaycount = $query->param('staffdisplaycount'); |
435 |
my $staffdisplaycount = $query->param('staffdisplaycount'); |
435 |
my $opacdisplaycount = $query->param('opacdisplaycount'); |
436 |
my $opacdisplaycount = $query->param('opacdisplaycount'); |
436 |
my $graceperiod = $query->param('graceperiod') || 0; |
437 |
my $graceperiod = $query->param('graceperiod') || 0; |
|
|
438 |
my $warn_when_late = $query->param('warn_when_late'); |
437 |
my $location = $query->param('location'); |
439 |
my $location = $query->param('location'); |
438 |
my $itemtype = $query->param('itemtype'); |
440 |
my $itemtype = $query->param('itemtype'); |
439 |
my $previousitemtype = $query->param('previousitemtype'); |
441 |
my $previousitemtype = $query->param('previousitemtype'); |
Lines 474-480
sub redirect_mod_subscription {
Link Here
|
474 |
$innerloop1, $lastvalue2, $innerloop2, $lastvalue3, $innerloop3, |
476 |
$innerloop1, $lastvalue2, $innerloop2, $lastvalue3, $innerloop3, |
475 |
$status, $biblionumber, $callnumber, $notes, $letter, |
477 |
$status, $biblionumber, $callnumber, $notes, $letter, |
476 |
$manualhistory, $internalnotes, $serialsadditems, $staffdisplaycount, |
478 |
$manualhistory, $internalnotes, $serialsadditems, $staffdisplaycount, |
477 |
$opacdisplaycount, $graceperiod, $location, $enddate, $subscriptionid, |
479 |
$opacdisplaycount, $graceperiod, $warn_when_late, $location, $enddate, $subscriptionid, |
478 |
$skip_serialseq, $itemtype, $previousitemtype, $mana_id, $ccode, $published_on_template |
480 |
$skip_serialseq, $itemtype, $previousitemtype, $mana_id, $ccode, $published_on_template |
479 |
); |
481 |
); |
480 |
|
482 |
|
481 |
- |
|
|