OtherIODetail.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /**
  2. * 其他收支明细表
  3. */
  4. Ext.define('saas.view.money.report.OtherIODetail', {
  5. extend: 'saas.view.core.report.ReportPanel',
  6. xtype: 'monry-report-otheriodetail',
  7. controller: 'money-report-otheriodetail',
  8. viewModel: 'money-report-otheriodetail',
  9. viewName: 'money-report-otheriodetail',
  10. groupField: null,
  11. // listUrl: '/api/money/report/recDetail',
  12. defaultCondition: null,
  13. reportTitle: '其他收支明细表',
  14. QueryWidth: 0.25,
  15. searchItems: [{
  16. xtype: 'customerDbfindTrigger',
  17. name: 'pi_custname',
  18. fieldLabel: '资金账户',
  19. columnWidth: 0.25
  20. }, {
  21. xtype : "remotecombo",
  22. storeUrl:'/api/document/customerkind/getCombo',
  23. name : "cu_type",
  24. emptyText : "收支类别",
  25. columnWidth: 0.25,
  26. hiddenBtn:true
  27. }, {
  28. xtype: 'condatefield',
  29. name: 'rb_date',
  30. fieldLabel: '日期',
  31. columnWidth: 0.25
  32. }],
  33. reportColumns: [{
  34. text: '日期',
  35. dataIndex: 'pi_inoutno',
  36. width: 200
  37. }, {
  38. text: '单据编号',
  39. dataIndex: 'pi_custcode',
  40. width: 200,
  41. }, {
  42. text: '收支类别',
  43. dataIndex: 'pi_custname',
  44. width: 200,
  45. }, {
  46. text: '资金账户',
  47. dataIndex: 'pi_class',
  48. width: 150
  49. }, {
  50. text: '收入',
  51. dataIndex: 'pu_buyername',
  52. width: 150
  53. }, {
  54. text: '支出',
  55. dataIndex: 'rb_date',
  56. width: 150
  57. }, {
  58. text: '往来单位',
  59. dataIndex: 'pd_pdno',
  60. width: 150,
  61. }, {
  62. text: '备注',
  63. dataIndex: 'cu_beginaramount',
  64. width: 150
  65. }]
  66. });