You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
3.0 KiB
JavaScript

10 months ago
Ext.namespace('Shipping');
Shipping.EDIImport = function (config) {
Ext.applyIf(this, config);
this.initUIComponents();
Shipping.EDIImport.superclass.constructor.call(this);
};
Ext.extend(Shipping.EDIImport, Ext.Window, {
StoreList: null,
initUIComponents: function () {
// BEGIN OF CODE GENERATION PARTS, DON'T DELETE CODE BELOW
Ext.apply(this, {
height: 100,
closable: true,
draggable: true,
defaultButton: 'btnImport',
resizable: false,
items: [{
region: "center",
frame: "true",
items: [{
xtype: 'filefield',
name: 'file',
fieldLabel: 'EDI文件',
labelWidth: 80,
anchor: '100%',
buttonText: '选择文件...'
}],
xtype: "form",
layout: "form",
id: 'importForm',
buttons: [{
text: "导入",
id: 'btnImport',
handler: function (button, event) {
var form = Ext.getCmp("importForm").getForm();
var storeList = this.StoreList;
//var form = this.up("form").getForm();
if (form.isValid()) {
form.submit({
url: '/MvcShipping/MsOpSeae/ImportEdi', waitMsg: '正在导入文件...',
success: function (f, a) {
var result = a.result,
dataList = result.data;
for (var i = 0; i < dataList.length; i++) {
var record = dataList[i];
storeList.add(record);
}
var win = Ext.getCmp("importWin");
win.close();
// Ext.Msg.alert('Success', result.Message);
},
failure: function (f, a) {
Ext.Msg.alert('Failure', a.result.Message);
}
});
}
//this.onImportClick(button, event);
},
scope: this
}, {
text: "关闭",
handler: function (button, event) {
var win = this.up("window"); // Ext.getCmp("importWin");
win.close();
}
}]
}],
layout: "border",
width: 300,
xtype: "window",
id: "importWin"/*,
closeAction: "hide"*/
});
// END OF CODE GENERATION PARTS, DON'T DELETE CODE ABOVE
}
});