https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23698
Bug ID: 23698
Summary: Advanced search add filter multi-branches
Change sponsored?: ---
Product: Koha
Version: unspecified
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P5 - low
Component: Searching
Assignee: [email protected]
Reporter: [email protected]
QA Contact: [email protected]
In advanced search how add a filter who searches multiple sites at once with
the operator AND
it's easy with jquery
$(document).ready(function() {
if ($('#catalog_advsearch').size())
$('#select-libs').append('<form><input type="checkbox"
name="multi_sites">Sites:documents en commun</form>');
$("input[name='multi_sites']").click(function(){
if ($(this).is(":checked"))
{
$("#branchloop").attr('multiple','multiple');
}
else
{
$("#branchloop").prop('multiple',false);
}
});
});
A patch in code Koha would be nice...
--
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/