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.

546 lines
20 KiB
JavaScript

Ext.namespace('Shipping');
Shipping.MsCodeOpMustFieldIndex = function (config) {
Ext.applyIf(this, config);
this.initUIComponents();
window.Shipping.MsCodeOpMustFieldIndex.superclass.constructor.call(this);
};
Ext.extend(Shipping.MsCodeOpMustFieldIndex, Ext.Panel, {
OprationStatus: null, //仅当弹出界面时使用
SelectedRecord: null,
initUIComponents: function () {
//定义数据集
this.storeList = Ext.create('Ext.data.Store', {
model: 'MsCodeOpMustField',
remoteSort: true,
proxy: {
type: 'ajax',
url: '/MvcShipping/MsCodeOpMustField/GetDataList',
reader: {
id: 'GID',
root: 'data',
totalProperty: 'totalCount'
}
}
});
this.storeOpType = Ext.create('DsExt.ux.RefEnumStore', {});
this.storeOpType.load({ params: { enumTypeId: 97019} });
this.comboxOpType = Ext.create('DsExt.ux.RefTableCombox', {
store: this.storeOpType,
name: 'BSTYPE',
valueField: 'EnumValueName',
displayField: 'EnumValueName',
listeners: {
scope: this,
'select': function (combo, records, eOpts) {
if (records.length > 0) {
if (combo.value == '海运出口') {
this.StoreField.load({ params: { optable: "OP_SEAE"} });
}
if (combo.value == '海运出口AMS') {
this.StoreField.load({ params: { optable: "OP_SEAE_AMS"} });
}
if (combo.value == '更改单') {
this.StoreField.load({ params: { optable: "OP_AMEND" } });
}
if (combo.value == '海运进口') {
this.StoreField.load({ params: { optable: "OP_SEAI"} });
}
if (combo.value == '空运出口') {
this.StoreField.load({ params: { optable: "OP_AIRE"} });
}
if (combo.value == '空运进口') {
this.StoreField.load({ params: { optable: "OP_AIRI"} });
}
if (combo.value == '综合业务') {
this.StoreField.load({ params: { optable: "OP_OTHER"} });
}
if (combo.value == '报关业务') {
this.StoreField.load({ params: { optable: "OP_APPLY"} });
}
if (combo.value == '铁路运输') {
this.StoreField.load({ params: { optable: "OP_RAILWAY" } });
}
if (combo.value == '大宗散货') {
this.StoreField.load({ params: { optable: "OP_BULK"} });
}
if (combo.value == '费用信息') {
this.StoreField.load({ params: { optable: "CH_FEE"} });
}
if (combo.value == '销售订舱') {
this.StoreField.load({ params: { optable: "CRM_SEAEORDER"} });
}
if (combo.value == '陆运派车单' || combo.value == '陆运派车') {
this.StoreField.load({ params: { optable: "tMsWlPcHead"} });
} if (combo.value == '付费申请') {
this.StoreField.load({ params: { optable: "CH_FEE_PAYAPPLICATION"} });
} if (combo.value == '收费申请') {
this.StoreField.load({ params: { optable: "CH_FEE_RECVAPPLICATION"} });
} if (combo.value == '发票申请') {
this.StoreField.load({ params: { optable: "CH_FEE_INVOICEAPPLICATION"} });
} if (combo.value == '发票开出') {
this.StoreField.load({ params: { optable: "CH_FEE_INVOICE"} });
} if (combo.value == '发票核销') {
this.StoreField.load({ params: { optable: "CH_FEE_INVOICEHEXIAO"} });
} if (combo.value == '国内空运') {
this.StoreField.load({ params: { optable: "OP_AIRN"} });
} if (combo.value == '往来单位') {
this.StoreField.load({ params: { optable: "INFO_CLIENT"} });
} if (combo.value == '进口贸易') {
this.StoreField.load({ params: { optable: "Import_main"} });
} if (combo.value == '特殊放单申请') {
this.StoreField.load({ params: { optable: "op_blissuelist" } });
} if (combo.value == '陆运普货订单') {
this.StoreField.load({ params: { optable: "op_truck_bulk" } });
} if (combo.value == '陆运普货派车') {
this.StoreField.load({ params: { optable: "op_truck_bulk_pc" } });
} if (combo.value == '陆运费用方案') {
this.StoreField.load({ params: { optable: "Cust_Truck_feetemplate" } });
} if (combo.value == '陆运集运订单') {
this.StoreField.load({ params: { optable: "op_truck_bulk" } });
} if (combo.value == '陆运集运派车') {
this.StoreField.load({ params: { optable: "op_truck_bulk_pc" } });
} if (combo.value == '仓储入库') {
this.StoreField.load({ params: { optable: "WMS" } });
} if (combo.value == '仓储出库') {
this.StoreField.load({ params: { optable: "WMS_OUT" } });
} if (combo.value == '内贸海运业务') {
this.StoreField.load({ params: { optable: "op_InternalTrade" } });
} if (combo.value == '入货通知') {
this.StoreField.load({ params: { optable: "op_letter_yard" } });
}
}
}
}
});
this.StoreField = Ext.create('DsExt.ux.RefTableStore', {
model: 'MsCodeFieldName',
proxy: { url: '/MvcShipping/MsCodeOpDef/GetFieldList' }
});
this.StoreField.load({ params: { optable: "OP_SEAE"} });
this.comboxField = Ext.create('DsExt.ux.RefTableCombox', {
store: this.StoreField,
valueField: 'FieldName',
displayField: 'FieldName',
forceSelection: true,
name: 'FIELDNAME'
});
this.StoreBool = Ext.create('Ext.data.Store', {
fields: ['BL','NUM']
});
this.StoreBool.add({ "BL": "是", "NUM": "1" });
this.StoreBool.add({ "BL": "否", "NUM": "0" });
this.comboxBool = Ext.create('DsExt.ux.RefTableCombox', {
store: this.StoreBool,
forceSelection: true,
valueField: 'NUM',
displayField: 'BL'
});
this.StoreBool2 = Ext.create('Ext.data.Store', {
fields: ['BL', 'NUM']
});
this.StoreBool2.add({ "BL": "是", "NUM": "1" });
this.StoreBool2.add({ "BL": "否", "NUM": "0" });
this.comboxBool2 = Ext.create('DsExt.ux.RefTableCombox', {
store: this.StoreBool2,
forceSelection: true,
valueField: 'NUM',
displayField: 'BL'
});
this.StoreBool3 = Ext.create('Ext.data.Store', {
fields: ['BL', 'NUM']
});
this.StoreBool3.add({ "BL": "是", "NUM": "1" });
this.StoreBool3.add({ "BL": "否", "NUM": "0" });
this.comboxBool3 = Ext.create('DsExt.ux.RefTableCombox', {
store: this.StoreBool3,
forceSelection: true,
valueField: 'NUM',
displayField: 'BL'
});
this.gridListCellEditing = Ext.create('Ext.grid.plugin.CellEditing', {
clicksToEdit: 1
});
//定义Grid
this.gridList = new Ext.grid.GridPanel({
store: this.storeList,
enableHdMenu: false,
region: 'center',
loadMask: { msg: "数据加载中,请稍等..." },
trackMouseOver: true,
plugins: [this.gridListCellEditing],
disableSelection: false,
columns: [{
sortable: true,
dataIndex: 'GID',
header: 'GID',
hidden: true,
width: 120
}, {
sortable: true,
dataIndex: 'CORPID',
header: 'CORPID',
hidden: true,
width: 120
}, {
sortable: true,
dataIndex: 'BSTYPE',
header: '业务类型',
width: 160,
editor: this.comboxOpType
}, {
sortable: true,
dataIndex: 'FIELDNAME',
header: '字段名称',
width: 200,
editor: this.comboxField
}, {
sortable: true,
dataIndex: 'ISMUST',
header: '必填字段',
width: 100,
editor: this.comboxBool,
renderer: function (value, p, record) {
if (value == '1')
return '是';
else return '否';
}
}, {
sortable: true,
dataIndex: 'ISCOLOR',
header: '标记颜色',
width: 100,
editor: this.comboxBool2,
renderer: function (value, p, record) {
if (value == '1')
return '是';
else return '否';
}
}, {
sortable: true,
dataIndex: 'ISREADONLY',
header: '是否只读',
width: 100,
editor: this.comboxBool3,
renderer: function (value, p, record) {
if (value == '1')
return '是';
else return '否';
}
}
]
});
// this.gridList.addListener('itemdblclick', function (dataview, record, item, index, e, b) {
// this.SelectedRecord = record;
// this.OprationStatus = 'edit';
// window.open('/MvcShipping/MsCodeOpMustField/Edit', "CODEOPMUSTFIELD", 'width=800,height=600,top=0,left=0,resizable=yes,status=yes,menubar=no,scrollbars=yes');
// }, this);
//#region formSearch
this.storeOpType2 = Ext.create('DsExt.ux.RefEnumStore', {});
this.storeOpType2.load({ params: { enumTypeId: 97019} });
this.comboxOpType2 = Ext.create('DsExt.ux.RefEnumCombox', {
fieldLabel: '业务类型',
store: this.storeOpType2,
valueField: 'EnumValueName',
displayField: 'EnumValueName',
name: 'OPTYPE'
});
//#region formSearch枚举参照相关
//#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: 'OPTYPESTR',
name: 'OPTYPESTR', hidden: true
}, this.comboxOpType2, {
fieldLabel: '字段名称',
name: 'FIELDNAME'
}
]
}
]//end items(fieldset 1)
}//end fieldset 1
]//end root items
});
//#endregion formSearch
//查询工具条
this.panelBtn = new Ext.Panel({
region: "north",
tbar: [
{
text: "新建",
iconCls: "btnadd",
handler: function (button, event) {
this.addDetail();
// this.OprationStatus = 'add';
// window.open('/MvcShipping/MsCodeOpMustField/Edit', "CODEOPMUSTFIELD", 'width=800,height=600,top=0,left=0,resizable=yes,status=yes,menubar=no,scrollbars=yes');
},
scope: this
},
{
text: "保存",
iconCls: "btnsave",
handler: function (button, event) {
this.onPostDetailClick(button, event);
},
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: 80,
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);
this.onRefreshClick();
}, //end initUIComponents
onRefreshClick: function (button, event) {
var sql = this.getCondition();
this.storeList.load({
params: { start: 0, limit: 500, sort: '', condition: sql },
waitMsg: "正在查询数据...",
scope: this
});
},
addDetail: function () {
//var newSerialno = DsGetNewSerialNo(this.storeBodyList, this.serialNo);
var record = Ext.create('MsCodeOpMustField', {
GID:'*',
BSTYPE: '海运出口',
FIELDNAME: '',
ISMUST: '',
CORPID: '',
ISCOLOR: '',
ISREADONLY: ''
});
this.storeList.add(record);
var n = this.storeList.getCount();
this.gridListCellEditing.startEditByPosition({ row: n - 1, column: 1 });
},
onPostDetailClick: function (button, event) {
var bodyDrChFeeDatas = [];
var i;
for (i = 0; i < this.storeList.getCount(); i += 1) {
var memberyf = this.storeList.getAt(i);
bodyDrChFeeDatas.push(memberyf);
};
var jsonChFeeBody = ConvertRecordsToJsonAll(bodyDrChFeeDatas);
_thisfee = this;
Ext.Msg.wait('正在保存数据, 请稍侯..');
Ext.Ajax.request({
waitMsg: '正在保存数据...',
url: '/MvcShipping/MsCodeOpMustField/SaveDetail',
scope: this,
params: {
body: jsonChFeeBody
},
callback: function (options, success, response) {
if (success) {
Ext.MessageBox.hide();
var jsonresult = Ext.JSON.decode(response.responseText);
if (jsonresult.Success) {
this.onRefreshClick();
} else {
Ext.Msg.show({ title: '错误', msg: jsonresult.Message, icon: Ext.Msg.ERROR, buttons: Ext.Msg.OK });
}
} else {
Ext.Msg.show({ title: '请重试',
msg: '服务器响应出错',
icon: Ext.Msg.ERROR, buttons: Ext.Msg.OK
});
}
}
});
}, //end save
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') {
var bodyAddDatas = [];
for (var i = 0; i < selections.length; i++) {
var rec = selections[i];
bodyAddDatas.push(rec);
}
var jsonbodyAddDatas = ConvertRecordsToJsonAll(bodyAddDatas);
Ext.Msg.wait('正在删除数据...');
Ext.Ajax.request({
waitMsg: '正在删除数据...',
url: '/MvcShipping/MsCodeOpMustField/Delete',
params: {
data: jsonbodyAddDatas
},
callback: function (options, success, response) {
if (success) {
var jsonresult = Ext.JSON.decode(response.responseText);
if (jsonresult.Success) {
this.onRefreshClick();
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 SERVICENAME = form.findField('FIELDNAME').getValue();
sql = sql + getAndConSql(sql, SERVICENAME, "FIELDNAME like '%" + SERVICENAME + "%'");
var OPTYPE = form.findField('OPTYPE').getValue();
sql = sql + getAndConSql(sql, OPTYPE, "BSTYPE='" + OPTYPE + "'");
return sql;
},
OprationSwap: function () {
var ret = new Array();
ret[0] = this.OprationStatus;
ret[1] = this.storeList;
ret[2] = this.SelectedRecord;
return ret;
}
});