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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/acquisitions_stats.tt (-2 / +2 lines)
Lines 74-81 Link Here
74
                                <strong>Home library: </strong>
74
                                <strong>Home library: </strong>
75
                                [% Branches.GetName( loopfilte.filter ) | html %]
75
                                [% Branches.GetName( loopfilte.filter ) | html %]
76
                            [% CASE '6' %]
76
                            [% CASE '6' %]
77
                                <strong>Collection: </strong>
77
                                <strong>Collection:</strong>
78
                                [% AuthorisedValues.GetByCode( 'CCODE', loopfilte.filter ) | html %]
78
                                [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => loopfilte.filter ) %]
79
                            [% CASE '7' %]
79
                            [% CASE '7' %]
80
                                <strong>Item type: </strong>
80
                                <strong>Item type: </strong>
81
                                [% ItemTypes.GetDescription( loopfilte.filter ) | html %]
81
                                [% ItemTypes.GetDescription( loopfilte.filter ) | html %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/catalogue_stats.tt (-3 / +3 lines)
Lines 68-78 Link Here
68
                        [% CASE "Library" %]
68
                        [% CASE "Library" %]
69
                            <strong>Library:</strong> [% Branches.GetName( loopfilte.filter ) | html %]
69
                            <strong>Library:</strong> [% Branches.GetName( loopfilte.filter ) | html %]
70
                        [% CASE "Shelving Location" %]
70
                        [% CASE "Shelving Location" %]
71
                            <strong>Location:</strong> [% AuthorisedValues.GetByCode( 'LOC', loopfilte.filter ) | html %]
71
                            <strong>Location:</strong> [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.location', authorised_value => loopfilte.filter ) %]
72
                        [% CASE "Collection Code" %]
72
                        [% CASE "Collection Code" %]
73
                            <strong>Collection:</strong> [% AuthorisedValues.GetByCode( 'CCODE', loopfilte.filter ) | html %]
73
                            <strong>Collection:</strong> [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => loopfilte.filter ) %]
74
                        [% CASE "Status" %]
74
                        [% CASE "Status" %]
75
                            <strong>Not for loan:</strong> [% AuthorisedValues.GetByCode( 'NOT_LOAN', loopfilte.filter ) | html %]
75
                            <strong>Not for loan:</strong> [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.notforloan', authorised_value => loopfilte.filter ) %]
76
                        [% CASE "Materials" %]
76
                        [% CASE "Materials" %]
77
                            <strong>Materials specified:</strong> [% loopfilte.filter | html %]
77
                            <strong>Materials specified:</strong> [% loopfilte.filter | html %]
78
                        [% CASE "Barcode (not like)" %]
78
                        [% CASE "Barcode (not like)" %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/issues_stats.tt (-3 / +2 lines)
Lines 82-90 Link Here
82
                            [% CASE 4 %]
82
                            [% CASE 4 %]
83
                                <strong>Issuing library:</strong> [% Branches.GetName( loopfilte.filter ) | html %]
83
                                <strong>Issuing library:</strong> [% Branches.GetName( loopfilte.filter ) | html %]
84
                            [% CASE 5 %]
84
                            [% CASE 5 %]
85
                                <strong>Collection:</strong> [% AuthorisedValues.GetByCode( 'CCODE', loopfilte.filter ) | html %]
85
                                <strong>Collection:</strong> [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => loopfilte.filter ) %]
86
                            [% CASE 6 %]
86
                            [% CASE 6 %]
87
                                <strong>Location:</strong> [% AuthorisedValues.GetByCode( 'LOC', loopfilte.filter ) | html %]
87
                                <strong>Location:</strong> [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.location', authorised_value => loopfilte.filter ) %]
88
                            [% CASE 7 %]
88
                            [% CASE 7 %]
89
                                <strong>Item call number &gt; [% loopfilte.filter | html %] </strong>
89
                                <strong>Item call number &gt; [% loopfilte.filter | html %] </strong>
90
                            [% CASE 8 %]
90
                            [% CASE 8 %]
91
- 

Return to bug 40287