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.
621 lines
20 KiB
JavaScript
621 lines
20 KiB
JavaScript
Ext.namespace('Shipping');
|
|
|
|
Shipping.MsCodeGoodInvIndex = function (config) {
|
|
Ext.applyIf(this, config);
|
|
this.initUIComponents();
|
|
window.Shipping.MsCodeGoodInvIndex.superclass.constructor.call(this);
|
|
};
|
|
|
|
Ext.extend(Shipping.MsCodeGoodInvIndex, Ext.Panel, {
|
|
|
|
OprationStatus: null, //仅当弹出界面时使用
|
|
SelectedRecord: null,
|
|
|
|
|
|
initUIComponents: function () {
|
|
//定义数据集
|
|
this.storeList = Ext.create('Ext.data.Store', {
|
|
model: 'MsCodeGoodInv',
|
|
remoteSort: true,
|
|
proxy: {
|
|
type: 'ajax',
|
|
url: '/MvcShipping/MsCodeGoodInv/GetDataList',
|
|
reader: {
|
|
id: 'GID',
|
|
root: 'data',
|
|
totalProperty: 'totalCount'
|
|
}
|
|
}
|
|
});
|
|
|
|
Ext.define('MsFeeCurr', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'CURR',
|
|
fields: [
|
|
{ name: 'CURR', type: 'string' },
|
|
{ name: 'DEFRATE', type: 'number' },
|
|
{ name: 'CRDEFRATE', type: 'number' }
|
|
]
|
|
});
|
|
_this = this;
|
|
|
|
this.gridListCellEditing = Ext.create('Ext.grid.plugin.CellEditing', {
|
|
clicksToEdit: 1
|
|
});
|
|
|
|
this.GridCheckBoxModel = Ext.create('Ext.selection.CheckboxModel');
|
|
|
|
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.StoreZTAXTYPE = Ext.create('Ext.data.Store', {
|
|
fields: ['OPLB', 'OPLBNAME']
|
|
});
|
|
this.StoreZTAXTYPE.add({ "OPLB":'', "OPLBNAME": "非零税率" });
|
|
this.StoreZTAXTYPE.add({ "OPLB":'1', "OPLBNAME": "免征" });
|
|
this.StoreZTAXTYPE.add({ "OPLB":'2', "OPLBNAME": "不征收" });
|
|
this.StoreZTAXTYPE.add({ "OPLB":'3', "OPLBNAME": "普通零税率" });
|
|
this.StoreZTAXTYPE.add({ "OPLB":'0', "OPLBNAME": "出口退税" });
|
|
|
|
|
|
this.comboxZTAXTYPE = Ext.create('DsExt.ux.RefTableCombox', {
|
|
store: this.StoreZTAXTYPE,
|
|
valueField: 'OPLB',
|
|
displayField: 'OPLBNAME',
|
|
forceSelection: true
|
|
});
|
|
|
|
|
|
this.StoreCurr = Ext.create('DsExt.ux.RefTableStore', {
|
|
model: 'MsFeeCurr',
|
|
proxy: { url: '/MvcShipping/MsChFee/GetFeeCurrList' }
|
|
});
|
|
this.StoreCurr.load({ params: { condition: ""} });
|
|
|
|
|
|
this.comboxCurr = Ext.create('DsExt.ux.RefTableCombox', {
|
|
store: this.StoreCurr,
|
|
forceSelection: true,
|
|
name: 'DEFCURR',
|
|
valueField: 'CURR',
|
|
displayField: 'CURR'
|
|
});
|
|
|
|
//定义Grid
|
|
this.gridList = new Ext.grid.GridPanel({
|
|
store: this.storeList,
|
|
enableHdMenu: false,
|
|
region: 'center',
|
|
loadMask: { msg: "数据加载中,请稍等..." },
|
|
trackMouseOver: true,
|
|
disableSelection: false,
|
|
plugins: [this.gridListCellEditing],
|
|
selType: 'cellmodel',
|
|
selModel: this.GridCheckBoxModel,
|
|
columns: [{
|
|
sortable: true,
|
|
dataIndex: 'GID',
|
|
header: 'GID',
|
|
hidden: true,
|
|
width: 120
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'GOODNAME',
|
|
hidded: true,
|
|
header: '商品名称',
|
|
editor: {
|
|
xtype: 'textfield',
|
|
selectOnFocus: true,
|
|
enableKeyEvents: true
|
|
|
|
},
|
|
width: 150
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'GOODCODE',
|
|
hidded: true,
|
|
header: '商品编码',
|
|
editor: {
|
|
xtype: 'textfield',
|
|
selectOnFocus: true,
|
|
enableKeyEvents: true
|
|
|
|
},
|
|
width: 150
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'TAXNO',
|
|
hidded: true,
|
|
header: '商品税目',
|
|
editor: {
|
|
xtype: 'textfield',
|
|
selectOnFocus: true,
|
|
enableKeyEvents: true
|
|
|
|
},
|
|
width: 150
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'TAXRATE',
|
|
hidded: true,
|
|
header: '税率',
|
|
editor: {
|
|
xtype: 'numberfield',
|
|
keyNavEnabled: false,
|
|
selectOnFocus: true,
|
|
decimalPrecision: 6,
|
|
hideTrigger: true,
|
|
width: 120,
|
|
mouseWheelEnabled: false
|
|
},
|
|
renderer: function (value, cellmeta, record, rowIndex, columnIndex, store) {
|
|
try {
|
|
var lsValue = usMoney(value, 6, '', false);
|
|
if (lsValue != "NaN") {
|
|
value = lsValue; if (parseFloat(lsValue) < 0) {
|
|
return '<SPAN style="COLOR: red">' + lsValue + '</SPAN>';
|
|
}
|
|
}
|
|
else {
|
|
return value;
|
|
}
|
|
}
|
|
catch (e) {
|
|
return value;
|
|
}
|
|
return value;
|
|
},
|
|
width: 120
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'ZTAXTYPE',
|
|
header: '零税率标识',
|
|
width: 100,
|
|
editor: this.comboxZTAXTYPE,
|
|
renderer: function (value, p, record) {
|
|
if (value == '')
|
|
return '非零税率';
|
|
else if (value == '0')
|
|
return '出口退税';
|
|
else if (value == '1')
|
|
return '免征';
|
|
else if (value == '2')
|
|
return '不征收';
|
|
else if (value == '3')
|
|
return '普通零税率';
|
|
}
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'TAXCLASS',
|
|
hidded: true,
|
|
header: '税收分类编码',
|
|
editor: {
|
|
xtype: 'textfield',
|
|
selectOnFocus: true,
|
|
enableKeyEvents: true
|
|
|
|
},
|
|
width: 150
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'TAXCLASSNAME',
|
|
hidded: true,
|
|
header: '税收分类名称',
|
|
editor: {
|
|
xtype: 'textfield',
|
|
selectOnFocus: true,
|
|
enableKeyEvents: true
|
|
|
|
},
|
|
width: 150
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'ISTAXPRICE',
|
|
header: '含税价标志',
|
|
width: 90,
|
|
editor: this.comboxBool,
|
|
renderer: function (value, p, record) {
|
|
if (value == '1')
|
|
return '是';
|
|
else return '否';
|
|
}
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'ISUSEPREF',
|
|
header: '享受优惠政策',
|
|
width: 90,
|
|
editor: this.comboxBool2,
|
|
renderer: function (value, p, record) {
|
|
if (value == '1')
|
|
return '是';
|
|
else return '否';
|
|
}
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'DEFREMARK',
|
|
hidded: true,
|
|
header: '优惠政策说明',
|
|
editor: {
|
|
xtype: 'textfield',
|
|
selectOnFocus: true,
|
|
enableKeyEvents: true
|
|
|
|
},
|
|
width: 150
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'ISDEF',
|
|
header: '默认商品名称',
|
|
width: 90,
|
|
editor: this.comboxBool3,
|
|
renderer: function (value, p, record) {
|
|
if (value == '1')
|
|
return '是';
|
|
else return '否';
|
|
}
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'DEFCURR',
|
|
header: '默认币别',
|
|
width: 90,
|
|
editor: this.comboxCurr
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'SPEC',
|
|
hidded: true,
|
|
header: '规格型号',
|
|
editor: {
|
|
xtype: 'textfield',
|
|
selectOnFocus: true,
|
|
enableKeyEvents: true
|
|
|
|
},
|
|
width: 150
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'UNIT',
|
|
hidded: true,
|
|
header: '单位',
|
|
editor: {
|
|
xtype: 'textfield',
|
|
selectOnFocus: true,
|
|
enableKeyEvents: true
|
|
|
|
},
|
|
width: 150
|
|
}
|
|
]
|
|
});
|
|
|
|
// this.gridList.addListener('itemdblclick', function (dataview, record, item, index, e, b) {
|
|
// this.SelectedRecord = record;
|
|
// this.OprationStatus = 'edit';
|
|
// window.open('/MvcShipping/MsCodeYardDataSet/Edit', "CODEYARDDATASET", 'width=800,height=600,top=0,left=0,resizable=yes,status=yes,menubar=no,scrollbars=yes');
|
|
// }, this);
|
|
|
|
//#region formSearch
|
|
|
|
//#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: '商品名称',
|
|
name: 'GOODNAME'
|
|
}, { xtype: 'hiddenfield' }, { xtype: 'hiddenfield' }, { xtype: 'hiddenfield' }, { xtype: 'hiddenfield' }
|
|
]
|
|
}
|
|
]//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/MsCodeYardDataSet/Edit', "CODEYARDDATASET", '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 selections = this.gridList.getSelectionModel().getSelection();
|
|
if (selections.length == 0) {
|
|
|
|
var record = Ext.create('MsCodeGoodInv', {
|
|
GID: '*',
|
|
GOODCODE: '',
|
|
GOODNAME: '',
|
|
DESCRIP: '',
|
|
TAXRATE: '0',
|
|
TAXNO: '',
|
|
TAXCLASS: '',
|
|
SPEC: '',
|
|
UNIT: '',
|
|
TAXCLASSNAME: '',
|
|
ISTAXPRICE: '0',
|
|
ISUSEPREF: '0',
|
|
ISDEF: '0'
|
|
});
|
|
this.storeList.add(record);
|
|
var n = this.storeList.getCount();
|
|
this.gridListCellEditing.startEditByPosition({ row: n - 1, column: 1 });
|
|
}
|
|
else {
|
|
var record_old = selections[0];
|
|
var record = Ext.create('MsCodeGoodInv', {
|
|
GID: '*',
|
|
GOODCODE: record_old.GOODCODE,
|
|
GOODNAME: record_old.GOODNAME,
|
|
DESCRIP: record_old.DESCRIP,
|
|
TAXRATE: record_old.TAXRATE,
|
|
TAXNO: record_old.TAXNO,
|
|
TAXCLASS: record_old.TAXCLASS,
|
|
SPEC: record_old.SPEC,
|
|
UNIT: record_old.UNIT,
|
|
TAXCLASSNAME: record_old.TAXCLASSNAME,
|
|
ISTAXPRICE: record_old.ISTAXPRICE,
|
|
ISUSEPREF: record_old.ISUSEPREF,
|
|
ISDEF: record_old.ISDEF
|
|
});
|
|
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/MsCodeGoodInv/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') {
|
|
Ext.Msg.wait('正在删除数据...');
|
|
Ext.Ajax.request({
|
|
waitMsg: '正在删除数据...',
|
|
url: '/MvcShipping/MsCodeGoodInv/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 GOODNAME = form.findField('GOODNAME').getValue();
|
|
sql = sql + getAndConSql(sql, GOODNAME, "GOODNAME like '%" + GOODNAME + "%'");
|
|
|
|
|
|
return sql;
|
|
},
|
|
OprationSwap: function () {
|
|
var ret = new Array();
|
|
ret[0] = this.OprationStatus;
|
|
ret[1] = this.storeList;
|
|
ret[2] = this.SelectedRecord;
|
|
|
|
return ret;
|
|
}
|
|
|
|
});
|
|
|
|
|