xml = new Glade.XML (null, "actualizar_autorizacion_manual.glade", "autorizaciones_pendientes", null);
xml.Autoconnect (this);
- /* Creo los modelos para los TreeView y el ComboBox
- Tipo Doc NroDoc Apellido Nombre */
- lista.Model = new ListStore (typeof(string), typeof(int), typeof (string), typeof (string));
+ lista.Model = new ListStore (typeof(int), typeof(string), typeof (string), typeof (string), typeof(string));
/* Columnas */
lista.HeadersVisible = true;
lista.AppendColumn ("Codigo", new CellRendererText (), "text", 0);
lista.AppendColumn ("Fecha Solicitud", new CellRendererText (), "text", 1);
lista.AppendColumn ("Prestacion", new CellRendererText (), "text", 2);
- lista.AppendColumn ("Afiliado", new CellRendererText (), "text", 2);
- lista.AppendColumn ("Prestador", new CellRendererText (), "text", 3);
+ lista.AppendColumn ("Afiliado", new CellRendererText (), "text", 3);
+ lista.AppendColumn ("Prestador", new CellRendererText (), "text", 4);
CargarAutorizaciones ();
}