check for pre-cat in bib summary
authorphasefx <phasefx@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 10 Aug 2006 13:47:32 +0000 (13:47 +0000)
committerphasefx <phasefx@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 10 Aug 2006 13:47:32 +0000 (13:47 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@5421 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/xul/staff_client/server/cat/bib_brief.xul

index dc348fc..f43e3bb 100644 (file)
 
                function view_marc() {
                        JSAN.use('util.window'); var win = new util.window();
-                       win.open( urls.XUL_MARC_VIEW + '?noprint=1&docid=' + docid, 'marc_view', 'chrome,resizable,modal,width=400,height=400');
+                       if (docid < 0) {
+                               alert('Item not cataloged.');
+                       } else {
+                               win.open( urls.XUL_MARC_VIEW + '?noprint=1&docid=' + docid, 'marc_view', 'chrome,resizable,modal,width=400,height=400');
+                       }
                }
 
        ]]>