@@ -, +, @@ templates - View the MARC detail page for any bibliographic record. Changing the framework selection should reload the display using the selected framework. - Perform the same test on the labeled MARC view. (Set the viewLabeledMARC system preference to "Allow" if necessary). - To test the changes to Reports you should have at least one report group and at least one report subgroup. - Create a new saved SQL report. - Select a report group. Doing so should trigger the display of report subgroups. Deselecting the report group should hide the subgroups. - In Acquisitions -> Suggestions, create a new suggestion. - In the 'Acquisition information' section, changing values for copies, currency, and price should change the value in the total field. - In Circulation -> Upload offline circulation file: - My patch for Bug 16602 added the required code but forgot to remove the corresponding onclick attributes. - Browse for an offline circulation file. - Clicking the 'Upload file' button should work correctly. - After uploading a file, both the 'Add to offline circulation queue' and 'Apply directly' buttons should work to trigger their corresponding processes (keeping Bug 16603 in mind). --- .../intranet-tmpl/prog/en/modules/catalogue/MARCdetail.tt | 5 ++++- .../prog/en/modules/catalogue/labeledMARCdetail.tt | 5 +++++ .../prog/en/modules/offline_circ/process_koc.tt | 4 ++-- .../prog/en/modules/reports/guided_reports_start.tt | 5 ++++- .../intranet-tmpl/prog/en/modules/suggestion/suggestion.tt | 13 +++++++++---- 5 files changed, 24 insertions(+), 8 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/MARCdetail.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/MARCdetail.tt @@ -19,6 +19,9 @@ $(document).ready(function() { $('#bibliotabs').tabs(); + $("#Frameworks").on("change",function(){ + Changefwk(this); + }); }); function Changefwk(FwkList) { @@ -58,7 +61,7 @@ function Changefwk(FwkList) { [% END %] -

With framework : [% FOREACH frameworkcodeloo IN frameworkcodeloop %] [% IF ( frameworkcodeloo.selected ) %][% ELSE %][% END %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/labeledMARCdetail.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/labeledMARCdetail.tt @@ -19,6 +19,11 @@ // - +

- + --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt @@ -227,6 +227,9 @@ $("#delColumn").on("click",function(){ }); $("#select_group").change(); $("#select_subgroup").change(); + $("#group_select").on("change",function(){ + load_group_subgroups(); + }); [% END %] }); //]]> @@ -1079,7 +1082,7 @@ $("#column_submit").submit(function() { - [% FOREACH group IN groups_with_subgroups %] [% IF (group.selected) %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt @@ -167,7 +167,12 @@ h4.local_collapse a { font-size : 80%; text-decoration: none; } fieldset.brief o [% IF ( op_save ) %] [% END %] @@ -435,7 +440,7 @@ h4.local_collapse a { font-size : 80%; text-decoration: none; } fieldset.brief o [% IF ( budgetsloo.selected ) %][% ELSE %][% END %][% END %]
  • - +
  • @@ -444,7 +449,7 @@ h4.local_collapse a { font-size : 80%; text-decoration: none; } fieldset.brief o [% END %] - [% FOREACH c IN currencies %] [% IF suggestionid and suggestion.currency == c.currency or not suggestionid and c.active %] @@ -455,7 +460,7 @@ h4.local_collapse a { font-size : 80%; text-decoration: none; } fieldset.brief o
  • - +
  • --