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