X-Git-Url: http://git.roojs.org/?p=Pman.Admin;a=blobdiff_plain;f=Pman.Tab.AdminCompanies.js;h=1f60652e36a6a23ec0a41e5cf02263336bcae33e;hp=e512d8b6c0bb23e6849c89afdb7062f5b76c44c9;hb=HEAD;hpb=8bded7eab2f8a199d1c2cbafa5ace85038076d33 diff --git a/Pman.Tab.AdminCompanies.js b/Pman.Tab.AdminCompanies.js index e512d8b..1f60652 100644 --- a/Pman.Tab.AdminCompanies.js +++ b/Pman.Tab.AdminCompanies.js @@ -13,6 +13,7 @@ Pman.Tab.AdminCompanies = new Roo.XComponent({ 'ec211f7c20af43e742bf2570c3cb84f9' :"Add", 'fc6f97505d89fe9277965c126744647a' :"No Companies found", '7dce122004969d56ae2e0245cb754d35' :"Edit", + '68be4837f6c739877233e527a996dd00' :"Merge", '155ca6a755e25c15ad7ce45e2f638f10' :"Displaying Companies{0} - {1} of {2}", 'f2a6c498fb90ee345d997f888fce3b18' :"Delete", 'a1fa27779242b4902f7ae3bdd5c6d508' :"Type", @@ -30,44 +31,44 @@ Pman.Tab.AdminCompanies = new Roo.XComponent({ name : "Pman.Tab.AdminCompanies", disabled : false, permname : 'Admin.Companies', - _tree : function() + _tree : function(_data) { var _this = this; var MODULE = this; return { + xtype : 'NestedLayoutPanel', + background : true, region : 'center', title : _this._strings['edefbda3a2bdd979e42d8944b7325b79'] /* Companies */, xns : Roo, '|xns' : 'Roo', - xtype : 'NestedLayoutPanel', layout : { + xtype : 'BorderLayout', + listeners : '', xns : Roo, '|xns' : 'Roo', - xtype : 'BorderLayout', center : { + xtype : 'LayoutRegion', xns : Roo, - '|xns' : 'Roo', - xtype : 'LayoutRegion' + '|xns' : 'Roo' }, south : { + xtype : 'LayoutRegion', height : 150, split : true, titlebar : true, xns : Roo, - '|xns' : 'Roo', - xtype : 'LayoutRegion' + '|xns' : 'Roo' }, items : [ { + xtype : 'GridPanel', background : true, fitContainer : true, fitToframe : true, region : 'center', tableName : 'Companies', title : _this._strings['edefbda3a2bdd979e42d8944b7325b79'] /* Companies */, - xns : Roo, - '|xns' : 'Roo', - xtype : 'GridPanel', listeners : { activate : function() { _this.panel = this; @@ -76,12 +77,12 @@ Pman.Tab.AdminCompanies = new Roo.XComponent({ } } }, + xns : Roo, + '|xns' : 'Roo', grid : { + xtype : 'Grid', autoExpandColumn : 'name', loadMask : true, - xns : Roo.grid, - '|xns' : 'Roo.grid', - xtype : 'Grid', listeners : { render : function() { @@ -107,23 +108,23 @@ Pman.Tab.AdminCompanies = new Roo.XComponent({ } }, + xns : Roo.grid, + '|xns' : 'Roo.grid', footer : { + xtype : 'PagingToolbar', displayInfo : true, displayMsg : _this._strings['155ca6a755e25c15ad7ce45e2f638f10'] /* Displaying Companies{0} - {1} of {2} */, emptyMsg : _this._strings['fc6f97505d89fe9277965c126744647a'] /* No Companies found */, pageSize : 25, xns : Roo, - '|xns' : 'Roo', - xtype : 'PagingToolbar' + '|xns' : 'Roo' }, toolbar : { + xtype : 'Toolbar', xns : Roo, '|xns' : 'Roo', - xtype : 'Toolbar', items : [ { - xns : Roo.form, - '|xns' : 'Roo.form', xtype : 'TextField', listeners : { render : function (_self) @@ -140,47 +141,76 @@ Pman.Tab.AdminCompanies = new Roo.XComponent({ _this.grid.footer.onClick( 'first' ); } } - } + }, + xns : Roo.form, + '|xns' : 'Roo.form' }, { + xtype : 'Button', cls : 'x-btn-icon', icon : rootURL + '/Pman/templates/images/search.gif', - xns : Roo.Toolbar, - '|xns' : 'Roo.Toolbar', - xtype : 'Button', listeners : { click : function (_self, e) { _this.grid.footer.onClick('first'); } - } + }, + xns : Roo.Toolbar, + '|xns' : 'Roo.Toolbar' }, { + xtype : 'Button', cls : 'x-btn-icon', icon : rootURL + '/Pman/templates/images/edit-clear.gif', - xns : Roo.Toolbar, - '|xns' : 'Roo.Toolbar', - xtype : 'Button', listeners : { click : function (_self, e) { _this.searchBox.setValue(''); _this.grid.footer.onClick('first'); } - } + }, + xns : Roo.Toolbar, + '|xns' : 'Roo.Toolbar' }, { + xtype : 'Fill', xns : Roo.Toolbar, - '|xns' : 'Roo.Toolbar', - xtype : 'Fill' + '|xns' : 'Roo.Toolbar' }, { + xtype : 'Button', cls : 'x-btn-text-icon', - icon : Roo.rootURL + 'images/default/dd/drop-add.gif', - text : _this._strings['ec211f7c20af43e742bf2570c3cb84f9'] /* Add */, + icon : Roo.rootURL + 'images/default/tree/leaf.gif', + text : _this._strings['68be4837f6c739877233e527a996dd00'] /* Merge */, + listeners : { + click : function() + { + var s = _this.grid.getSelectionModel().getSelections(); + + if (!s.length || (s.length > 1)) { + Roo.MessageBox.alert("Error", s.length ? "Select only one Row" : "Select a Row"); + return; + } + + Pman.Dialog.AdminCompanyMerge.show(s[0].data, function() { + _this.grid.footer.onClick('first'); + }); + + } + }, + xns : Roo.Toolbar, + '|xns' : 'Roo.Toolbar' + }, + { + xtype : 'Separator', xns : Roo.Toolbar, - '|xns' : 'Roo.Toolbar', + '|xns' : 'Roo.Toolbar' + }, + { xtype : 'Button', + cls : 'x-btn-text-icon', + icon : Roo.rootURL + 'images/default/dd/drop-add.gif', + text : _this._strings['ec211f7c20af43e742bf2570c3cb84f9'] /* Add */, listeners : { click : function() { @@ -191,15 +221,15 @@ Pman.Tab.AdminCompanies = new Roo.XComponent({ _this.grid.footer.onClick('first'); }); } - } + }, + xns : Roo.Toolbar, + '|xns' : 'Roo.Toolbar' }, { + xtype : 'Button', cls : 'x-btn-text-icon', icon : Roo.rootURL + 'images/default/tree/leaf.gif', text : _this._strings['7dce122004969d56ae2e0245cb754d35'] /* Edit */, - xns : Roo.Toolbar, - '|xns' : 'Roo.Toolbar', - xtype : 'Button', listeners : { click : function() { @@ -216,36 +246,36 @@ Pman.Tab.AdminCompanies = new Roo.XComponent({ }); } - } + }, + xns : Roo.Toolbar, + '|xns' : 'Roo.Toolbar' }, { + xtype : 'Button', cls : 'x-btn-text-icon', icon : rootURL + '/Pman/templates/images/trash.gif', text : _this._strings['f2a6c498fb90ee345d997f888fce3b18'] /* Delete */, - xns : Roo.Toolbar, - '|xns' : 'Roo.Toolbar', - xtype : 'Button', listeners : { click : function() { - Pman.genericDelete(_this, 'Companies'); + Pman.genericDelete(_this, 'core_company'); } - } + }, + xns : Roo.Toolbar, + '|xns' : 'Roo.Toolbar' } ] }, dataSource : { + xtype : 'Store', remoteSort : true, sortInfo : { field : 'name', direction: 'ASC' }, - xns : Roo.data, - '|xns' : 'Roo.data', - xtype : 'Store', listeners : { beforeload : function (_self, o) { o.params = o.params || {}; try { - o.params['query[name]'] = _this.searchBox.getValue(); + o.params['search[name]'] = _this.searchBox.getValue(); } catch(e) { return false; } }, load : function (_self, records, options) @@ -255,20 +285,23 @@ Pman.Tab.AdminCompanies = new Roo.XComponent({ } catch (e) {} } }, + xns : Roo.data, + '|xns' : 'Roo.data', proxy : { - method : 'GET', - url : baseURL + '/Roo/Companies.php', - xns : Roo.data, - '|xns' : 'Roo.data', xtype : 'HttpProxy', + method : 'GET', + url : baseURL + '/Roo/core_company', listeners : { load : function (This, o, arg) { } - } + }, + xns : Roo.data, + '|xns' : 'Roo.data' }, reader : { + xtype : 'JsonReader', fields : [ { 'name': 'code', @@ -537,13 +570,13 @@ Pman.Tab.AdminCompanies = new Roo.XComponent({ root : 'data', totalProperty : 'total', xns : Roo.data, - '|xns' : 'Roo.data', - xtype : 'JsonReader' + '|xns' : 'Roo.data' } }, colModel : [ { - dataIndex : 'comptype', + xtype : 'ColumnModel', + dataIndex : 'comptype_id_display_name', header : _this._strings['a1fa27779242b4902f7ae3bdd5c6d508'] /* Type */, renderer : function (v,x ,r) { //return Pman.Dialog.Companies.comptypeListToString(r.data.isOwner ? 'OWNER' : v); @@ -552,20 +585,20 @@ Pman.Tab.AdminCompanies = new Roo.XComponent({ sortable : true, width : 90, xns : Roo.grid, - '|xns' : 'Roo.grid', - xtype : 'ColumnModel' + '|xns' : 'Roo.grid' }, { + xtype : 'ColumnModel', dataIndex : 'code', header : _this._strings['9c9745a343efeacc9efe9b7222b27afb'] /* Ref# */, renderer : function(v) { return String.format('{0}', v); }, sortable : true, width : 50, xns : Roo.grid, - '|xns' : 'Roo.grid', - xtype : 'ColumnModel' + '|xns' : 'Roo.grid' }, { + xtype : 'ColumnModel', dataIndex : 'name', header : _this._strings['49ee3087348e8d44e1feda1917443987'] /* Name */, renderer : function(v,x,r) { @@ -574,28 +607,28 @@ Pman.Tab.AdminCompanies = new Roo.XComponent({ sortable : true, width : 200, xns : Roo.grid, - '|xns' : 'Roo.grid', - xtype : 'ColumnModel' + '|xns' : 'Roo.grid' }, { + xtype : 'ColumnModel', dataIndex : 'tel', header : _this._strings['2e006b735fbd916d8ab26978ae6714d4'] /* Tel */, renderer : function(v) { return String.format('{0}', v); }, width : 100, xns : Roo.grid, - '|xns' : 'Roo.grid', - xtype : 'ColumnModel' + '|xns' : 'Roo.grid' }, { + xtype : 'ColumnModel', dataIndex : 'fax', header : _this._strings['9810aa2b9f44401be4bf73188ef2b67d'] /* Fax */, renderer : function(v) { return String.format('{0}', v); }, width : 100, xns : Roo.grid, - '|xns' : 'Roo.grid', - xtype : 'ColumnModel' + '|xns' : 'Roo.grid' }, { + xtype : 'ColumnModel', dataIndex : 'email', header : _this._strings['ce8ae9da5b7cd6c3df2929543a9af92d'] /* Email */, renderer : function (v) { @@ -606,27 +639,26 @@ Pman.Tab.AdminCompanies = new Roo.XComponent({ sortable : true, width : 100, xns : Roo.grid, - '|xns' : 'Roo.grid', - xtype : 'ColumnModel' + '|xns' : 'Roo.grid' }, { + xtype : 'ColumnModel', dataIndex : 'address', header : _this._strings['dd7bf230fde8d4836917806aff6a6b27'] /* Address */, renderer : function(v) { return String.format('{0}', v); }, sortable : true, width : 200, xns : Roo.grid, - '|xns' : 'Roo.grid', - xtype : 'ColumnModel' + '|xns' : 'Roo.grid' }, { + xtype : 'ColumnModel', dataIndex : 'remarks', header : _this._strings['231bc72756b5e6de492aaaa1577f61b1'] /* Remarks */, renderer : function(v) { return String.format('{0}', v); }, width : 200, xns : Roo.grid, - '|xns' : 'Roo.grid', - xtype : 'ColumnModel' + '|xns' : 'Roo.grid' } ] }