removed a whole passel of files that do not need to be tracked in the repository
[kcls-web.git] / js / ui / default / conify / global / acq / edi_account.js
diff --git a/js/ui/default/conify/global/acq/edi_account.js b/js/ui/default/conify/global/acq/edi_account.js
deleted file mode 100644 (file)
index 87ebecd..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-dojo.require('openils.widget.AutoGrid');
-dojo.require('dijit.form.FilteringSelect');
-dojo.require('openils.PermaCrud');
-
-function draw() {
-    if (! targetId) {
-        pListGrid.loadAll({order_by:{acqedi : "id"}});       
-        // The following code does no good ...
-//        pListGrid.onPostCreate = function(fmObject) {
-//            location.href = location.href + '/' + fmObject.id();
-//        };
-        return;
-    }
-   
-    var pcrud = new openils.PermaCrud();
-    pcrud.retrieve('acqedi', targetId, {
-        // ... because this code here does nothing yet
-        oncomplete : function(r) {
-            console.log('edi_account is' + js2JSON(openils.Util.readResponse(r)));
-        }
-    });
-}
-
-openils.Util.addOnLoad(draw);
-