|
Lines 26-65
Link Here
|
| 26 |
function printBiblio() {window.open('/cgi-bin/koha/catalogue/detailprint.pl?biblionumber=[% biblionumber %]','Print_Biblio','width=700,height=500,toolbar=false,scrollbars=yes'); |
26 |
function printBiblio() {window.open('/cgi-bin/koha/catalogue/detailprint.pl?biblionumber=[% biblionumber %]','Print_Biblio','width=700,height=500,toolbar=false,scrollbars=yes'); |
| 27 |
} |
27 |
} |
| 28 |
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %] |
28 |
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %] |
| 29 |
function confirm_deletion() { |
29 |
function confirm_deletion() { |
| 30 |
var count = [% count %]; |
30 |
var count = [% count %]; |
|
|
31 |
var holdcount = [% holdcount %]; |
| 32 |
|
| 31 |
var is_confirmed; |
33 |
var is_confirmed; |
| 32 |
if (count>0){ |
34 |
if (count>0){ |
| 33 |
is_confirmed= alert(_('There are [ '+ count +' ] item(s) attached to this record \n You must delete all items before deleting this record.')); |
35 |
is_confirmed = alert(_('There are [ '+ count +' ] item(s) attached to this record \n You must delete all items before deleting this record.')); |
| 34 |
} else{ |
36 |
} else if ( holdcount > 0 ) { |
| 35 |
is_confirmed= confirm(_('Are you sure you want to delete this record? ')); |
37 |
is_confirmed = confirm(_('There are [ '+ holdcount +' ] holds(s) for this record \n Are you sure you want to delete this record?.')); |
| 36 |
} |
38 |
} else { |
| 37 |
|
39 |
is_confirmed = confirm(_('Are you sure you want to delete this record? ')); |
| 38 |
if (is_confirmed) { |
40 |
} |
| 39 |
if (count>0){ |
41 |
|
| 40 |
// window.location="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber %]"; |
42 |
if (is_confirmed) { |
| 41 |
} else { |
43 |
if ( count > 0 || holdcount > 0 ){ |
| 42 |
window.location="/cgi-bin/koha/cataloguing/addbiblio.pl?op=delete&biblionumber=[% biblionumber %]"; |
44 |
return false; |
| 43 |
} |
45 |
} else { |
|
|
46 |
window.location="/cgi-bin/koha/cataloguing/addbiblio.pl?op=delete&biblionumber=[% biblionumber %]"; |
| 47 |
} |
| 44 |
} else { |
48 |
} else { |
| 45 |
return false; |
49 |
return false; |
| 46 |
} |
50 |
} |
| 47 |
} |
51 |
} |
| 48 |
[% END %] |
52 |
[% END %] |
|
|
53 |
|
| 49 |
[% IF ( CAN_user_editcatalogue_edit_items ) %] |
54 |
[% IF ( CAN_user_editcatalogue_edit_items ) %] |
| 50 |
function confirm_items_deletion() { |
55 |
function confirm_items_deletion() { |
| 51 |
var count = [% count %]; |
56 |
var count = [% count %]; |
| 52 |
if(count > 0){ |
57 |
var holdcount = [% holdcount %]; |
| 53 |
if(confirm(_('Are you sure you want to delete the ' + count + ' attached items? '))){ |
58 |
|
|
|
59 |
if ( holdcount > 0 ) { |
| 60 |
alert( _('There are [ '+ holdcount +' ] holds(s) for this record \n You must delete all holds before deleting all items.') ); |
| 61 |
} else if ( count > 0 ) { |
| 62 |
if( confirm( _('Are you sure you want to delete the ' + count + ' attached items? ') ) ) { |
| 54 |
window.location="/cgi-bin/koha/cataloguing/additem.pl?op=delallitems&biblionumber=[% biblionumber %]"; |
63 |
window.location="/cgi-bin/koha/cataloguing/additem.pl?op=delallitems&biblionumber=[% biblionumber %]"; |
| 55 |
}else{ |
64 |
} else { |
| 56 |
return false; |
65 |
return false; |
| 57 |
} |
66 |
} |
| 58 |
} else { |
67 |
} else { |
| 59 |
alert(_("This record has no items.")); |
68 |
alert(_("This record has no items.")); |
| 60 |
return false; |
69 |
return false; |
| 61 |
} |
70 |
} |
| 62 |
} |
71 |
} |
| 63 |
[% END %] |
72 |
[% END %] |
| 64 |
// prepare DOM for YUI Toolbar |
73 |
// prepare DOM for YUI Toolbar |
| 65 |
|
74 |
|
|
Lines 115-122
function confirm_items_deletion() {
Link Here
|
| 115 |
[% IF ( LocalCoverImages || OPACLocalCoverImages) %][% IF ( CAN_user_tools_upload_local_cover_images ) %]{ text: _("Upload image"), url: "/cgi-bin/koha/tools/upload-cover-image.pl?biblionumber=[% biblionumber %]&filetype=image" },[% END %][% END %] |
124 |
[% IF ( LocalCoverImages || OPACLocalCoverImages) %][% IF ( CAN_user_tools_upload_local_cover_images ) %]{ text: _("Upload image"), url: "/cgi-bin/koha/tools/upload-cover-image.pl?biblionumber=[% biblionumber %]&filetype=image" },[% END %][% END %] |
| 116 |
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %]{ text: _("Edit as new (duplicate)"), url: "/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=[% biblionumber %]&frameworkcode=&op=duplicate" },[% END %] |
125 |
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %]{ text: _("Edit as new (duplicate)"), url: "/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=[% biblionumber %]&frameworkcode=&op=duplicate" },[% END %] |
| 117 |
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %]{ text: _("Replace record via Z39.50"), onclick: {fn: PopupZ3950 } },[% END %] |
126 |
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %]{ text: _("Replace record via Z39.50"), onclick: {fn: PopupZ3950 } },[% END %] |
| 118 |
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %]{ text: _("Delete record"), onclick: {fn: confirm_deletion }[% IF ( count ) %],id:'disabled'[% END %] },[% END %] |
127 |
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %]{ text: _("Delete record"), onclick: {fn: confirm_deletion }[% IF ( count || holdcount ) %],id:'disabled'[% END %] },[% END %] |
| 119 |
[% IF ( CAN_user_editcatalogue_edit_items ) %]{ text: _("Delete all items"), onclick: {fn: confirm_items_deletion }[% UNLESS ( count ) %],id:'disabled'[% END %] }[% END %] |
128 |
[% IF ( CAN_user_editcatalogue_edit_items ) %]{ text: _("Delete all items"), onclick: {fn: confirm_items_deletion }[% IF ( count < 1 || holdcount ) %],id:'disabled2'[% END %] },[% END %] |
| 120 |
]; |
129 |
]; |
| 121 |
if(editmenu.length){ |
130 |
if(editmenu.length){ |
| 122 |
new YAHOO.widget.Button({ |
131 |
new YAHOO.widget.Button({ |
| 123 |
- |
|
|