View | Details | Raw Unified | Return to bug 22567
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stockrotation.tt (-2 / +10 lines)
Lines 518-524 Link Here
518
                                            <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% sritem.item.biblio.id | uri %]">[% sritem.item.biblio.title | html %]</a></td>
518
                                            <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% sritem.item.biblio.id | uri %]">[% sritem.item.biblio.title | html %]</a></td>
519
                                            <td>[% sritem.item.biblio.author | html %]</td>
519
                                            <td>[% sritem.item.biblio.author | html %]</td>
520
                                            <td>[% sritem.item.itemcallnumber | html %]</td>
520
                                            <td>[% sritem.item.itemcallnumber | html %]</td>
521
                                            <td>[% sritem.item.get_transfer ? 'Yes' : 'No' | html %]</td>
521
                                            <td>[% IF ( transfer = sritem.item.get_transfer) %]
522
                                                    [% IF (transfer.reason.match('Stockrotation.*')) %]
523
                                                    [% IF (transfer.datesent) %]
524
                                                        <span class="intransit">In transit from [% Branches.GetName( transfer.frombranch ) | html %] to [% Branches.GetName( transfer.tobranch ) | html %] since [% transfer.datesent | $KohaDates %]</span>
525
                                                    [% ELSE %]
526
                                                        <span class="transitrequested">Transit pending from [% Branches.GetName( transfer.frombranch ) | html %] to [% Branches.GetName( transfer.tobranch ) | html %] since [% transfer.daterequested | $KohaDates %]</span>
527
                                                    [% END %]
528
                                                    [% END %]
529
                                                [% END %]
530
                                            </td>
522
                                            <td>
531
                                            <td>
523
                                                [% FOREACH this_stage IN stages %]
532
                                                [% FOREACH this_stage IN stages %]
524
                                                    [% IF this_stage.stage_id == sritem.stage.stage_id %]
533
                                                    [% IF this_stage.stage_id == sritem.stage.stage_id %]
525
- 

Return to bug 22567