Lines 920-926
sub GetPreviousSerialid {
Link Here
|
920 |
FROM serial |
920 |
FROM serial |
921 |
WHERE subscriptionid = ? |
921 |
WHERE subscriptionid = ? |
922 |
AND status = 2 |
922 |
AND status = 2 |
923 |
ORDER BY serialid DESC LIMIT $nth,1 |
923 |
ORDER BY serialid DESC LIMIT $nth,1 |
924 |
"; |
924 |
"; |
925 |
my $sth = $dbh->prepare($strsth); |
925 |
my $sth = $dbh->prepare($strsth); |
926 |
$sth->execute($subscriptionid); |
926 |
$sth->execute($subscriptionid); |
Lines 1467-1473
$subscriptionid = &NewSubscription($auser,branchcode,$aqbooksellerid,$cost,$aqbu
Link Here
|
1467 |
$lastvalue1,$innerloop1,$lastvalue2,$innerloop2,$lastvalue3,$innerloop3, |
1467 |
$lastvalue1,$innerloop1,$lastvalue2,$innerloop2,$lastvalue3,$innerloop3, |
1468 |
$status, $notes, $letter, $firstacquidate, $irregularity, $numberpattern, |
1468 |
$status, $notes, $letter, $firstacquidate, $irregularity, $numberpattern, |
1469 |
$locale, $callnumber, $manualhistory, $internalnotes, $serialsadditems, |
1469 |
$locale, $callnumber, $manualhistory, $internalnotes, $serialsadditems, |
1470 |
$staffdisplaycount, $opacdisplaycount, $graceperiod, $location, $enddate, |
1470 |
$staffdisplaycount, $opacdisplaycount, $graceperiod, $location, $enddate, |
1471 |
$skip_serialseq, $itemtype, $previousitemtype); |
1471 |
$skip_serialseq, $itemtype, $previousitemtype); |
1472 |
|
1472 |
|
1473 |
Create a new subscription with value given on input args. |
1473 |
Create a new subscription with value given on input args. |