Lines 1407-1413
sub NewSubscription {
Link Here
|
1407 |
$innerloop3, $status, $notes, $letter, $firstacquidate, $irregularity, |
1407 |
$innerloop3, $status, $notes, $letter, $firstacquidate, $irregularity, |
1408 |
$numberpattern, $locale, $callnumber, $manualhistory, $internalnotes, |
1408 |
$numberpattern, $locale, $callnumber, $manualhistory, $internalnotes, |
1409 |
$serialsadditems, $staffdisplaycount, $opacdisplaycount, $graceperiod, |
1409 |
$serialsadditems, $staffdisplaycount, $opacdisplaycount, $graceperiod, |
1410 |
$location, $enddate, $skip_serialseq, $itemtype, $previousitemtype |
1410 |
$location, $enddate, $skip_serialseq, $itemtype, $previousitemtype, $mana_id |
1411 |
) = @_; |
1411 |
) = @_; |
1412 |
my $dbh = C4::Context->dbh; |
1412 |
my $dbh = C4::Context->dbh; |
1413 |
|
1413 |
|
Lines 1421-1428
sub NewSubscription {
Link Here
|
1421 |
irregularity, numberpattern, locale, callnumber, |
1421 |
irregularity, numberpattern, locale, callnumber, |
1422 |
manualhistory, internalnotes, serialsadditems, staffdisplaycount, |
1422 |
manualhistory, internalnotes, serialsadditems, staffdisplaycount, |
1423 |
opacdisplaycount, graceperiod, location, enddate, skip_serialseq, |
1423 |
opacdisplaycount, graceperiod, location, enddate, skip_serialseq, |
1424 |
itemtype, previousitemtype) |
1424 |
itemtype, previousitemtype, mana_id) |
1425 |
VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) |
1425 |
VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?, ?) |
1426 |
|; |
1426 |
|; |
1427 |
my $sth = $dbh->prepare($query); |
1427 |
my $sth = $dbh->prepare($query); |
1428 |
$sth->execute( |
1428 |
$sth->execute( |
Lines 1433-1439
sub NewSubscription {
Link Here
|
1433 |
$firstacquidate, $irregularity, $numberpattern, $locale, $callnumber, |
1433 |
$firstacquidate, $irregularity, $numberpattern, $locale, $callnumber, |
1434 |
$manualhistory, $internalnotes, $serialsadditems, $staffdisplaycount, |
1434 |
$manualhistory, $internalnotes, $serialsadditems, $staffdisplaycount, |
1435 |
$opacdisplaycount, $graceperiod, $location, $enddate, $skip_serialseq, |
1435 |
$opacdisplaycount, $graceperiod, $location, $enddate, $skip_serialseq, |
1436 |
$itemtype, $previousitemtype |
1436 |
$itemtype, $previousitemtype, $mana_id |
1437 |
); |
1437 |
); |
1438 |
|
1438 |
|
1439 |
my $subscriptionid = $dbh->{'mysql_insertid'}; |
1439 |
my $subscriptionid = $dbh->{'mysql_insertid'}; |