| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- Ext.define('saas.view.money.report.PayDetail', {
- extend: 'saas.view.core.report.ReportPanel',
- xtype: 'monry-report-paydetail',
- controller: 'money-report-paydetail',
- viewModel: 'money-report-paydetail',
- viewName: 'money-report-paydetail',
- groupField: null,
- listUrl: '/api/money/report/payDetail',
- // listUrl: 'http://192.168.253.35:8880/report/payDetail',
- defaultCondition: null,
- reportTitle: '应付账款明细表',
- QueryWidth:0.1,
- //筛选:供应商、日期(必填)
- searchItems: [ {
- xtype: 'dbfindtrigger',
- name: 'pi_vendname',
- fieldLabel: '供应商名称',
- columnWidth: 0.2
- }, {
- xtype: 'condatefield',
- name: 'pb_date',
- fieldLabel: '单据日期',
- columnWidth: 0.5
- }],
- reportColumns: [
- {
- text: 'id',
- dataIndex: 'pi_id',
- hidden: true
- }, {
- text: '单号',
- dataIndex: 'pi_inoutno',
- width: 200
- },{
- text:'供应商编号',
- dataIndex:'pi_vendcode'
- },{
- text:'供应商名称',
- dataIndex:'pi_vendname'
- }, {
- text: '单据类型',
- dataIndex: 'pi_class',
- width: 200
- }, {
- text: '单据日期',
- dataIndex: 'pb_date',
- width: 200
- }, {
- text: '采购员',
- dataIndex: 'pu_buyercode'
- },{
- text: '单据日期',
- dataIndex: 'pb_date'
- }, {
- text: '期初应付余额',
- dataIndex: 've_beginapamount',
- summaryType: 'count'
- }, {
- text: '本期付款金额',
- dataIndex: 'pb_pdamount',
- summaryType: 'count'
- }, {
- text: '应付余额',
- dataIndex: 'mustpay',
- summaryType: 'count'
- }, {
- text: '应付日期',
- dataIndex: 'mustdate',
- }, {
- text: '单据总金额',
- dataIndex: 'pi_total',
- summaryType: 'count'
- }, {
- text: '备注',
- dataIndex: 'pi_remark'
- }]
- });
|