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