X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=Pman.Lock.js;h=9636ada9b685aa3e8005488f9879dd835bff7eb5;hp=d5b5a6c2c666022a1ba0787ea2ee9fe2e695015a;hb=HEAD;hpb=3d5fd9f3c981b8e329ecf516f67d8ede10cf5bde diff --git a/Pman.Lock.js b/Pman.Lock.js index d5b5a6c2..9636ada9 100644 --- a/Pman.Lock.js +++ b/Pman.Lock.js @@ -35,18 +35,22 @@ */ Pman.Lock = function (cfg) { this.cfg = cfg; + Roo.log('ctor-callLock'); this.callLock(); } Roo.apply(Pman.Lock.prototype, { cfg : false, + id : false, // the id of the lock.. + callLock : function(force) { + Roo.log('callLock'); force = force || 0; - var _t = this - Pman.Request({ - url : baseURL + 'Core/Lock/lock', + var _t = this; + new Pman.Request({ + url : baseURL + '/Core/Lock/lock', params : { on_table : this.cfg.table, on_id : this.cfg.id, @@ -55,14 +59,15 @@ Roo.apply(Pman.Lock.prototype, { failure : function() { Roo.MessageBox.alert("Error", "Lock Request failed, please try again"); }, - success : function(data) + success : function(res) { - - + var data = res.data; + Roo.log(data); if (!force && typeof(data) == 'object') { _t.confirmBreak(data); + return; } - + _t.id = data; _t.cfg.success(_t); //dont care about scope.. @@ -77,9 +82,9 @@ Roo.apply(Pman.Lock.prototype, { Roo.each(ar, function(p) { msg += '
' + p.name + ' at ' + p.lock_created ; - }) + }); var _t = this; - Roo.messageBox.confirm("Confirm breaking locks", msg, function(r) { + Roo.MessageBox.confirm("Confirm breaking locks", msg, function(r) { if (r != 'yes') { return; } @@ -92,25 +97,19 @@ Roo.apply(Pman.Lock.prototype, { }, - unlock : function() { - Pman.Request({ - url : baseURL + 'Core/Lock/unlock', + unlock : function(id) { + id = id || this.id; + new Pman.Request({ + url : baseURL + '/Core/Lock/unlock', params : { - id : this.lock_id + id : id }, failure : function() { - Roo.MessageBox.alert("Error", "Lock Request failed, please try again"); + Roo.MessageBox.alert("Error", "UnLock Request failed, you may get a warning when trying to edit again"); }, success : function(data) { - Roo.log(data); - - if (typeof(data) == 'object') { - _t.confirmBreak(data); - } - - _t.cfg.success(_t); //dont care about scope.. - + // don nothing } });