Esempio n. 1
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for id field
     //
     $column = new TextViewColumn('id', 'Id', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for habilitacion field
     //
     $column = new TextViewColumn('habilitacion', 'Habilitacion', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for nit field
     //
     $column = new TextViewColumn('nit', 'Nit', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for nombre field
     //
     $column = new TextViewColumn('nombre', 'Nombre', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for tipo field
     //
     $column = new TextViewColumn('tipo', 'Tipo', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for direccion field
     //
     $column = new TextViewColumn('direccion', 'Direccion', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for telefono field
     //
     $column = new TextViewColumn('telefono', 'Telefono', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for depto field
     //
     $column = new TextViewColumn('depto', 'Depto', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for mupio field
     //
     $column = new TextViewColumn('mupio', 'Mupio', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
Esempio n. 2
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for id_periodicidad field
     //
     $column = new TextViewColumn('id_periodicidad', 'Id Periodicidad', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     
     //
     // View column for no_periodicidad field
     //
     $column = new TextViewColumn('no_periodicidad', 'No Periodicidad', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     
     //
     // View column for va_frecuencia field
     //
     $column = new TextViewColumn('va_frecuencia', 'Frecuencia', $this->dataset);
     $column->SetOrderable(true);
     $column = new NumberFormatValueViewColumnDecorator($column, 4, ',', '.');
     $grid->AddExportColumn($column);
 }
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for priority field
     //
     $column = new TextViewColumn('priority', 'Priority', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for total_allocated_hrs field
     //
     $column = new TextViewColumn('total_allocated_hrs', 'Total Allocated Hrs', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for program_name field
     //
     $column = new TextViewColumn('programm_id_program_name', 'Project Type', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for project_name field
     //
     $column = new TextViewColumn('project_name', 'Project Name', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for date_start field
     //
     $column = new DateTimeViewColumn('date_start', 'Date Start', $this->dataset);
     $column->SetDateTimeFormat('Y-m-d');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for date_end field
     //
     $column = new DateTimeViewColumn('date_end', 'Date End', $this->dataset);
     $column->SetDateTimeFormat('Y-m-d');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for year field
     //
     $column = new TextViewColumn('year', 'Year', $this->dataset);
     $column->SetOrderable(true);
     $column->SetEscapeHTMLSpecialChars(true);
     $column->SetWordWrap(false);
     $grid->AddExportColumn($column);
     //
     // View column for notes field
     //
     $column = new TextViewColumn('notes', 'Notes', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for Name field
     //
     $column = new TextViewColumn('priority_Name', 'Priority', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for username field
     //
     $column = new TextViewColumn('lead_username', 'Project Lead', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for approved_budget field
     //
     $column = new TextViewColumn('approved_budget', 'Approved Budget', $this->dataset);
     $column->SetOrderable(true);
     $column = new CurrencyFormatValueViewColumnDecorator($column, 2, ',', '.', $this->RenderText('$'));
     $grid->AddExportColumn($column);
     //
     // View column for budget_spent field
     //
     $column = new TextViewColumn('budget_spent', 'Budget Spent', $this->dataset);
     $column->SetOrderable(true);
     $column = new CurrencyFormatValueViewColumnDecorator($column, 2, ',', '.', $this->RenderText('$'));
     $grid->AddExportColumn($column);
     //
     // View column for multi_year field
     //
     $column = new TextViewColumn('multi_year', 'Multi Year', $this->dataset);
     $column->SetOrderable(true);
     $column = new CheckBoxFormatValueViewColumnDecorator($column);
     $column->SetDisplayValues($this->RenderText('<img src="images/checked.png" alt="true">'), $this->RenderText(''));
     $grid->AddExportColumn($column);
     //
     // View column for public_engagement field
     //
     $column = new TextViewColumn('public_engagement', 'Public Engagement', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for level_of_service field
     //
     $column = new TextViewColumn('level_of_service', 'Level Of Service', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for approved field
     //
     $column = new TextViewColumn('approved', 'Approved by CAO', $this->dataset);
     $column->SetOrderable(true);
     $column = new CheckBoxFormatValueViewColumnDecorator($column);
     $column->SetDisplayValues($this->RenderText('<img src="images/checked.png" alt="true">'), $this->RenderText(''));
     $grid->AddExportColumn($column);
     //
     // View column for progress field
     //
     $column = new TextViewColumn('progress', 'Progress', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for DEPARTMENT field
     //
     $column = new TextViewColumn('dept_id_DEPARTMENT', 'Department', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
Esempio n. 5
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for id_tipo_espacio field
     //
     $column = new TextViewColumn('id_tipo_espacio', 'Id Tipo Espacio', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     
     //
     // View column for no_tipo_espacio field
     //
     $column = new TextViewColumn('no_tipo_espacio', 'No Tipo Espacio', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     
     //
     // View column for no_tipo_espacio field
     //
     $column = new TextViewColumn('id_tipo_espacio_padre_no_tipo_espacio', 'Id Tipo Espacio Padre', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     
     //
     // View column for ds_referencia field
     //
     $column = new TextViewColumn('ds_referencia', 'Ds Referencia', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
Esempio n. 6
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for id field
     //
     $column = new TextViewColumn('id', 'Id', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for ofv-numoff field
     //
     $column = new TextViewColumn('ofv-numoff', 'Ofv-numoff', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for ofv-codvoce field
     //
     $column = new TextViewColumn('ofv-codvoce', 'Ofv-codvoce', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for ofv-quantita field
     //
     $column = new TextViewColumn('ofv-quantita', 'Ofv-quantita', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for ofv-lunghezza field
     //
     $column = new TextViewColumn('ofv-lunghezza', 'Ofv-lunghezza', $this->dataset);
     $column->SetOrderable(true);
     $column = new NumberFormatValueViewColumnDecorator($column, 2, '.', ',');
     $grid->AddExportColumn($column);
     //
     // View column for ofv-larghezza field
     //
     $column = new TextViewColumn('ofv-larghezza', 'Ofv-larghezza', $this->dataset);
     $column->SetOrderable(true);
     $column = new NumberFormatValueViewColumnDecorator($column, 2, '.', ',');
     $grid->AddExportColumn($column);
     //
     // View column for ofv-tiposmu field
     //
     $column = new TextViewColumn('ofv-tiposmu', 'Ofv-tiposmu', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for ofv-przacq field
     //
     $column = new TextViewColumn('ofv-przacq', 'Ofv-przacq', $this->dataset);
     $column->SetOrderable(true);
     $column = new NumberFormatValueViewColumnDecorator($column, 2, '.', ',');
     $grid->AddExportColumn($column);
     //
     // View column for ofv-sconto field
     //
     $column = new TextViewColumn('ofv-sconto', 'Ofv-sconto', $this->dataset);
     $column->SetOrderable(true);
     $column = new NumberFormatValueViewColumnDecorator($column, 2, '.', ',');
     $grid->AddExportColumn($column);
     //
     // View column for ofv-valuni-cal field
     //
     $column = new TextViewColumn('ofv-valuni-cal', 'Ofv-valuni-cal', $this->dataset);
     $column->SetOrderable(true);
     $column = new NumberFormatValueViewColumnDecorator($column, 2, '.', ',');
     $grid->AddExportColumn($column);
     //
     // View column for ofv-valuni-fin field
     //
     $column = new TextViewColumn('ofv-valuni-fin', 'Ofv-valuni-fin', $this->dataset);
     $column->SetOrderable(true);
     $column = new NumberFormatValueViewColumnDecorator($column, 2, '.', ',');
     $grid->AddExportColumn($column);
     //
     // View column for datains field
     //
     $column = new DateTimeViewColumn('datains', 'Datains', $this->dataset);
     $column->SetDateTimeFormat('d-m-Y H:i:s');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for datamod field
     //
     $column = new DateTimeViewColumn('datamod', 'Datamod', $this->dataset);
     $column->SetDateTimeFormat('d-m-Y H:i:s');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for user_id field
     //
     $column = new TextViewColumn('user_id', 'User Id', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for page_name field
     //
     $column = new TextViewColumn('page_name', 'Page Name', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for perm_name field
     //
     $column = new TextViewColumn('perm_name', 'Perm Name', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
Esempio n. 8
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for descrizione field
     //
     $column = new TextViewColumn('lis-codart_descrizione', 'Codice Articolo', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for lisdesc field
     //
     $column = new TextViewColumn('lisdesc', 'Lisdesc', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for lis-unimis field
     //
     $column = new TextViewColumn('lis-unimis', 'Unità misura', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for lis-przacq field
     //
     $column = new TextViewColumn('lis-przacq', 'Prezzo acquisto', $this->dataset);
     $column->SetOrderable(true);
     $column = new NumberFormatValueViewColumnDecorator($column, 2, '.', ',');
     $grid->AddExportColumn($column);
     //
     // View column for lis-moltipl field
     //
     $column = new TextViewColumn('lis-moltipl', 'Moltiplicatore', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for lis-oneriacc field
     //
     $column = new TextViewColumn('lis-oneriacc', 'Oneri e accessori', $this->dataset);
     $column->SetOrderable(true);
     $column = new NumberFormatValueViewColumnDecorator($column, 2, '.', ',');
     $grid->AddExportColumn($column);
     //
     // View column for lis-scarto field
     //
     $column = new TextViewColumn('lis-scarto', 'Scarto', $this->dataset);
     $column->SetOrderable(true);
     $column = new NumberFormatValueViewColumnDecorator($column, 2, '.', ',');
     $grid->AddExportColumn($column);
     //
     // View column for lis-dataini field
     //
     $column = new DateTimeViewColumn('lis-dataini', 'Data inizio decorrenza', $this->dataset);
     $column->SetDateTimeFormat('d-m-Y');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for lis-datafin field
     //
     $column = new DateTimeViewColumn('lis-datafin', 'Data fine decorrenza', $this->dataset);
     $column->SetDateTimeFormat('d-m-Y');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for id field
     //
     $column = new TextViewColumn('id', 'Id', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for id_planificacion field
     //
     $column = new TextViewColumn('id_planificacion', 'Id Planificacion', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for descripcion field
     //
     $column = new TextViewColumn('descripcion', 'Descripcion', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for esfuerzo field
     //
     $column = new TextViewColumn('esfuerzo', 'Esfuerzo', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
Esempio n. 10
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for id_origen_lectura field
     //
     $column = new TextViewColumn('id_origen_lectura', 'Id Origen Lectura', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for co_origen_lectura field
     //
     $column = new TextViewColumn('co_origen_lectura', 'Código Origen Lectura', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for no_origen_lectura field
     //
     $column = new TextViewColumn('no_origen_lectura', 'No Origen Lectura', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
Esempio n. 11
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for id_metodologia field
     //
     $column = new TextViewColumn('id_metodologia', 'Id Metodologia', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     
     //
     // View column for no_metodologia field
     //
     $column = new TextViewColumn('no_metodologia', 'No Metodologia', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     
     //
     // View column for ds_metodologia field
     //
     $column = new TextViewColumn('ds_metodologia', 'Ds Metodologia', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     
     //
     // View column for no_origen field
     //
     $column = new TextViewColumn('id_origen_no_origen', 'Origen', $this->dataset);
     $column->SetOrderable(true);
     $column = new ExtendedHyperLinkColumnDecorator($column, $this->dataset, 'origen.php?operation=view&pk0=%id_origen%' , '_self');
     $grid->AddExportColumn($column);
 }
Esempio n. 12
0
File: lugar.php Progetto: jsrxar/dto
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for id_lugar field
     //
     $column = new TextViewColumn('id_lugar', 'Id Lugar', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for co_lugar field
     //
     $column = new TextViewColumn('co_lugar', 'Código Lugar', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for no_lugar field
     //
     $column = new TextViewColumn('no_lugar', 'No Lugar', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for ds_direccion field
     //
     $column = new TextViewColumn('ds_direccion', 'Ds Direccion', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
Esempio n. 13
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for project_id field
     //
     $column = new TextViewColumn('project_id', 'Project Id', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for project_type field
     //
     $column = new TextViewColumn('project_type', 'Project Type', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for project_name field
     //
     $column = new TextViewColumn('project_name', 'Project Name', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for date_start field
     //
     $column = new DateTimeViewColumn('date_start', 'Date Start', $this->dataset);
     $column->SetDateTimeFormat('Y-m-d H:i:s');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for date_end field
     //
     $column = new DateTimeViewColumn('date_end', 'Date End', $this->dataset);
     $column->SetDateTimeFormat('Y-m-d H:i:s');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for year field
     //
     $column = new TextViewColumn('year', 'Year', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for Objective field
     //
     $column = new TextViewColumn('Objective', 'Objective', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for priority field
     //
     $column = new TextViewColumn('priority', 'Priority', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for project_lead field
     //
     $column = new TextViewColumn('project_lead', 'Project Lead', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for approved_budget field
     //
     $column = new TextViewColumn('approved_budget', 'Approved Budget', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for budget_spent field
     //
     $column = new TextViewColumn('budget_spent', 'Budget Spent', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for multi_year field
     //
     $column = new TextViewColumn('multi_year', 'Multi Year', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for public_engagement field
     //
     $column = new TextViewColumn('public_engagement', 'Public Engagement', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for level_of_service field
     //
     $column = new TextViewColumn('level_of_service', 'Level Of Service', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for approved_by_cao field
     //
     $column = new TextViewColumn('approved_by_cao', 'Approved By Cao', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for progress field
     //
     $column = new TextViewColumn('progress', 'Progress', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for DEPARTMENT field
     //
     $column = new TextViewColumn('DEPARTMENT', 'DEPARTMENT', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for total_hours field
     //
     $column = new TextViewColumn('total_hours', 'Total Hours', $this->dataset);
     $column->SetOrderable(true);
     $column = new NumberFormatValueViewColumnDecorator($column, 2, ',', '.');
     $grid->AddExportColumn($column);
     //
     // View column for assigned_hours field
     //
     $column = new TextViewColumn('assigned_hours', 'Assigned Hours', $this->dataset);
     $column->SetOrderable(true);
     $column = new NumberFormatValueViewColumnDecorator($column, 2, ',', '.');
     $grid->AddExportColumn($column);
     //
     // View column for assigned_progress field
     //
     $column = new TextViewColumn('assigned_progress', 'Assigned Progress', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
Esempio n. 14
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for COLOR_PELO_ID field
     //
     $column = new TextViewColumn('COLOR_PELO_ID', 'COLOR PELO ID', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for NOMBRE field
     //
     $column = new TextViewColumn('NOMBRE', 'NOMBRE', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for FEC_CREACION field
     //
     $column = new DateTimeViewColumn('FEC_CREACION', 'FEC CREACION', $this->dataset);
     $column->SetDateTimeFormat('Y-m-d');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for USUARIO_CREACION field
     //
     $column = new TextViewColumn('USUARIO_CREACION', 'USUARIO CREACION', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for FEC_ULTIMA_MOD field
     //
     $column = new DateTimeViewColumn('FEC_ULTIMA_MOD', 'FEC ULTIMA MOD', $this->dataset);
     $column->SetDateTimeFormat('Y-m-d');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for USUARIO_ULTIMA_MOD field
     //
     $column = new TextViewColumn('USUARIO_ULTIMA_MOD', 'USUARIO ULTIMA MOD', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for USERNAME field
     //
     $column = new TextViewColumn('USERNAME', 'USERNAME', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for ES_REAL field
     //
     $column = new TextViewColumn('ES_REAL', 'ES REAL', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for NOMBRE field
     //
     $column = new TextViewColumn('LA1', 'EJERCICIO ID', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for FEC_CREACION field
     //
     $column = new DateTimeViewColumn('FEC_CREACION', 'FEC CREACION', $this->dataset);
     $column->SetDateTimeFormat('Y-m-d');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for USUARIO_CREACION field
     //
     $column = new TextViewColumn('USUARIO_CREACION', 'USUARIO CREACION', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for FEC_ULTIMA_MOD field
     //
     $column = new DateTimeViewColumn('FEC_ULTIMA_MOD', 'FEC ULTIMA MOD', $this->dataset);
     $column->SetDateTimeFormat('Y-m-d');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for USUARIO_ULTIMA_MOD field
     //
     $column = new TextViewColumn('USUARIO_ULTIMA_MOD', 'USUARIO ULTIMA MOD', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
Esempio n. 16
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for id_empresa field
     //
     $column = new TextViewColumn('id_empresa', 'Id Empresa', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for no_empresa field
     //
     $column = new TextViewColumn('no_empresa', 'No Empresa', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
Esempio n. 17
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for Name field
     //
     $column = new TextViewColumn('Name', 'Name', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
Esempio n. 18
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for id_tarea_plan field
     //
     $column = new TextViewColumn('id_tarea_plan', 'Id Tarea Plan', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     
     //
     // View column for ds_referencia field
     //
     $column = new TextViewColumn('id_accion_ds_referencia', 'Acción', $this->dataset);
     $column->SetOrderable(true);
     $column = new ExtendedHyperLinkColumnDecorator($column, $this->dataset, 'accion.php?operation=view&pk0=%id_accion%' , '_self');
     $grid->AddExportColumn($column);
     
     //
     // View column for ds_referencia field
     //
     $column = new TextViewColumn('id_espacio_ds_referencia', 'Espacio', $this->dataset);
     $column->SetOrderable(true);
     $column = new ExtendedHyperLinkColumnDecorator($column, $this->dataset, 'espacio.php?operation=view&pk0=%id_espacio%' , '_self');
     $grid->AddExportColumn($column);
     
     //
     // View column for ds_observacion field
     //
     $column = new TextViewColumn('id_bien_ds_observacion', 'Bien', $this->dataset);
     $column->SetOrderable(true);
     $column = new ExtendedHyperLinkColumnDecorator($column, $this->dataset, 'bien.php?operation=view&pk0=%id_bien%' , '_self');
     $grid->AddExportColumn($column);
     
     //
     // View column for no_periodicidad field
     //
     $column = new TextViewColumn('id_periodicidad_no_periodicidad', 'Periodicidad', $this->dataset);
     $column->SetOrderable(true);
     $column = new ExtendedHyperLinkColumnDecorator($column, $this->dataset, 'periodicidad.php?operation=view&pk0=%id_periodicidad%' , '_self');
     $grid->AddExportColumn($column);
     
     //
     // View column for ds_detalle field
     //
     $column = new TextViewColumn('ds_detalle', 'Ds Detalle', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     
     //
     // View column for ds_referencia field
     //
     $column = new TextViewColumn('ds_referencia', 'Ds Referencia', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     
     //
     // View column for fe_inicio field
     //
     $column = new DateTimeViewColumn('fe_inicio', 'Fecha Início', $this->dataset);
     $column->SetDateTimeFormat('d/m/Y H:i:s');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
Esempio n. 19
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for id_actividad field
     //
     $column = new TextViewColumn('id_actividad', 'Id Actividad', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for no_actividad field
     //
     $column = new TextViewColumn('no_actividad', 'No Actividad', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for ds_referencia field
     //
     $column = new TextViewColumn('id_actividad_padre_ds_referencia', 'Actividad Padre', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for ds_referencia field
     //
     $column = new TextViewColumn('ds_referencia', 'Ds Referencia', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
Esempio n. 20
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for id_tipo_persona field
     //
     $column = new TextViewColumn('id_tipo_persona', 'Id Tipo Persona', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     
     //
     // View column for no_tipo_persona field
     //
     $column = new TextViewColumn('no_tipo_persona', 'No Tipo Persona', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for project_name field
     //
     $column = new TextViewColumn('project_name', 'Project Name', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for approved_budget field
     //
     $column = new TextViewColumn('approved_budget', 'Approved Budget', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for lead field
     //
     $column = new TextViewColumn('lead', 'Lead', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
Esempio n. 22
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for EVENTO_ID field
     //
     $column = new TextViewColumn('EVENTO_ID', 'EVENTO ID', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for NOMBRE field
     //
     $column = new TextViewColumn('NOMBRE', 'NOMBRE', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for FECHA_HORA field
     //
     $column = new DateTimeViewColumn('FECHA_HORA', 'FECHA HORA', $this->dataset);
     $column->SetDateTimeFormat('Y-m-d');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for LUGAR field
     //
     $column = new TextViewColumn('LUGAR', 'LUGAR', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for DESCRIPCION field
     //
     $column = new TextViewColumn('DESCRIPCION', 'DESCRIPCION', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for FEC_CREACION field
     //
     $column = new DateTimeViewColumn('FEC_CREACION', 'FEC CREACION', $this->dataset);
     $column->SetDateTimeFormat('Y-m-d');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for USUARIO_CREACION field
     //
     $column = new TextViewColumn('USUARIO_CREACION', 'USUARIO CREACION', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for FEC_ULTIMA_MOD field
     //
     $column = new DateTimeViewColumn('FEC_ULTIMA_MOD', 'FEC ULTIMA MOD', $this->dataset);
     $column->SetDateTimeFormat('Y-m-d');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for USUARIO_ULTIMA_MOD field
     //
     $column = new TextViewColumn('USUARIO_ULTIMA_MOD', 'USUARIO ULTIMA MOD', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for NOMBRE field
     //
     $column = new TextViewColumn('LA1', 'CIUDAD', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
Esempio n. 23
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for FEC_WINK field
     //
     $column = new DateTimeViewColumn('FEC_WINK', 'FEC WINK', $this->dataset);
     $column->SetDateTimeFormat('Y-m-d');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for ES_ADMIN field
     //
     $column = new TextViewColumn('LA1', 'USERNAME EMISOR', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for ES_ADMIN field
     //
     $column = new TextViewColumn('LA2', 'USERNAME RECEPTOR', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for FEC_CREACION field
     //
     $column = new DateTimeViewColumn('FEC_CREACION', 'FEC CREACION', $this->dataset);
     $column->SetDateTimeFormat('Y-m-d');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for USUARIO_CREACION field
     //
     $column = new TextViewColumn('USUARIO_CREACION', 'USUARIO CREACION', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for FEC_ULTIMA_MOD field
     //
     $column = new DateTimeViewColumn('FEC_ULTIMA_MOD', 'FEC ULTIMA MOD', $this->dataset);
     $column->SetDateTimeFormat('Y-m-d');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for USUARIO_ULTIMA_MOD field
     //
     $column = new TextViewColumn('USUARIO_ULTIMA_MOD', 'USUARIO ULTIMA MOD', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
Esempio n. 24
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for name field
     //
     $column = new TextViewColumn('name', 'Name', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for date field
     //
     $column = new DateTimeViewColumn('date', 'Timesheet Date', $this->dataset);
     $column->SetDateTimeFormat('Y-m-d');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for project_name field
     //
     $column = new TextViewColumn('project_name', 'Project Name', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for pay_period_number field
     //
     $column = new TextViewColumn('pay_period_number', 'Pay Period ', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for hours field
     //
     $column = new TextViewColumn('hours', 'Hours', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for position field
     //
     $column = new TextViewColumn('position', 'Position', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for emp_number field
     //
     $column = new TextViewColumn('emp_number', 'Emp Number', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
Esempio n. 25
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for id_accion field
     //
     $column = new TextViewColumn('id_accion', 'Id Accion', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     
     //
     // View column for ds_referencia field
     //
     $column = new TextViewColumn('id_tipo_accion_ds_referencia', 'Tipo Accion', $this->dataset);
     $column->SetOrderable(true);
     $column = new ExtendedHyperLinkColumnDecorator($column, $this->dataset, 'tipo_accion.php?operation=view&pk0=%id_tipo_accion%' , '_self');
     $grid->AddExportColumn($column);
     
     //
     // View column for ds_referencia field
     //
     $column = new TextViewColumn('id_tipo_espacio_ds_referencia', 'Tipo Espacio', $this->dataset);
     $column->SetOrderable(true);
     $column = new ExtendedHyperLinkColumnDecorator($column, $this->dataset, 'tipo_espacio.php?operation=view&pk0=%id_tipo_espacio%' , '_self');
     $grid->AddExportColumn($column);
     
     //
     // View column for no_sector field
     //
     $column = new TextViewColumn('id_sector_no_sector', 'Sector', $this->dataset);
     $column->SetOrderable(true);
     $column = new ExtendedHyperLinkColumnDecorator($column, $this->dataset, 'sector.php?operation=view&pk0=%id_sector%' , '_self');
     $grid->AddExportColumn($column);
     
     //
     // View column for no_origen field
     //
     $column = new TextViewColumn('id_origen_no_origen', 'Origen', $this->dataset);
     $column->SetOrderable(true);
     $column = new ExtendedHyperLinkColumnDecorator($column, $this->dataset, 'origen.php?operation=view&pk0=%id_origen%' , '_self');
     $grid->AddExportColumn($column);
     
     //
     // View column for no_metodologia field
     //
     $column = new TextViewColumn('id_metodologia_no_metodologia', 'Metodología', $this->dataset);
     $column->SetOrderable(true);
     $column = new ExtendedHyperLinkColumnDecorator($column, $this->dataset, 'metodologia.php?operation=view&pk0=%id_metodologia%' , '_self');
     $grid->AddExportColumn($column);
     
     //
     // View column for no_periodicidad field
     //
     $column = new TextViewColumn('id_periodicidad_no_periodicidad', 'Periodicidad', $this->dataset);
     $column->SetOrderable(true);
     $column = new ExtendedHyperLinkColumnDecorator($column, $this->dataset, 'periodicidad.php?operation=view&pk0=%id_periodicidad%' , '_self');
     $grid->AddExportColumn($column);
     
     //
     // View column for fl_a_demanda field
     //
     $column = new TextViewColumn('fl_a_demanda', 'A Demanda', $this->dataset);
     $column->SetOrderable(true);
     $column = new CheckBoxFormatValueViewColumnDecorator($column);
     $column->SetDisplayValues($this->RenderText('<img src="images/checked.png" alt="true">'), $this->RenderText(''));
     $grid->AddExportColumn($column);
     
     //
     // View column for nu_personas field
     //
     $column = new TextViewColumn('nu_personas', 'Personas', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     
     //
     // View column for tm_carga_horaria field
     //
     $column = new DateTimeViewColumn('tm_carga_horaria', 'Carga Horária', $this->dataset);
     $column->SetDateTimeFormat('H:i:s');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     
     //
     // View column for fe_horas field
     //
     $column = new TextViewColumn('fe_horas', 'Fe Horas', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     
     //
     // View column for ds_referencia field
     //
     $column = new TextViewColumn('ds_referencia', 'Ds Referencia', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for first_name field
     //
     $column = new TextViewColumn('first_name', 'First Name', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for middle_name field
     //
     $column = new TextViewColumn('middle_name', 'Middle Name', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for last_name field
     //
     $column = new TextViewColumn('last_name', 'Last Name', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for party_affiliation field
     //
     $column = new TextViewColumn('party_affiliation', 'Party Affiliation', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for address1 field
     //
     $column = new TextViewColumn('address1', 'Address1', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for address2 field
     //
     $column = new TextViewColumn('address2', 'Address2', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for city field
     //
     $column = new TextViewColumn('city', 'City', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for state field
     //
     $column = new TextViewColumn('state', 'State', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for zip field
     //
     $column = new TextViewColumn('zip', 'Zip', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for phone field
     //
     $column = new TextViewColumn('phone', 'Phone', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for fax field
     //
     $column = new TextViewColumn('fax', 'Fax', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for email_address field
     //
     $column = new TextViewColumn('email_address', 'Email Address', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for website field
     //
     $column = new TextViewColumn('website', 'Website', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for photo_link field
     //
     $column = new TextViewColumn('photo_link', 'Photo Link', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for notes field
     //
     $column = new TextViewColumn('notes', 'Notes', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
Esempio n. 27
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for USERNAME field
     //
     $column = new TextViewColumn('USERNAME', 'USERNAME', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for ES_ADMIN field
     //
     $column = new TextViewColumn('ES_ADMIN', 'ES ADMIN', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for NACIMIENTO field
     //
     $column = new DateTimeViewColumn('NACIMIENTO', 'NACIMIENTO', $this->dataset);
     $column->SetDateTimeFormat('Y-m-d');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for PRIMER_APELLIDO field
     //
     $column = new TextViewColumn('PRIMER_APELLIDO', 'PRIMER APELLIDO', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for SEGUNDO_APELLIDO field
     //
     $column = new TextViewColumn('SEGUNDO_APELLIDO', 'SEGUNDO APELLIDO', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for NOMBRE field
     //
     $column = new TextViewColumn('NOMBRE', 'NOMBRE', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for NOMBRE field
     //
     $column = new TextViewColumn('LA1', 'GENERO ID', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for NOMBRE field
     //
     $column = new TextViewColumn('LA2', 'CIUDAD ID', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for SLOGAN field
     //
     $column = new TextViewColumn('SLOGAN', 'SLOGAN', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for FEC_CREACION field
     //
     $column = new DateTimeViewColumn('FEC_CREACION', 'FEC CREACION', $this->dataset);
     $column->SetDateTimeFormat('Y-m-d');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for USUARIO_CREACION field
     //
     $column = new TextViewColumn('USUARIO_CREACION', 'USUARIO CREACION', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for FEC_ULTIMA_MOD field
     //
     $column = new DateTimeViewColumn('FEC_ULTIMA_MOD', 'FEC ULTIMA MOD', $this->dataset);
     $column->SetDateTimeFormat('Y-m-d');
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for USUARIO_ULTIMA_MOD field
     //
     $column = new TextViewColumn('USUARIO_ULTIMA_MOD', 'USUARIO ULTIMA MOD', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for EMAIL field
     //
     $column = new TextViewColumn('EMAIL', 'EMAIL', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for CLAVE field
     //
     $column = new TextViewColumn('CLAVE', 'CLAVE', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
Esempio n. 28
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for Cod_dpto field
     //
     $column = new TextViewColumn('Cod_dpto', 'Cod Dpto', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for Nombre field
     //
     $column = new TextViewColumn('Nombre', 'Nombre', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for assigned_to field
     //
     $column = new TextViewColumn('assigned_to', 'Assigned To', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for total_hrs field
     //
     $column = new TextViewColumn('total_hrs', 'Total Hrs', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for username field
     //
     $column = new TextViewColumn('username', 'Username', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }
Esempio n. 30
0
 protected function AddExportColumns(Grid $grid)
 {
     //
     // View column for cli-codcli field
     //
     $column = new TextViewColumn('cli-codcli', 'Cli-codcli', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
     //
     // View column for descrizione field
     //
     $column = new TextViewColumn('descrizione', 'Descrizione', $this->dataset);
     $column->SetOrderable(true);
     $grid->AddExportColumn($column);
 }