[Koha-bugs] [Bug 13364] Add a call number browser in item edition page

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Mar 6 20:32:31 CET 2015


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13364

--- Comment #44 from simith.doliveira at inlibro.com ---
Concerning #42 :

Is there a good reason to have the template file in the tools directory,
instead of cataloguing/value_builder?

- No, Moved.

The green line is always at the top of the table. If I am remember correctly,
in the previous version it was inserted correctly.

- Bug fixed


::: cataloguing/value_builder/cn_browser.pl
@@ +1,4 @@
> +#!/usr/bin/perl
> +
> +use strict;
> +use warnings;

Prefer use Modern::Perl;

- Fixed

@@ +9,5 @@
> +use C4::Output;
> +use POSIX;
> +use C4::ClassSource;
> +use URI::Escape;
> +use Data::Dumper;

No needed.

- Fixed. use C4::ClassSource needed

::: koha-tmpl/intranet-tmpl/prog/en/modules/tools/cn_browser.tt
@@ +12,5 @@
> +<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.dataTables.min.js"></script>
> +<script language="JavaScript">
> +$(document).ready(function()
> +{
> +    $("#course_reserves").DataTable({"paging":   false, "bFilter": false, "info":     false});

Hum? Why did you choose this id?

- In intranet-tmpl/prog/en/css/staff-global.css 
  there is "div#course_reserves_wrapper > table#course_reserves" needed to the
table. So I just use it (do not change staff-global.css file).

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list