From 2e981dc363e18d8d084672b58028e33751b509ff Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 23 Feb 2015 17:09:20 +0100 Subject: [PATCH] Bug 9742: Does not display the popup on creating new record The new confirmation on starting a z39.50 serach in cataloguing always pops up, even when you are working on a new record that has not been saved yet. Test plan: 1/ Edit an existing record, click on the Z3950 search button, confirm the popup appears. 2/ Create a new record, click on the Z3950 search button, confirm the popup does not appear. --- koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt index 26e3b62..9fd3909 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt @@ -69,10 +69,15 @@ } }); + [%# Only ask for a confirmation if it is an edit %] $("#z3950search").click(function(){ - if (confirm(_("Please note that this external search could replace the current record."))){ + [% IF biblionumber %] + if (confirm(_("Please note that this external search could replace the current record."))){ + PopupZ3950(); + } + [% ELSE %] PopupZ3950(); - } + [% END %] }); $("#saverecord").click(function(){ -- 2.1.0