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.
371 lines
13 KiB
JavaScript
371 lines
13 KiB
JavaScript
Ext.namespace('DsTruck');
|
|
|
|
DsTruck.MsWlTyreWxIndex = function (config) {
|
|
Ext.applyIf(this, config);
|
|
this.initUIComponents();
|
|
window.DsTruck.MsWlTyreWxIndex.superclass.constructor.call(this);
|
|
};
|
|
|
|
Ext.extend(DsTruck.MsWlTyreWxIndex, Ext.Panel, {
|
|
|
|
OprationStatus: null, //仅当弹出界面时使用
|
|
SelectedRecord: null,
|
|
|
|
|
|
initUIComponents: function () {
|
|
//定义数据集
|
|
this.storeList = Ext.create('Ext.data.Store', {
|
|
model: 'MsWlTyreWx',
|
|
remoteSort: true,
|
|
proxy: {
|
|
type: 'ajax',
|
|
url: '/TruckMng/MsWlTyreWx/GetDataList',
|
|
reader: {
|
|
id: 'SerialNo',
|
|
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: 'SerialNo',
|
|
header: '序号',
|
|
width: 80
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'OrgCode',
|
|
header: '组织编码',
|
|
renderer: function (value, p, record) { return value + '-' + record.data.OrgCode_Ref; },
|
|
width: 80
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'TruckNo',
|
|
header: '车牌号',
|
|
renderer: function (value, p, record) { return value + '-' + record.data.TruckNo_Ref; },
|
|
width: 160
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'PcNo',
|
|
header: '轮胎串号',
|
|
width: 120
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'PluCode',
|
|
header: '轮胎编码',
|
|
renderer: function (value, p, record) { return value + '-' + record.data.PluCode_Ref; },
|
|
width: 120
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'Spec',
|
|
header: '规格',
|
|
width: 160
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'TyreType',
|
|
header: '轮胎类型',
|
|
renderer: function (value, p, record) { return value + '-' + record.data.TyreType_Ref; },
|
|
width: 80
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'TyrePos',
|
|
header: '轮胎位置',
|
|
renderer: function (value, p, record) { return value + '-' + record.data.TyrePos_Ref; },
|
|
width: 80
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'WxTotal',
|
|
header: '维修金额',
|
|
width: 160
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'WxDate',
|
|
header: '维修日期',
|
|
width: 80
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'EtpName',
|
|
header: '厂家',
|
|
width: 200
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'Remark',
|
|
header: '备注',
|
|
width: 200
|
|
}
|
|
]
|
|
});
|
|
|
|
this.gridList.addListener('itemdblclick', function (dataview, record, item, index, e, b) {
|
|
this.SelectedRecord = record;
|
|
this.OprationStatus = 'edit';
|
|
DsOpenEditWin('/TruckMng/MsWlTyreWx/Edit');
|
|
}, this);
|
|
|
|
//#region formSearch
|
|
|
|
//#region formSearch枚举参照相关
|
|
|
|
this.storeTyreType = Ext.create('DsExt.ux.RefEnumStore', {});
|
|
this.storeTyreType.load({ params: { enumTypeId: 99013} });
|
|
|
|
this.comboxTyreType = Ext.create('DsExt.ux.RefEnumCombox', {
|
|
fieldLabel: '轮胎类型',
|
|
store: this.storeTyreType,
|
|
name: 'TyreType'
|
|
});
|
|
|
|
this.storeTyrePos = Ext.create('DsExt.ux.RefEnumStore', {});
|
|
this.storeTyrePos.load({ params: { enumTypeId: 99015} });
|
|
|
|
this.comboxTyrePos = Ext.create('DsExt.ux.RefEnumCombox', {
|
|
fieldLabel: '轮胎位置',
|
|
store: this.storeTyrePos,
|
|
name: 'TyrePos'
|
|
});
|
|
|
|
//#endregion
|
|
|
|
|
|
this.formSearch = Ext.widget('form', {
|
|
frame: true,
|
|
region: 'center',
|
|
bodyPadding: 5,
|
|
fieldDefaults: {
|
|
margins: '2 2 2 2',
|
|
labelAlign: 'right',
|
|
flex: 1,
|
|
labelWidth: 90,
|
|
msgTarget: 'qtip'
|
|
},
|
|
|
|
items: [
|
|
{//fieldset 1
|
|
xtype: 'container',
|
|
defaultType: 'textfield',
|
|
layout: 'anchor',
|
|
defaults: {
|
|
anchor: '100%'
|
|
},
|
|
items: [, {
|
|
xtype: 'container',
|
|
layout: 'hbox',
|
|
defaultType: 'textfield',
|
|
items: [{
|
|
fieldLabel: '车牌号',
|
|
name: 'TruckNo'
|
|
}, {
|
|
fieldLabel: '轮胎串号',
|
|
name: 'PcNo'
|
|
}, this.comboxTyreType
|
|
]
|
|
}, {
|
|
xtype: 'container',
|
|
layout: 'hbox',
|
|
defaultType: 'textfield',
|
|
items: [this.comboxTyrePos, {
|
|
fieldLabel: '从维修日期',
|
|
format: 'Y-m-d',
|
|
xtype: 'datefield',
|
|
name: 'WxDate_Min'
|
|
}, {
|
|
fieldLabel: '至维修日期',
|
|
format: 'Y-m-d',
|
|
xtype: 'datefield',
|
|
name: 'WxDate_Max'
|
|
}
|
|
]
|
|
}
|
|
]//end items(fieldset 1)
|
|
}//end fieldset 1
|
|
]//end root items
|
|
|
|
});
|
|
|
|
//#endregion formSearch
|
|
|
|
//查询工具条
|
|
this.panelBtn = new Ext.Panel({
|
|
region: "north",
|
|
tbar: [
|
|
{
|
|
text: "执行查询",
|
|
iconCls: "btnrefresh",
|
|
handler: function (button, event) {
|
|
this.onRefreshClick(button, event);
|
|
},
|
|
scope: this
|
|
},
|
|
{
|
|
text: "重置条件",
|
|
iconCls: "btnreset",
|
|
handler: function (button, event) {
|
|
},
|
|
scope: this
|
|
},
|
|
|
|
{
|
|
text: "挂顶入库",
|
|
iconCls: "btnTyreJhGd",
|
|
handler: function (button, event) {
|
|
this.onTyreJhGdClick(button, event);
|
|
},
|
|
scope: this
|
|
}
|
|
|
|
]
|
|
});
|
|
|
|
this.panelTop = new Ext.Panel({
|
|
layout: "border",
|
|
region: "north",
|
|
height: 110,
|
|
items: [this.formSearch, this.panelBtn]
|
|
});
|
|
|
|
Ext.apply(this, {
|
|
items: [this.panelTop, this.gridList]
|
|
});
|
|
|
|
this.storeList.on('beforeload', function (store) {
|
|
var sql = this.getCondition();
|
|
Ext.apply(store.proxy.extraParams, { condition: sql });
|
|
}, this);
|
|
|
|
}, //end initUIComponents
|
|
|
|
onRefreshClick: function (button, event) {
|
|
var sql = this.getCondition();
|
|
this.storeList.load({
|
|
params: { start: 0, limit: 20, sort: '', condition: sql },
|
|
waitMsg: "正在查询数据...",
|
|
scope: this
|
|
});
|
|
},
|
|
//挂顶轮胎入库
|
|
onTyreJhGdClick: 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/MsWlTyreWx/TyreJhGd',
|
|
params: {
|
|
data: Ext.JSON.encode(record.data)
|
|
},
|
|
callback: function (options, success, response) {
|
|
if (success) {
|
|
var jsonresult = Ext.JSON.decode(response.responseText);
|
|
if (jsonresult.Success) {
|
|
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: 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/MsWlTyreWx/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
|
|
getCondition: function () {
|
|
var form = this.formSearch.getForm();
|
|
if (!form.isValid()) {
|
|
Ext.Msg.alert('提示', '查询条件赋值错误,请检查。');
|
|
return '';
|
|
}
|
|
|
|
var sql = '';
|
|
|
|
var truckNo = form.findField('TruckNo').getValue();
|
|
sql = sql + getAndConSql(sql, truckNo, "TruckNo like '%" + truckNo + "%'");
|
|
|
|
var pcNo = form.findField('PcNo').getValue();
|
|
sql = sql + getAndConSql(sql, pcNo, "PcNo like '%" + pcNo + "%'");
|
|
|
|
var tyreType = form.findField('TyreType').getValue();
|
|
sql = sql + getAndConSql(sql, tyreType, "TyreType = '" + tyreType + "'");
|
|
|
|
var tyrePos = form.findField('TyrePos').getValue();
|
|
sql = sql + getAndConSql(sql, tyrePos, "TyrePos like '%" + tyrePos + "%'");
|
|
|
|
var wxDate_Min = form.findField('WxDate_Min').getRawValue();
|
|
sql = sql + getAndConSql(sql, wxDate_Min, "WxDate >= '" + wxDate_Min + "'");
|
|
|
|
var wxDate_Max = form.findField('WxDate_Max').getRawValue();
|
|
sql = sql + getAndConSql(sql, wxDate_Max, "WxDate <= '" + wxDate_Max + " 23:59:59'");
|
|
|
|
|
|
return sql;
|
|
},
|
|
OprationSwap: function () {
|
|
var ret = new Array();
|
|
ret[0] = this.OprationStatus;
|
|
ret[1] = this.storeList;
|
|
ret[2] = this.SelectedRecord;
|
|
|
|
return ret;
|
|
}
|
|
|
|
});
|