|
|
|
@ -2612,6 +2612,7 @@ Ext.extend(Shipping.MsChfeeAudit, Ext.Panel, {
|
|
|
|
|
scope: this
|
|
|
|
|
}, '-', {
|
|
|
|
|
text: Zi.LAN.Costlock, //费用锁定
|
|
|
|
|
id: Zi.LAN.Costlock,
|
|
|
|
|
tooltip: '费用锁定',
|
|
|
|
|
menu:
|
|
|
|
|
[
|
|
|
|
@ -3984,7 +3985,27 @@ Ext.extend(Shipping.MsChfeeAudit, Ext.Panel, {
|
|
|
|
|
scope: this
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
Ext.Ajax.request({
|
|
|
|
|
waitMsg: '',
|
|
|
|
|
url: '/MvcShipping/MsBaseInfo/GetUserModuleEnable',
|
|
|
|
|
params: {
|
|
|
|
|
modulename: "modFeeAuditNoFEEClock"
|
|
|
|
|
},
|
|
|
|
|
callback: function (options, success, response) {
|
|
|
|
|
if (success) {
|
|
|
|
|
var result = Ext.JSON.decode(response.responseText);
|
|
|
|
|
if (result.Success != true) {
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
var btnFeeLock = Ext.getCmp(Zi.LAN.Costlock);
|
|
|
|
|
btnFeeLock.setVisible(false);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
scope: this
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}, //end initUIComponents
|
|
|
|
|
|
|
|
|
|