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.
288 lines
9.4 KiB
JavaScript
288 lines
9.4 KiB
JavaScript
Ext.namespace('DsTruck');
|
|
|
|
DsTruck.MsKfCgIndex = function (config) {
|
|
Ext.applyIf(this, config);
|
|
this.initUIComponents();
|
|
window.DsTruck.MsKfCgIndex.superclass.constructor.call(this);
|
|
};
|
|
|
|
Ext.extend(DsTruck.MsKfCgIndex, Ext.Panel, {
|
|
PageSize: 30,
|
|
OprationStatus: null, //仅当弹出界面时使用
|
|
SelectedRecord: null,
|
|
|
|
|
|
initUIComponents: function () {
|
|
//定义数据集
|
|
this.storeList = Ext.create('Ext.data.Store', {
|
|
pageSize: this.PageSize,
|
|
model: 'MsKfCgHead',
|
|
remoteSort: true,
|
|
proxy: {
|
|
type: 'ajax',
|
|
url: '/TruckMng/MsKfCg/GetDataList',
|
|
reader: {
|
|
id: 'BillNo',
|
|
root: 'data',
|
|
totalProperty: 'totalCount'
|
|
}
|
|
}
|
|
});
|
|
|
|
//定义Grid
|
|
this.gridList = new Ext.grid.GridPanel({
|
|
store: this.storeList,
|
|
enableHdMenu: false,
|
|
region: 'center',
|
|
loadMask: { msg: "数据加载中,请稍等..." },
|
|
trackMouseOver: true,
|
|
disableSelection: false,
|
|
columns: [{
|
|
sortable: true,
|
|
dataIndex: 'BillNo',
|
|
header: '单据号',
|
|
width: 120
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'LrDate',
|
|
header: '录入日期',
|
|
width: 80
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'JzDate',
|
|
header: '记账日期',
|
|
width: 80
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'UserCode',
|
|
header: '用户编码',
|
|
width: 60
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'UserName',
|
|
header: '用户姓名',
|
|
width: 80
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'TimeMark',
|
|
header: '时间戳',
|
|
width: 160
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'OrgCode',
|
|
header: '组织编码',
|
|
renderer: function (value, p, record) { return value + '-' + record.data.OrgCode_Ref; },
|
|
width: 80
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'OrgName',
|
|
header: '组织名称',
|
|
width: 200
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'CkCode',
|
|
header: '仓库编码',
|
|
renderer: function (value, p, record) { return value + '-' + record.data.CkCode_Ref; },
|
|
width: 80
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'CkName',
|
|
header: '仓库名称',
|
|
width: 200
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'PluType',
|
|
header: '配件类型',
|
|
renderer: function (value, p, record) { return value + '-' + record.data.PluType_Ref; },
|
|
width: 40
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'CgDate',
|
|
header: '申领日期',
|
|
width: 80
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'CgyCode',
|
|
header: '申领人编码',
|
|
renderer: function (value, p, record) { return value + '-' + record.data.CgyCode_Ref; },
|
|
width: 60
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'CgyName',
|
|
header: '申领人姓名',
|
|
width: 80
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'CgCount',
|
|
header: '申领数量',
|
|
width: 160
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'CgTotal',
|
|
header: '申领金额',
|
|
width: 160
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'SdCount',
|
|
header: '实到数量',
|
|
width: 160
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'ZxFlag',
|
|
header: '执行标志',
|
|
renderer: function (value, p, record) { return value + '-' + record.data.ZxFlag_Ref; },
|
|
width: 20
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'Remark',
|
|
header: '备注',
|
|
width: 200
|
|
}
|
|
],
|
|
// paging bar on the bottom
|
|
bbar: Ext.create('Ext.PagingToolbar', {
|
|
store: this.storeList,
|
|
displayInfo: true,
|
|
displayMsg: '当前显示 {0} - {1}条记录 /共 {2}条记录',
|
|
emptyMsg: "没有数据"
|
|
})
|
|
});
|
|
|
|
this.gridList.addListener('itemdblclick', function (dataview, record, item, index, e, b) {
|
|
this.SelectedRecord = record;
|
|
this.OprationStatus = 'edit';
|
|
DsOpenEditWin('/TruckMng/MsKfCg/Edit');
|
|
}, this);
|
|
|
|
this.formSearch = Ext.widget('form', {
|
|
frame: true,
|
|
region: 'center',
|
|
bodyPadding: 5,
|
|
fieldDefaults: {
|
|
labelAlign: 'right',
|
|
labelWidth: 90,
|
|
msgTarget: 'qtip'
|
|
},
|
|
|
|
items: [{
|
|
name: 'OrgCode',
|
|
fieldLabel: '组织编码'
|
|
}]
|
|
});
|
|
|
|
//查询工具条
|
|
this.panelBtn = new Ext.Panel({
|
|
region: "north",
|
|
tbar: [
|
|
{
|
|
text: "新建",
|
|
iconCls: "btnadd",
|
|
handler: function (button, event) {
|
|
this.OprationStatus = 'add';
|
|
DsOpenEditWin('/TruckMng/MsKfCg/Edit');
|
|
},
|
|
scope: this
|
|
|
|
},
|
|
{
|
|
text: "删除",
|
|
iconCls: "btndelete",
|
|
handler: function (button, event) {
|
|
this.onDeleteClick(button, event);
|
|
},
|
|
scope: this
|
|
},
|
|
'-',
|
|
{
|
|
text: "执行查询",
|
|
iconCls: "btnrefresh",
|
|
handler: function (button, event) {
|
|
this.onRefreshClick(button, event);
|
|
},
|
|
scope: this
|
|
},
|
|
{
|
|
text: "重置条件",
|
|
iconCls: "btnreset",
|
|
handler: function (button, event) {
|
|
},
|
|
scope: this
|
|
}
|
|
]
|
|
});
|
|
|
|
this.panelTop = new Ext.Panel({
|
|
layout: "border",
|
|
region: "north",
|
|
height: 120,
|
|
items: [this.formSearch, this.panelBtn]
|
|
});
|
|
|
|
Ext.apply(this, {
|
|
items: [this.panelTop, this.gridList]
|
|
});
|
|
|
|
}, //end initUIComponents
|
|
|
|
onRefreshClick: function (button, event) {
|
|
var sql = '';
|
|
this.storeList.load({
|
|
params: { start: 0, limit: this.PageSize, sort: '', condition: sql },
|
|
waitMsg: "正在查询数据...",
|
|
scope: this
|
|
});
|
|
},
|
|
|
|
onDeleteClick: function (button, event) {
|
|
var selections = this.gridList.getSelectionModel().getSelection();
|
|
if (selections.length == 0) {
|
|
Ext.Msg.show({ title: '提示', msg: '请先选择单据!', icon: Ext.Msg.INFO, buttons: Ext.Msg.OK });
|
|
return;
|
|
}
|
|
|
|
var record = selections[0];
|
|
Ext.MessageBox.confirm('提示', '确定删除该记录吗?', function (btn) {
|
|
if (btn == 'yes') {
|
|
Ext.Msg.wait('正在删除数据...');
|
|
Ext.Ajax.request({
|
|
waitMsg: '正在删除数据...',
|
|
url: '/TruckMng/MsKfCg/Delete',
|
|
params: {
|
|
data: Ext.JSON.encode(record.data)
|
|
},
|
|
callback: function (options, success, response) {
|
|
if (success) {
|
|
var jsonresult = Ext.JSON.decode(response.responseText);
|
|
if (jsonresult.Success) {
|
|
this.storeList.remove(record);
|
|
Ext.Msg.show({ title: '提示', msg: jsonresult.Message, icon: Ext.Msg.INFO, buttons: Ext.Msg.OK });
|
|
}
|
|
else {
|
|
Ext.Msg.show({ title: '错误', msg: jsonresult.Message, icon: Ext.Msg.ERROR, buttons: Ext.Msg.OK });
|
|
}
|
|
}
|
|
},
|
|
failure: function (response, options) {
|
|
Ext.Msg.show({ title: '警告', msg: '服务器响应出错,请重试', icon: Ext.Msg.INFO, buttons: Ext.Msg.OK });
|
|
},
|
|
success: function (response, options) {
|
|
},
|
|
scope: this
|
|
}); //end Ext.Ajax.request
|
|
}
|
|
}, this);
|
|
}, //onDeleteClick
|
|
|
|
OprationSwap: function () {
|
|
var ret = new Array();
|
|
ret[0] = this.OprationStatus;
|
|
ret[1] = this.storeList;
|
|
ret[2] = this.SelectedRecord;
|
|
|
|
return ret;
|
|
}
|
|
|
|
});
|
|
|
|
|