|
|
@ -163,6 +163,7 @@ Ext.extend(Shipping.MainForm, Ext.Panel, {
|
|
|
|
{ name: 'DESCRIPTION', type: 'string' },
|
|
|
|
{ name: 'DESCRIPTION', type: 'string' },
|
|
|
|
{ name: 'MODULEURL', type: 'string' },
|
|
|
|
{ name: 'MODULEURL', type: 'string' },
|
|
|
|
{ name: 'SORT', type: 'number' },
|
|
|
|
{ name: 'SORT', type: 'number' },
|
|
|
|
|
|
|
|
{ name: 'SHOWROOTSTATE', type: 'number' },
|
|
|
|
{ name: 'PARENTID', type: 'string' },
|
|
|
|
{ name: 'PARENTID', type: 'string' },
|
|
|
|
{ name: 'PARENTNAME', type: 'string' },
|
|
|
|
{ name: 'PARENTNAME', type: 'string' },
|
|
|
|
{ name: 'TYPE', type: 'number' },
|
|
|
|
{ name: 'TYPE', type: 'number' },
|
|
|
@ -1067,6 +1068,24 @@ Ext.extend(Shipping.MainForm, Ext.Panel, {
|
|
|
|
this.PubStore_storeModuleEnable.load({
|
|
|
|
this.PubStore_storeModuleEnable.load({
|
|
|
|
params: { condition: "sys_module.MODULEURL<>'#' and sys_module.MODULEURL<>'@'" },
|
|
|
|
params: { condition: "sys_module.MODULEURL<>'#' and sys_module.MODULEURL<>'@'" },
|
|
|
|
callback: function (r, options, success) {
|
|
|
|
callback: function (r, options, success) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (success) {
|
|
|
|
|
|
|
|
if (this.PubStore_storeModuleEnable.getCount() > 0) {
|
|
|
|
|
|
|
|
for (var j = 0; j < this.PubStore_storeModuleEnable.getCount(); j += 1) {
|
|
|
|
|
|
|
|
var member = this.PubStore_storeModuleEnable.getAt(j);
|
|
|
|
|
|
|
|
if (member.data.SHOWROOTSTATE == 1) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.clicktree(member);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
scope: this
|
|
|
|
scope: this
|
|
|
|
});
|
|
|
|
});
|
|
|
|