| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**
- *
- */
- Ext.define('erp.view.fa.gla.DeptCostGrid',{
- extend: 'Ext.grid.Panel',
- alias: 'widget.deptcostgrid',
- layout : 'fit',
- id: 'deptcost',
- emptyText : $I18N.common.grid.emptyText,
- columnLines : true,
- autoScroll : true,
- store: Ext.create('Ext.data.Store', {
- fields:[{
- name: 'am_yearmonth',
- type: 'string'
- },{
- name: 'ca_code',
- type: 'string'
- },{
- name: 'ca_name',
- type: 'string'
- }],
- data: []
- }),
- columns: [{
- dataIndex: 'am_yearmonth',
- cls: 'x-grid-header-1',
- sortable: false,
- text: '期间',
- width: 120
- },{
- dataIndex: 'ca_code',
- cls: 'x-grid-header-1',
- sortable: false,
- text: '科目编号',
- width: 120
- },{
- dataIndex: 'ca_name',
- cls: 'x-grid-header-1',
- sortable: false,
- text: '科目名称',
- width: 150
- }/*,{
- dataIndex: 'sl_balance',
- cls: 'x-grid-header-1',
- sortable: false,
- text: '余额',
- width: 120,
- xtype: 'numbercolumn',
- format: '0,000.000',
- align: 'right'
- }*/],
- bodyStyle:'background-color:#f1f1f1;',
- GridUtil: Ext.create('erp.util.GridUtil'),
- initComponent : function(){
- this.callParent(arguments);
- },
- viewConfig: {
- getRowClass: function(record) {
- return record.get('isCount') ? 'isCount' : null;
- }
- }
- });
|