| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /**
- * 其他收支明细表
- */
- Ext.define('saas.view.money.report.OtherIODetail', {
- extend: 'saas.view.core.report.ReportPanel',
- xtype: 'monry-report-otheriodetail',
- controller: 'money-report-otheriodetail',
- viewModel: 'money-report-otheriodetail',
- viewName: 'money-report-otheriodetail',
- groupField: null,
- // listUrl: '/api/money/report/recDetail',
- defaultCondition: null,
- reportTitle: '其他收支明细表',
- QueryWidth: 0.25,
- searchItems: [{
- xtype: 'customerDbfindTrigger',
- name: 'pi_custname',
- fieldLabel: '资金账户',
- columnWidth: 0.25
- }, {
- xtype : "remotecombo",
- storeUrl:'/api/document/customerkind/getCombo',
- name : "cu_type",
- emptyText : "收支类别",
- columnWidth: 0.25,
- hiddenBtn:true
- }, {
- xtype: 'condatefield',
- name: 'rb_date',
- fieldLabel: '日期',
- columnWidth: 0.25
- }],
- reportColumns: [{
- text: '日期',
- dataIndex: 'pi_inoutno',
- width: 200
- }, {
- text: '单据编号',
- dataIndex: 'pi_custcode',
- width: 200,
- }, {
- text: '收支类别',
- dataIndex: 'pi_custname',
- width: 200,
- }, {
- text: '资金账户',
- dataIndex: 'pi_class',
- width: 150
- }, {
- text: '收入',
- dataIndex: 'pu_buyername',
- width: 150
- }, {
- text: '支出',
- dataIndex: 'rb_date',
- width: 150
- }, {
- text: '往来单位',
- dataIndex: 'pd_pdno',
- width: 150,
- }, {
- text: '备注',
- dataIndex: 'cu_beginaramount',
- width: 150
- }]
- });
|