BasicConPortal.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. Ext.define('erp.view.common.sysinit.BasicConPortal', {
  2. extend: 'Ext.form.FieldContainer',
  3. alias: 'widget.basicconportlet',
  4. layout: 'column',
  5. margin: '4 0 0 4',
  6. autoScroll:true,
  7. border:false,
  8. defaults: {
  9. xtype: 'displayfield',
  10. columnWidth: .25
  11. },
  12. items: [{
  13. xtype: 'checkbox',
  14. checked: true,
  15. boxLabel: '基础配置项(使用前需具备数据)',
  16. columnWidth: 1
  17. },{
  18. value: '基础资料表',
  19. table: 'BaseDataSet'
  20. },{
  21. value: '列表',
  22. table: 'Datalist'
  23. },{
  24. value: '列表明细',
  25. table: 'DatalistDetail'
  26. },{
  27. value: '表单dbfind',
  28. table: 'DbfindsetUI'
  29. },{
  30. value: '表格dbfind',
  31. table: 'Dbfindset'
  32. },{
  33. value: '表格dbfind明细',
  34. table: 'DbfindsetDetail'
  35. },{
  36. value: '表格dbfind对照关系',
  37. table: 'DbfindsetGrid'
  38. },{
  39. value: '下拉框',
  40. table: 'DatalistCombo'
  41. },{
  42. value: '表格',
  43. table: 'DetailGrid'
  44. },{
  45. value: '逻辑配置明细',
  46. table: 'DocumentHandler'
  47. },{
  48. value: '出入库单设置',
  49. table: 'DocumentSetup'
  50. },{
  51. value: '表单',
  52. table: 'Form'
  53. },{
  54. value: '表单明细',
  55. table: 'FormDetail'
  56. },{
  57. value: '表格按钮',
  58. table: 'GridButton'
  59. },{
  60. value: '初始化表',
  61. table: 'Initialize'
  62. },{
  63. value: '初始化明细表',
  64. table: 'InitDetail'
  65. },{
  66. value: '算法设计',
  67. table: 'LogicDesc'
  68. },{
  69. value: '逻辑配置',
  70. table: 'LogicSetup'
  71. },{
  72. value: '抛转公式',
  73. table: 'PostStyle'
  74. },{
  75. value: '抛转关系对照表',
  76. table: 'PostStyleDetail'
  77. },{
  78. value: '抛转步骤',
  79. table: 'PostStyleStep'
  80. },{
  81. value: '表单关联查询',
  82. table: 'RelativeSearch'
  83. },{
  84. value: '表单关联查询Form',
  85. table: 'RelativeSearchForm'
  86. },{
  87. value: '表单关联查询Grid',
  88. table: 'RelativeSearchGrid'
  89. },{
  90. value: '状态码对照表',
  91. table: 'Status'
  92. },{
  93. value: '导航',
  94. table: 'Sysnavigation'
  95. },{
  96. value: '特殊权限库',
  97. table: 'SysSpecialPower'
  98. },{
  99. value: '关联UU字段',
  100. table: 'UUListener'
  101. },{
  102. xtype: 'checkbox',
  103. checked: true,
  104. boxLabel: '基础数据(业务处理前需具备数据)',
  105. margin: '4 0 0 0',
  106. columnWidth: 1
  107. },{
  108. value: '辅助核算',
  109. table: 'AssKind'
  110. },{
  111. value: '币别',
  112. table: 'Currencys'
  113. },{
  114. value: '月度汇率',
  115. table: 'CurrencysMonth'
  116. },{
  117. value: '编号原则',
  118. table: 'MaxNumbers'
  119. },{
  120. value: '账期',
  121. table: 'Periods'
  122. },{
  123. value: '账期明细',
  124. table: 'PeriodsDetail'
  125. },{
  126. value: '系统设置',
  127. table: 'Setting'
  128. },{
  129. value: '标准岗位',
  130. table: 'ST_Job'
  131. },{
  132. value: '标准岗位权限',
  133. table: 'ST_PositionPower'
  134. }],
  135. initComponent: function(){
  136. this.callParent(arguments);
  137. }
  138. });