|
Lines 415-427
The following items have been checked out:
Link Here
|
| 415 |
Thank you for visiting <<branches.branchname>>. |
415 |
Thank you for visiting <<branches.branchname>>. |
| 416 |
|; |
416 |
|; |
| 417 |
reset_template( { template => $checkout_template, code => $checkout_code, module => 'circulation' } ); |
417 |
reset_template( { template => $checkout_template, code => $checkout_code, module => 'circulation' } ); |
| 418 |
my $checkin_template = q| |
418 |
my $checkin_template = q[ |
| 419 |
The following items have been checkin out: |
419 |
The following items have been checkin out: |
| 420 |
---- |
420 |
---- |
| 421 |
<<biblio.title>> |
421 |
<<biblio.title>> was due on <<old_issues.date_due | dateonly>> |
| 422 |
---- |
422 |
---- |
| 423 |
Thank you for visiting <<branches.branchname>>. |
423 |
Thank you for visiting <<branches.branchname>>. |
| 424 |
|; |
424 |
]; |
| 425 |
reset_template( { template => $checkin_template, code => $checkin_code, module => 'circulation' } ); |
425 |
reset_template( { template => $checkin_template, code => $checkin_code, module => 'circulation' } ); |
| 426 |
|
426 |
|
| 427 |
C4::Circulation::AddIssue( $patron, $item1->{barcode} ); |
427 |
C4::Circulation::AddIssue( $patron, $item1->{barcode} ); |
|
Lines 445-457
The following items have been checked out:
Link Here
|
| 445 |
Thank you for visiting [% branch.branchname %]. |
445 |
Thank you for visiting [% branch.branchname %]. |
| 446 |
|; |
446 |
|; |
| 447 |
reset_template( { template => $checkout_template, code => $checkout_code, module => 'circulation' } ); |
447 |
reset_template( { template => $checkout_template, code => $checkout_code, module => 'circulation' } ); |
| 448 |
$checkin_template = q| |
448 |
$checkin_template = q[ |
| 449 |
The following items have been checkin out: |
449 |
The following items have been checkin out: |
| 450 |
---- |
450 |
---- |
| 451 |
[% biblio.title %] |
451 |
[% biblio.title %] was due on [% old_checkout.date_due | $KohaDates %] |
| 452 |
---- |
452 |
---- |
| 453 |
Thank you for visiting [% branch.branchname %]. |
453 |
Thank you for visiting [% branch.branchname %]. |
| 454 |
|; |
454 |
]; |
| 455 |
reset_template( { template => $checkin_template, code => $checkin_code, module => 'circulation' } ); |
455 |
reset_template( { template => $checkin_template, code => $checkin_code, module => 'circulation' } ); |
| 456 |
|
456 |
|
| 457 |
C4::Circulation::AddIssue( $patron, $item1->{barcode} ); |
457 |
C4::Circulation::AddIssue( $patron, $item1->{barcode} ); |
| 458 |
- |
|
|