@@ -, +, @@ --- .../intranet-tmpl/prog/en/modules/circ/returns.tt | 129 +++++++++++++-------- 1 file changed, 78 insertions(+), 51 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt @@ -181,17 +181,17 @@ $(document).ready(function () { [% END %] -[% IF ( collectionItemNeedsTransferred ) %] +[% IF collectionItemNeedsTransferred %]

Transferring item to: [% Branches.GetName( collectionBranch ) %]

[% itembarcode |html %]: [% title |html %]

This item is part of a rotating collection.

-

+

[% END %] -[% IF ( fines ) %] +[% IF fines %]

Patron has outstanding fines of [% fines %].

Make payment.

@@ -199,7 +199,7 @@ $(document).ready(function () { [% END %] -[% IF ( waiting_holds ) %] +[% IF waiting_holds %]

[% holdsfirstname %] [% holdssurname %] has [% waiting_holds %] hold(s) waiting for pickup.

Check out to this patron.

@@ -218,47 +218,68 @@ $(document).ready(function () {
[% END %] -[% IF ( wrongbranch ) %] +[% IF wrongbranch %]

Cannot check in

[% itembarcode |html %]: [% title |html %]

NOT CHECKED IN

This item must be checked in at following library: [% Branches.GetName( rightbranch ) %]

[% END %] - -[% IF ( WrongTransfer ) %] -
- -

Transferring item to: [% Branches.GetName( TransferWaitingAt ) %]

-

[% itembarcode |html %]: [% title |html %]

- - - [% IF ( wborcnum ) %]
Hold for:
- -
- - - - - - - - - - -
- [% END %] -
+ +[% IF WrongTransfer %] + [% IF !wborcnum %] + +
+

Transfer in progress to:
+ [% Branches.GetName( TransferWaitingAt ) %]

+

[% itembarcode |html %]: [% title |html %]

+ + +
+ [% ELSIF wborcnum %] + + + [% END %] [% END %] [% IF ( found ) %] @@ -374,11 +395,11 @@ $(document).ready(function () { [% END %]
- + - + [% FOREACH inputloo IN inputloop %] @@ -396,26 +417,31 @@ $(document).ready(function () {
[% END %] - [% IF ( transfer ) %] + [% IF transfer || ( WrongTransfer && !wborcnum ) %]

Transferring item to: [% Branches.GetName( returnbranch ) %]

[% itembarcode |html %]: [% title |html %]

- - + +
[% END %] - [% IF ( needstransfer ) %] + [% IF needstransfer %] -

This item needs to be transferred to [% Branches.GetName( returnbranch ) %]

- Transfer now?
+
+

This item needs to be transferred to +
+ [% Branches.GetName( returnbranch ) %] +

+ Transfer now?
+

[% IF itemnumber %] - + [% END %] - - + + @@ -671,19 +697,20 @@ $(document).ready(function () { [% ELSE %] [% END %] - + [% IF Koha.Preference('SpecifyReturnDate') %]
Specify return date [% INCLUDE 'date-format.inc' %]:
+ +
[% IF ( return_date_override_remember ) %] [% ELSE %] [% END %] -
[% END %] [% FOREACH inputloo IN inputloop %] --