Lines 1402-1408
sub NewSubscription {
Link Here
|
1402 |
$innerloop3, $status, $notes, $letter, $firstacquidate, $irregularity, |
1402 |
$innerloop3, $status, $notes, $letter, $firstacquidate, $irregularity, |
1403 |
$numberpattern, $locale, $callnumber, $manualhistory, $internalnotes, |
1403 |
$numberpattern, $locale, $callnumber, $manualhistory, $internalnotes, |
1404 |
$serialsadditems, $staffdisplaycount, $opacdisplaycount, $graceperiod, |
1404 |
$serialsadditems, $staffdisplaycount, $opacdisplaycount, $graceperiod, |
1405 |
$location, $enddate, $skip_serialseq, $itemtype, $previousitemtype |
1405 |
$location, $enddate, $skip_serialseq, $itemtype, $previousitemtype, $mana_id |
1406 |
) = @_; |
1406 |
) = @_; |
1407 |
my $dbh = C4::Context->dbh; |
1407 |
my $dbh = C4::Context->dbh; |
1408 |
|
1408 |
|
Lines 1416-1423
sub NewSubscription {
Link Here
|
1416 |
irregularity, numberpattern, locale, callnumber, |
1416 |
irregularity, numberpattern, locale, callnumber, |
1417 |
manualhistory, internalnotes, serialsadditems, staffdisplaycount, |
1417 |
manualhistory, internalnotes, serialsadditems, staffdisplaycount, |
1418 |
opacdisplaycount, graceperiod, location, enddate, skip_serialseq, |
1418 |
opacdisplaycount, graceperiod, location, enddate, skip_serialseq, |
1419 |
itemtype, previousitemtype) |
1419 |
itemtype, previousitemtype, mana_id) |
1420 |
VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) |
1420 |
VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?, ?) |
1421 |
|; |
1421 |
|; |
1422 |
my $sth = $dbh->prepare($query); |
1422 |
my $sth = $dbh->prepare($query); |
1423 |
$sth->execute( |
1423 |
$sth->execute( |
Lines 1428-1434
sub NewSubscription {
Link Here
|
1428 |
$firstacquidate, $irregularity, $numberpattern, $locale, $callnumber, |
1428 |
$firstacquidate, $irregularity, $numberpattern, $locale, $callnumber, |
1429 |
$manualhistory, $internalnotes, $serialsadditems, $staffdisplaycount, |
1429 |
$manualhistory, $internalnotes, $serialsadditems, $staffdisplaycount, |
1430 |
$opacdisplaycount, $graceperiod, $location, $enddate, $skip_serialseq, |
1430 |
$opacdisplaycount, $graceperiod, $location, $enddate, $skip_serialseq, |
1431 |
$itemtype, $previousitemtype |
1431 |
$itemtype, $previousitemtype, $mana_id |
1432 |
); |
1432 |
); |
1433 |
|
1433 |
|
1434 |
my $subscriptionid = $dbh->{'mysql_insertid'}; |
1434 |
my $subscriptionid = $dbh->{'mysql_insertid'}; |