Skip to content
This repository has been archived by the owner on Dec 27, 2023. It is now read-only.

Commit

Permalink
feature(Crm/Grid): add 'end' column to gridPanel
Browse files Browse the repository at this point in the history
Change-Id: I3cf223717152f1770abd83b2a5fedba3d5238a34
Reviewed-on: http://gerrit.tine20.com/customers/18605
Reviewed-by: Philipp Schüle <p.schuele@metaways.de>
Tested-by: Philipp Schüle <p.schuele@metaways.de>
  • Loading branch information
Christian Feitl authored and pschuele committed Dec 1, 2020
1 parent 4016438 commit e1dfcab
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tine20/Crm/js/LeadGridPanel.js
Expand Up @@ -125,6 +125,7 @@ Tine.Crm.LeadGridPanel = Ext.extend(Tine.widgets.grid.GridPanel, {

{header: this.app.i18n._('Estimated end'), id: 'end_scheduled', dataIndex: 'end_scheduled', width: 100, renderer: Tine.Tinebase.common.dateRenderer, sortable: true },
{header: this.app.i18n._('End'), id: 'end', dataIndex: 'end', width: 100, renderer: Tine.Tinebase.common.dateRenderer, sortable: true },
{header: this.app.i18n._('Start'), id: 'start', dataIndex: 'start', width: 100, renderer: Tine.Tinebase.common.dateRenderer, sortable: true },
{header: this.app.i18n._('Probable Turnover'), id: 'probableTurnover', dataIndex: 'probableTurnover', width: 100, renderer: Ext.util.Format.money, sortable: false },
{header: this.app.i18n._('Resubmission Date'), id: 'resubmission_date', dataIndex: 'resubmission_date', width: 100, renderer: Tine.Tinebase.common.dateRenderer, sortable: true }

Expand Down

0 comments on commit e1dfcab

Please sign in to comment.