| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- Ext.define('saas.view.money.othreceipts.QueryPanel', {
- extend: 'saas.view.core.query.QueryPanel',
- xtype: 'money-othreceipts-querypanel',
- controller: 'money-othreceipts-querypanel',
- viewModel: 'money-othreceipts-querypanel',
- viewName: 'money-othreceipts-querypanel',
-
- queryFormItems: [{
- xtype: 'hidden',
- name: 'or_id',
- fieldLabel: 'ID',
- allowBlank: true,
- columnWidth: 0
- }, {
- xtype : 'hidden',
- name : 'or_custid',
- fieldLabel : '客户ID'
- }, {
- xtype: 'hidden',
- name: 'or_custcode',
- fieldLabel: '客户编号'
- }, {
- xtype: 'dbfindtrigger',
- name: 'or_custname',
- fieldLabel: '客户名称'
- }, {
- xtype : 'hidden',
- name : 'or_bankid',
- fieldLabel : '账户ID'
- }, {
- xtype: 'hidden',
- name: 'or_bankcode',
- fieldLabel: '账户编号'
- }, {
- xtype: 'dbfindtrigger',
- name: 'or_bankname',
- fieldLabel: '账户名称'
- }],
- moreQueryFormItems: [],
- queryGridConfig: {
- idField: 'or_id',
- codeField: 'or_code',
- addTitle: '其它收入单',
- addXtype: 'money-othreceipts-formpanel',
- defaultCondition:'',
- // baseVastUrl: basePath+'money/othreceipts/',
- baseVastUrl: 'http://192.168.253.129:8940/othreceipts/',
- baseColumn: [{
- text: 'id',
- dataIndex: 'or_id',
- width: 0,
- xtype: 'numbercolumn'
- }, {
- text: '单据编号',
- dataIndex: 'or_code',
- width: 120
- }, {
- text: '单据状态',
- dataIndex: 'or_status',
- width: 120
- }, {
- text: '录入人',
- dataIndex: 'or_recorder',
- width: 120
- }, {
- text: '单据日期',
- dataIndex: 'or_date',
- xtype: 'datecolumn',
- width: 200
- }, {
- text: '客户名称',
- dataIndex: 'or_custname',
- width: 120
- }, {
- text: '金额',
- dataIndex: 'or_amount',
- xtype: 'numbercolumn',
- width: 120
- }, {
- text: '备注',
- dataIndex: 'or_remark',
- width: 250,
- flex: 1
- }],
- relativeColumn: []
- }
- });
|