X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=Pman.Dialog.CorePersonContact.js;h=1bd6e46597ede8d786c5ee4d8b020f2f500cdcc4;hp=3608f19a74d516de7646079328a3ccbe0f5f4c4c;hb=586e4eb470252d837ba18b67e4c3c1702131fd1d;hpb=88acb8777f13482b6e5606d52eba1e936248d762 diff --git a/Pman.Dialog.CorePersonContact.js b/Pman.Dialog.CorePersonContact.js index 3608f19a..1bd6e465 100644 --- a/Pman.Dialog.CorePersonContact.js +++ b/Pman.Dialog.CorePersonContact.js @@ -2,279 +2,341 @@ // Auto generated file - created by app.Builder.js- do not edit directly (at present!) +Roo.namespace('Pman.Dialog'); + Pman.Dialog.CorePersonContact = { - dialog : false, - callback: false, + _strings : { + '1c76cbfe21c6f44c1d1e59d54f3e4420' :"Company", + 'ce8ae9da5b7cd6c3df2929543a9af92d' :"Email", + 'c8972faa3b9e1c7250db23c57c85aa23' :"Edit / Create Contact Details", + '1243daf593fa297e07ab03bf06d925af' :"Searching...", + 'bcc254b55c4a1babdf1dcb82c207506b' :"Phone", + 'ea4788705e6873b424c65e91c2846b19' :"Cancel", + '9675747b5ab12d05f18518761e68a533' :"Select Companies", + 'df814135652a5a308fea15bff37ea284' :"Office", + 'c373dd4bd4ba0b5d3e0c7522c5629880' :"Select Office", + '49ee3087348e8d44e1feda1917443987' :"Name", + 'bbbabdbe1b262f75d99d62880b953be1' :"Role", + 'c9cc8cce247e49bae79f15173ce97354' :"Save", + '9810aa2b9f44401be4bf73188ef2b67d' :"Fax" + }, - show : function(data, cb) - { - if (!this.dialog) { - this.create(); - } + dialog : false, + callback: false, - this.callback = cb; - this.data = data; - this.dialog.show(this.data._el); - if (this.form) { - this.form.reset(); - this.form.setValues(data); - this.form.fireEvent('actioncomplete', this.form, { type: 'setdata', data: data }); - } + show : function(data, cb) + { + if (!this.dialog) { + this.create(); + } - }, + this.callback = cb; + this.data = data; + this.dialog.show(this.data._el); + if (this.form) { + this.form.reset(); + this.form.setValues(data); + this.form.fireEvent('actioncomplete', this.form, { type: 'setdata', data: data }); + } + + }, - create : function() - { - var _this = this; - this.dialog = Roo.factory({ - xtype: 'LayoutDialog', - xns: Roo, - closable : false, - collapsible : false, - height : 350, - resizable : false, - title : "Edit / Create Contact Details", - width : 500, - items : [ - { - xtype: 'ContentPanel', - xns: Roo, - region : 'center', - items : [ - { - xtype: 'Form', - xns: Roo.form, - listeners : { - actioncomplete : function(_self,action) - { - if (action.type == 'setdata') { - //_this.dialog.el.mask("Loading"); - //this.load({ method: 'GET', params: { '_id' : _this.data.id }}); - return; - } - if (action.type == 'load') { - _this.dialog.el.unmask(); - return; - } - if (action.type =='submit') { - - _this.dialog.el.unmask(); - _this.dialog.hide(); - - if (_this.callback) { - _this.callback.call(_this, _this.form.getValues()); - } - _this.form.reset(); - return; - } - }, - rendered : function (form) - { - _this.form= form; - } - }, - method : 'POST', - style : 'margin:10px;', - url : baseURL + '/Roo/Person.php', - items : [ - { - xtype: 'ComboBox', - xns: Roo.form, - listeners : { - add : function (combo) - { - - Pman.Dialog.Companies.show( { id: 0 }, function(data) { - _this.form.setValues({ - company_id_name : data.name, - company_id : data.id - }); - }); - } - }, - allowBlank : 'false', - displayField : 'code', - editable : 'false', - emptyText : "Select Companies", - fieldLabel : 'Company', - forceSelection : true, - hiddenName : 'company_id', - listWidth : 400, - loadingText : "Searching...", - minChars : 2, - name : 'company_id_code', - pageSize : 20, - qtip : "Select Companies", - queryParam : 'query[code]', - selectOnFocus : true, - tpl : '
{code}
', - triggerAction : 'all', - typeAhead : true, - valueField : 'id', - width : 300, - store : { - xtype: 'Store', - xns: Roo.data, - remoteSort : true, - sortInfo : { direction : 'ASC', field: 'id' }, - listeners : { - beforeload : function (_self, o){ - o.params = o.params || {}; - // set more here - } - }, - proxy : { - xtype: 'HttpProxy', - xns: Roo.data, - method : 'GET', - url : baseURL + '/Roo/Companies.php' - }, - reader : { - xtype: 'JsonReader', - xns: Roo.data, - id : 'id', - root : 'data', - totalProperty : 'total', - fields : [{"name":"id","type":"int"},{"name":"code","type":"string"}] - } - } - }, - { - xtype: 'ComboBox', - xns: Roo.form, - allowBlank : 'false', - displayField : 'name', - editable : 'false', - emptyText : "Select Office", - fieldLabel : 'Office', - forceSelection : true, - hiddenName : 'office_id', - listWidth : 400, - loadingText : "Searching...", - minChars : 2, - name : 'office_id_name', - pageSize : 20, - qtip : "Select Office", - queryParam : 'query[name]', - selectOnFocus : true, - tpl : '
{name}
', - triggerAction : 'all', - typeAhead : true, - valueField : 'id', - width : 300, - listeners : { - add : function (combo) - { - - } - }, - store : { - xtype: 'Store', - xns: Roo.data, - listeners : { - beforeload : function (_self, o){ - o.params = o.params || {}; - var coid = _this.form.findField('company_id').getValue(); - o.params.company_id = coid; - } - }, - remoteSort : true, - sortInfo : { direction : 'ASC', field: 'id' }, - proxy : { - xtype: 'HttpProxy', - xns: Roo.data, - method : 'GET', - url : baseURL + '/Roo/Office.php' - }, - reader : { - xtype: 'JsonReader', - xns: Roo.data, - id : 'id', - root : 'data', - totalProperty : 'total', - fields : [{"name":"id","type":"int"},{"name":"name","type":"string"}] - } - } - }, - { - xtype: 'TextField', - xns: Roo.form, - fieldLabel : 'Name', - name : 'name', - width : 300 - }, - { - xtype: 'TextField', - xns: Roo.form, - fieldLabel : 'Role', - name : 'role', - width : 200 - }, - { - xtype: 'TextField', - xns: Roo.form, - fieldLabel : 'Phone', - name : 'phone', - width : 200 - }, - { - xtype: 'TextField', - xns: Roo.form, - fieldLabel : 'Fax', - name : 'fax', - width : 200 - }, - { - xtype: 'TextField', - xns: Roo.form, - fieldLabel : 'Email', - name : 'email', - width : 200 - }, - { - xtype: 'Hidden', - xns: Roo.form, - name : 'id' - } - ] - } - ] + create : function() + { + var _this = this; + this.dialog = Roo.factory({ + xtype : 'LayoutDialog', + closable : false, + collapsible : false, + height : 290, + resizable : false, + title : _this._strings['c8972faa3b9e1c7250db23c57c85aa23'] /* Edit / Create Contact Details */, + width : 450, + xns : Roo, + '|xns' : 'Roo', + center : { + xtype : 'LayoutRegion', + xns : Roo, + '|xns' : 'Roo' + }, + buttons : [ + { + xtype : 'Button', + text : _this._strings['ea4788705e6873b424c65e91c2846b19'] /* Cancel */, + listeners : { + click : function (_self, e) + { + _this.dialog.hide(); + } + }, + xns : Roo, + '|xns' : 'Roo' + }, + { + xtype : 'Button', + text : _this._strings['c9cc8cce247e49bae79f15173ce97354'] /* Save */, + listeners : { + click : function (_self, e) + { + // do some checks? + + + _this.dialog.el.mask("Saving"); + _this.form.doAction("submit"); + + } + }, + xns : Roo, + '|xns' : 'Roo' + } + ], + items : [ + { + xtype : 'ContentPanel', + region : 'center', + xns : Roo, + '|xns' : 'Roo', + items : [ + { + xtype : 'Form', + method : 'POST', + style : 'margin:10px;', + url : baseURL + '/Roo/core_person', + listeners : { + actioncomplete : function(_self,action) + { + if (action.type == 'setdata') { + //_this.dialog.el.mask("Loading"); + //this.load({ method: 'GET', params: { '_id' : _this.data.id }}); + return; + } + if (action.type == 'load') { + _this.dialog.el.unmask(); + return; + } + if (action.type =='submit') { + + _this.dialog.el.unmask(); + _this.dialog.hide(); + + if (_this.callback) { + _this.callback.call(_this, _this.form.getValues()); + } + _this.form.reset(); + return; + } + }, + rendered : function (form) + { + _this.form= form; + } + }, + xns : Roo.form, + '|xns' : 'Roo.form', + items : [ + { + xtype : 'ComboBox', + allowBlank : false, + displayField : 'code', + editable : false, + emptyText : _this._strings['9675747b5ab12d05f18518761e68a533'] /* Select Companies */, + fieldLabel : _this._strings['1c76cbfe21c6f44c1d1e59d54f3e4420'] /* Company */, + forceSelection : true, + hiddenName : 'company_id', + listWidth : 400, + loadingText : _this._strings['1243daf593fa297e07ab03bf06d925af'] /* Searching... */, + minChars : 2, + name : 'company_id_code', + pageSize : 20, + qtip : _this._strings['9675747b5ab12d05f18518761e68a533'] /* Select Companies */, + queryParam : 'query[code]', + selectOnFocus : true, + tpl : '
{code}
', + triggerAction : 'all', + typeAhead : true, + valueField : 'id', + width : 300, + listeners : { + add : function (combo) + { + + Pman.Dialog.Companies.show( { id: 0 }, function(data) { + _this.form.setValues({ + company_id_name : data.name, + company_id : data.id + }); + }); + } + }, + xns : Roo.form, + '|xns' : 'Roo.form', + store : { + xtype : 'Store', + remoteSort : true, + sortInfo : { direction : 'ASC', field: 'id' }, + listeners : { + beforeload : function (_self, o){ + o.params = o.params || {}; + // set more here + } + }, + xns : Roo.data, + '|xns' : 'Roo.data', + proxy : { + xtype : 'HttpProxy', + method : 'GET', + url : baseURL + '/Roo/core_company.php', + xns : Roo.data, + '|xns' : 'Roo.data' + }, + reader : { + xtype : 'JsonReader', + fields : [{"name":"id","type":"int"},{"name":"code","type":"string"}], + id : 'id', + root : 'data', + totalProperty : 'total', + xns : Roo.data, + '|xns' : 'Roo.data' + } + } + }, + { + xtype : 'ComboBox', + allowBlank : false, + displayField : 'name', + editable : false, + emptyText : _this._strings['c373dd4bd4ba0b5d3e0c7522c5629880'] /* Select Office */, + fieldLabel : _this._strings['df814135652a5a308fea15bff37ea284'] /* Office */, + forceSelection : true, + hiddenName : 'office_id', + listWidth : 400, + loadingText : _this._strings['1243daf593fa297e07ab03bf06d925af'] /* Searching... */, + minChars : 2, + name : 'office_id_name', + pageSize : 20, + qtip : _this._strings['c373dd4bd4ba0b5d3e0c7522c5629880'] /* Select Office */, + queryParam : 'query[name]', + selectOnFocus : true, + tpl : '
{name}
', + triggerAction : 'all', + typeAhead : true, + valueField : 'id', + width : 300, + listeners : { + add : function (combo) + { + var coid = _this.form.findField('company_id').getValue(); + if (!coid ) { + + Ext.MessageBox.alert("Error", "Select An Company First"); + return false; + } - ], - center : { - xtype: 'LayoutRegion', - xns: Roo + Pman.Dialog.Office.show(cfg, function(data) { + _this.form.setValues({ + office_id_name : data.name, + office_id : data.id + }); + }); + + }, - buttons : [ - { - xtype: 'Button', - xns: Roo, - listeners : { - click : function (_self, e) - { - _this.dialog.hide(); - } - }, - text : "Cancel" - }, - { - xtype: 'Button', - xns: Roo, - listeners : { - click : function (_self, e) - { - // do some checks? - - - _this.dialog.el.mask("Saving"); - _this.form.doAction("submit"); - - } - }, - text : "Save" - } - ] - }); - } + beforequery : function (combo, query, forceAll, cancel, e) + { + var coid = _this.form.findField('company_id').getValue(); + if (coid < 1 ) { + Ext.MessageBox.alert("Error", "Select An Company First"); + return false; + } + } + }, + xns : Roo.form, + '|xns' : 'Roo.form', + store : { + xtype : 'Store', + remoteSort : true, + sortInfo : { direction : 'ASC', field: 'id' }, + listeners : { + beforeload : function (_self, o){ + o.params = o.params || {}; + var coid = _this.form.findField('company_id').getValue(); + o.params.company_id = coid; + } + }, + xns : Roo.data, + '|xns' : 'Roo.data', + proxy : { + xtype : 'HttpProxy', + method : 'GET', + url : baseURL + '/Roo/Office.php', + xns : Roo.data, + '|xns' : 'Roo.data' + }, + reader : { + xtype : 'JsonReader', + fields : [{"name":"id","type":"int"},{"name":"name","type":"string"}], + id : 'id', + root : 'data', + totalProperty : 'total', + xns : Roo.data, + '|xns' : 'Roo.data' + } + } + }, + { + xtype : 'TextField', + allowBlank : true, + fieldLabel : _this._strings['49ee3087348e8d44e1feda1917443987'] /* Name */, + name : 'name', + width : 300, + xns : Roo.form, + '|xns' : 'Roo.form' + }, + { + xtype : 'TextField', + fieldLabel : _this._strings['bbbabdbe1b262f75d99d62880b953be1'] /* Role */, + name : 'role', + width : 200, + xns : Roo.form, + '|xns' : 'Roo.form' + }, + { + xtype : 'TextField', + fieldLabel : _this._strings['bcc254b55c4a1babdf1dcb82c207506b'] /* Phone */, + name : 'phone', + width : 200, + xns : Roo.form, + '|xns' : 'Roo.form' + }, + { + xtype : 'TextField', + fieldLabel : _this._strings['9810aa2b9f44401be4bf73188ef2b67d'] /* Fax */, + name : 'fax', + width : 200, + xns : Roo.form, + '|xns' : 'Roo.form' + }, + { + xtype : 'TextField', + allowBlank : false, + fieldLabel : _this._strings['ce8ae9da5b7cd6c3df2929543a9af92d'] /* Email */, + name : 'email', + width : 200, + xns : Roo.form, + '|xns' : 'Roo.form' + }, + { + xtype : 'Hidden', + name : 'id', + xns : Roo.form, + '|xns' : 'Roo.form' + } + ] + } + ] + } + ] + }); + } };