QueryPanel.js 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. Ext.define('saas.view.money.fundtransfer.QueryPanel', {
  2. extend: 'saas.view.core.query.QueryPanel',
  3. xtype: 'money-fundtransfer-querypanel',
  4. controller: 'money-fundtransfer-querypanel',
  5. viewModel: 'money-fundtransfer-querypanel',
  6. viewName: 'money-fundtransfer-querypanel',
  7. queryFormItems: [{
  8. xtype : "datefield",
  9. name : "ft_date",
  10. fieldLabel : "单据日期"
  11. }],
  12. moreQueryFormItems: [],
  13. queryGridConfig: {
  14. idField: 'id',
  15. codeField: 'ft_code',
  16. addTitle: '其它收入单',
  17. addXtype: 'money-fundtransfer-formpanel',
  18. defaultCondition:'',
  19. baseVastUrl: '/api/money/fundtransfer/',
  20. baseColumn: [{
  21. text: 'id',
  22. dataIndex: 'id',
  23. width: 0,
  24. xtype: 'numbercolumn'
  25. }, {
  26. text: '单据编号',
  27. dataIndex: 'ft_code',
  28. width: 200
  29. }, {
  30. text: '单据状态',
  31. dataIndex: 'ft_status',
  32. width: 120
  33. }, {
  34. text: '录入人',
  35. dataIndex: 'ft_recorder',
  36. width: 120
  37. }, {
  38. text: '单据日期',
  39. dataIndex: 'ft_date',
  40. xtype: 'datecolumn',
  41. width: 200
  42. }, {
  43. text: '期间',
  44. dataIndex: 'ftd_ym',
  45. xtype : "numbercolumn",
  46. width: 120
  47. }, {
  48. text: '转出账户',
  49. dataIndex: 'ftd_bankname',
  50. width: 120
  51. }, {
  52. text: '转入账户',
  53. dataIndex: 'ftd_inbankname',
  54. width: 120
  55. }, {
  56. text: '金额',
  57. dataIndex: 'ftd_nowbalance',
  58. xtype : "numbercolumn",
  59. width: 120
  60. }, {
  61. text: '结算方式',
  62. dataIndex: 'ftd_paymethod',
  63. width: 120
  64. }, {
  65. text: '备注',
  66. dataIndex: 'ft_remark',
  67. width: 250,
  68. flex: 1
  69. }],
  70. relativeColumn: []
  71. }
  72. });