diff --git a/AYA.SlnSynor/AYA.SlnSynor.WCF/Web.config b/AYA.SlnSynor/AYA.SlnSynor.WCF/Web.config index 3020903b7..feb2875fb 100644 --- a/AYA.SlnSynor/AYA.SlnSynor.WCF/Web.config +++ b/AYA.SlnSynor/AYA.SlnSynor.WCF/Web.config @@ -104,8 +104,8 @@ - - + + diff --git a/AYA.SlnSynor/AYA.SlnSynor/AYA.SlnSinort.csproj b/AYA.SlnSynor/AYA.SlnSynor/AYA.SlnSinort.csproj index 3b1bcd71c..120f1e804 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/AYA.SlnSinort.csproj +++ b/AYA.SlnSynor/AYA.SlnSynor/AYA.SlnSinort.csproj @@ -247,28 +247,11 @@ - - True - True - dtsAplicacion.xsd - - - True - True - dtsFichaTecnica.xsd - True True dtsFichaTecnicaFinal.xsd - - Reporte.aspx - ASPXCodeBehind - - - Reporte.aspx - True True @@ -6479,7 +6462,6 @@ - @@ -7234,28 +7216,6 @@ - - dtsAplicacion.xsd - - - Designer - MSDataSetGenerator - dtsAplicacion.Designer.cs - - - dtsAplicacion.xsd - - - dtsFichaTecnica.xsd - - - Designer - MSDataSetGenerator - dtsFichaTecnica.Designer.cs - - - dtsFichaTecnica.xsd - dtsFichaTecnicaFinal.xsd @@ -7608,7 +7568,6 @@ - 10.0 diff --git a/AYA.SlnSynor/AYA.SlnSynor/Controllers/ReportesController.cs b/AYA.SlnSynor/AYA.SlnSynor/Controllers/ReportesController.cs index e60a4c1a4..0ecc4f674 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Controllers/ReportesController.cs +++ b/AYA.SlnSynor/AYA.SlnSynor/Controllers/ReportesController.cs @@ -17,8 +17,8 @@ namespace AYA.SlnSinort.Controllers.Reportes { private DataSet tds = new DataSet(); - DataTable1TableAdapter aaa = new DataTable1TableAdapter(); - dtsFichaTecnicaFinal ar = new dtsFichaTecnicaFinal(); + DataTable1TableAdapter dtta = new DataTable1TableAdapter(); + dtsFichaTecnicaFinal dts = new dtsFichaTecnicaFinal(); ReportViewer reportViewer = new ReportViewer(); #region Controllers @@ -28,7 +28,7 @@ namespace AYA.SlnSinort.Controllers.Reportes { return View(); } - public ActionResult FichaTecnica(string emisor) + public ActionResult FichaTecnica(string emisor, string documentotecnico, string aplicacion, string contenido, string subcontenido, string grupotematico, string subgrupotematico, string versionvigente, string fechainicio, string fechafin) { InitControllers(); @@ -38,7 +38,7 @@ namespace AYA.SlnSinort.Controllers.Reportes } else { - CargarReporteParemetros(emisor); + CargarReporteParemetros(emisor, documentotecnico, aplicacion, contenido, subcontenido, grupotematico, subgrupotematico, versionvigente, fechainicio, fechafin); } ViewBag.ReportViewer = reportViewer; @@ -58,7 +58,7 @@ namespace AYA.SlnSinort.Controllers.Reportes #region Configuracion y Parametrizacion - public void CargarReporteParemetros(string emisor) + public void CargarReporteParemetros(string emisor,string documentotecnico,string aplicacion,string contenido,string subcontenido,string grupotematico,string subgrupotematico,string versionvigente,string fechainicio,string fechafin) { reportViewer.ProcessingMode = ProcessingMode.Local; @@ -66,11 +66,15 @@ namespace AYA.SlnSinort.Controllers.Reportes reportViewer.Width = Unit.Percentage(100); reportViewer.Height = Unit.Percentage(100); - aaa.Fill(ar.DataTable1, emisor); + + DateTime fechai = fechainicio == "" ? Convert.ToDateTime("1900-01-01") : Convert.ToDateTime(fechainicio); + DateTime fechaf = fechafin == "" ? DateTime.Today : Convert.ToDateTime(fechafin); + + dtta.Fill(dts.DataTable1, emisor, documentotecnico, aplicacion, contenido, subcontenido, grupotematico, subgrupotematico, versionvigente, fechai, fechaf); reportViewer.LocalReport.ReportPath = Request.MapPath(Request.ApplicationPath) + @"\Reportes\rdlc\repFichaTecnica.rdlc"; reportViewer.LocalReport.DataSources.Clear(); - reportViewer.LocalReport.DataSources.Add(new ReportDataSource("dtsFichaTecnicaFinal", ar.Tables["Datatable1"])); + reportViewer.LocalReport.DataSources.Add(new ReportDataSource("dtsFichaTecnicaFinal", dts.Tables["Datatable1"])); reportViewer.LocalReport.Refresh(); @@ -85,104 +89,21 @@ namespace AYA.SlnSinort.Controllers.Reportes reportViewer.SizeToReportContent = true; reportViewer.Width = Unit.Percentage(100); reportViewer.Height = Unit.Percentage(100); - - - aaa.Fill(ar.DataTable1,""); + DateTime fechainicio = Convert.ToDateTime("1900-01-01"); + DateTime fechafin = DateTime.Today; + + dtta.Fill(dts.DataTable1, "", "", "", "", "", "", "", "", fechainicio, fechafin); reportViewer.LocalReport.ReportPath = Request.MapPath(Request.ApplicationPath) + @"\Reportes\rdlc\repFichaTecnica.rdlc"; reportViewer.LocalReport.DataSources.Clear(); - reportViewer.LocalReport.DataSources.Add(new ReportDataSource("dtsFichaTecnicaFinal", ar.Tables["Datatable1"])); + reportViewer.LocalReport.DataSources.Add(new ReportDataSource("dtsFichaTecnicaFinal", dts.Tables["Datatable1"])); reportViewer.LocalReport.Refresh(); } - private void FillDataSet(string Reporte,string emisor) - { - string connectionString = GetConnectionString(); - - using (SqlConnection sqlConnection = new SqlConnection(connectionString)) - { - string queryString = GetQueryString(Reporte,emisor); - - SqlDataAdapter sqlDataAapter = new SqlDataAdapter(queryString, sqlConnection); - - sqlDataAapter.Fill(tds, "Datos"); - - } - } - - private string GetConnectionString() - { - return "data source=192.168.1.37;initial catalog=SinortAyA;user id=sinort;password=sinort2018"; - } - - private string GetQueryString(string Reporte,string emisor) - { - - string Respuesta = ""; - - switch (Reporte) - { - - case "Aplicacion": - Respuesta = "SELECT " - + " [IdAplicacion] ,[Descripcion] FROM " - + " [Catalogos].[Aplicacion]"; - break; - - case "FichaTecnica": - Respuesta = "SELECT " - + "[IdFichaTecnica],[Nombre],[Identificacion],[DescripcionDocumentoTecnico], " - + "[DescripcionAplicacion],[DescripcionContenido],[DescripcionGrupoTematico], " - + "[DescripcionEmisor],[NumeroPublicacionVersion] FROM [Global].[FichaTecnica] f, " - + "[Expediente].[DocumentosAdjuntos] d WHERE f.[IdDocumento] = d.[IdDocumentoAdjunto] and " - + "('" + emisor + "' is null or [DescripcionEmisor] = '" + emisor + "')"; - break; - - } - - return Respuesta; - - - } - - private ReportParameter[] GetParametersLocal(string Reporte) - { - - ReportParameter[] Respuesta = new ReportParameter[] { }; - ReportParameter p1 = new ReportParameter(); - ReportParameter p2 = new ReportParameter(); - - switch (Reporte) - { - - case "Aplicacion": - - p1 = new ReportParameter("prmTitulo1", "SINORT"); - p2 = new ReportParameter("prmTitulo2", "ATESA"); - - Respuesta = new ReportParameter[] { p1, p2 }; - break; - - case "FichaTecnica": - - string[] test = new string[3]; - test[0] = "PR"; - test[1] = "SINORT"; - - p1 = new ReportParameter("Aplicacion", test); - - Respuesta = new ReportParameter[] { p1}; - break; - } - - - return Respuesta; - - } - + #endregion diff --git a/AYA.SlnSynor/AYA.SlnSynor/Reportes/Reporte.aspx b/AYA.SlnSynor/AYA.SlnSynor/Reportes/Reporte.aspx deleted file mode 100644 index 55c406bbb..000000000 --- a/AYA.SlnSynor/AYA.SlnSynor/Reportes/Reporte.aspx +++ /dev/null @@ -1,25 +0,0 @@ -<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Reporte.aspx.cs" Inherits="AYA.SlnSinort.Reportes.Reporte" %> - -<%@ Register assembly="Microsoft.ReportViewer.WebForms" namespace="Microsoft.Reporting.WebForms" tagprefix="rsweb" %> - - - - - - - - -
-
- -
- - - - - - - - - - diff --git a/AYA.SlnSynor/AYA.SlnSynor/Reportes/Reporte.aspx.cs b/AYA.SlnSynor/AYA.SlnSynor/Reportes/Reporte.aspx.cs deleted file mode 100644 index ce02513f5..000000000 --- a/AYA.SlnSynor/AYA.SlnSynor/Reportes/Reporte.aspx.cs +++ /dev/null @@ -1,49 +0,0 @@ -using AYA.SlnSinort.Reportes.datasets; -using AYA.SlnSinort.Reportes.datasets.dtsFichaTecnicaFinalTableAdapters; -using System; -using System.Collections.Generic; -using System.Data; -using System.Linq; -using System.Web; -using System.Web.UI; -using System.Web.UI.WebControls; -using Microsoft.Reporting.WebForms; - - - - - -namespace AYA.SlnSinort.Reportes -{ - public partial class Reporte : System.Web.UI.Page - { - - DataTable1TableAdapter dtta = new DataTable1TableAdapter(); - dtsFichaTecnicaFinal dts = new dtsFichaTecnicaFinal(); - - protected void Page_Load(object sender, EventArgs e) - { - - if (!IsPostBack) - { - dtta.Fill(dts.DataTable1, ""); - - ReportViewer1.LocalReport.ReportPath = Request.MapPath(Request.ApplicationPath) + @"\Reportes\rdlc\repFichaTecnicaFinal.rdlc"; - ReportViewer1.LocalReport.DataSources.Clear(); - ReportViewer1.LocalReport.DataSources.Add(new ReportDataSource("dtsFichaTecnicaFinal",dts.Tables["Datatable1"])); - - } - - } - protected void Button1_Click(object sender, EventArgs e) - { - - dtta.Fill(dts.DataTable1, TextBox1.Text); - - ReportViewer1.LocalReport.ReportPath = Request.MapPath(Request.ApplicationPath) + @"\Reportes\rdlc\repFichaTecnicaFinal.rdlc"; - ReportViewer1.LocalReport.DataSources.Clear(); - ReportViewer1.LocalReport.DataSources.Add(new ReportDataSource("dtsFichaTecnicaFinal", dts.Tables["Datatable1"])); - - } - } -} \ No newline at end of file diff --git a/AYA.SlnSynor/AYA.SlnSynor/Reportes/Reporte.aspx.designer.cs b/AYA.SlnSynor/AYA.SlnSynor/Reportes/Reporte.aspx.designer.cs deleted file mode 100644 index e1cec4753..000000000 --- a/AYA.SlnSynor/AYA.SlnSynor/Reportes/Reporte.aspx.designer.cs +++ /dev/null @@ -1,60 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace AYA.SlnSinort.Reportes { - - - public partial class Reporte { - - /// - /// form1 control. - /// - /// - /// Auto-generated field. - /// To modify move field declaration from designer file to code-behind file. - /// - protected global::System.Web.UI.HtmlControls.HtmlForm form1; - - /// - /// ScriptManager1 control. - /// - /// - /// Auto-generated field. - /// To modify move field declaration from designer file to code-behind file. - /// - protected global::System.Web.UI.ScriptManager ScriptManager1; - - /// - /// TextBox1 control. - /// - /// - /// Auto-generated field. - /// To modify move field declaration from designer file to code-behind file. - /// - protected global::System.Web.UI.WebControls.TextBox TextBox1; - - /// - /// Button1 control. - /// - /// - /// Auto-generated field. - /// To modify move field declaration from designer file to code-behind file. - /// - protected global::System.Web.UI.WebControls.Button Button1; - - /// - /// ReportViewer1 control. - /// - /// - /// Auto-generated field. - /// To modify move field declaration from designer file to code-behind file. - /// - protected global::Microsoft.Reporting.WebForms.ReportViewer ReportViewer1; - } -} diff --git a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsAplicacion.Designer.cs b/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsAplicacion.Designer.cs deleted file mode 100644 index 82e36bb9c..000000000 --- a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsAplicacion.Designer.cs +++ /dev/null @@ -1,643 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -#pragma warning disable 1591 - -namespace AYA.SlnSinort.Reportes.datasets { - - - /// - ///Represents a strongly typed in-memory cache of data. - /// - [global::System.Serializable()] - [global::System.ComponentModel.DesignerCategoryAttribute("code")] - [global::System.ComponentModel.ToolboxItem(true)] - [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedDataSetSchema")] - [global::System.Xml.Serialization.XmlRootAttribute("dtsAplicacion")] - [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.DataSet")] - public partial class dtsAplicacion : global::System.Data.DataSet { - - private tbAplicacionDataTable tabletbAplicacion; - - private global::System.Data.SchemaSerializationMode _schemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema; - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public dtsAplicacion() { - this.BeginInit(); - this.InitClass(); - global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged); - base.Tables.CollectionChanged += schemaChangedHandler; - base.Relations.CollectionChanged += schemaChangedHandler; - this.EndInit(); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected dtsAplicacion(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : - base(info, context, false) { - if ((this.IsBinarySerialized(info, context) == true)) { - this.InitVars(false); - global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler1 = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged); - this.Tables.CollectionChanged += schemaChangedHandler1; - this.Relations.CollectionChanged += schemaChangedHandler1; - return; - } - string strSchema = ((string)(info.GetValue("XmlSchema", typeof(string)))); - if ((this.DetermineSchemaSerializationMode(info, context) == global::System.Data.SchemaSerializationMode.IncludeSchema)) { - global::System.Data.DataSet ds = new global::System.Data.DataSet(); - ds.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema))); - if ((ds.Tables["tbAplicacion"] != null)) { - base.Tables.Add(new tbAplicacionDataTable(ds.Tables["tbAplicacion"])); - } - this.DataSetName = ds.DataSetName; - this.Prefix = ds.Prefix; - this.Namespace = ds.Namespace; - this.Locale = ds.Locale; - this.CaseSensitive = ds.CaseSensitive; - this.EnforceConstraints = ds.EnforceConstraints; - this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add); - this.InitVars(); - } - else { - this.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema))); - } - this.GetSerializationData(info, context); - global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged); - base.Tables.CollectionChanged += schemaChangedHandler; - this.Relations.CollectionChanged += schemaChangedHandler; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - [global::System.ComponentModel.Browsable(false)] - [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)] - public tbAplicacionDataTable tbAplicacion { - get { - return this.tabletbAplicacion; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - [global::System.ComponentModel.BrowsableAttribute(true)] - [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Visible)] - public override global::System.Data.SchemaSerializationMode SchemaSerializationMode { - get { - return this._schemaSerializationMode; - } - set { - this._schemaSerializationMode = value; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)] - public new global::System.Data.DataTableCollection Tables { - get { - return base.Tables; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)] - public new global::System.Data.DataRelationCollection Relations { - get { - return base.Relations; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override void InitializeDerivedDataSet() { - this.BeginInit(); - this.InitClass(); - this.EndInit(); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public override global::System.Data.DataSet Clone() { - dtsAplicacion cln = ((dtsAplicacion)(base.Clone())); - cln.InitVars(); - cln.SchemaSerializationMode = this.SchemaSerializationMode; - return cln; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override bool ShouldSerializeTables() { - return false; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override bool ShouldSerializeRelations() { - return false; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override void ReadXmlSerializable(global::System.Xml.XmlReader reader) { - if ((this.DetermineSchemaSerializationMode(reader) == global::System.Data.SchemaSerializationMode.IncludeSchema)) { - this.Reset(); - global::System.Data.DataSet ds = new global::System.Data.DataSet(); - ds.ReadXml(reader); - if ((ds.Tables["tbAplicacion"] != null)) { - base.Tables.Add(new tbAplicacionDataTable(ds.Tables["tbAplicacion"])); - } - this.DataSetName = ds.DataSetName; - this.Prefix = ds.Prefix; - this.Namespace = ds.Namespace; - this.Locale = ds.Locale; - this.CaseSensitive = ds.CaseSensitive; - this.EnforceConstraints = ds.EnforceConstraints; - this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add); - this.InitVars(); - } - else { - this.ReadXml(reader); - this.InitVars(); - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override global::System.Xml.Schema.XmlSchema GetSchemaSerializable() { - global::System.IO.MemoryStream stream = new global::System.IO.MemoryStream(); - this.WriteXmlSchema(new global::System.Xml.XmlTextWriter(stream, null)); - stream.Position = 0; - return global::System.Xml.Schema.XmlSchema.Read(new global::System.Xml.XmlTextReader(stream), null); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - internal void InitVars() { - this.InitVars(true); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - internal void InitVars(bool initTable) { - this.tabletbAplicacion = ((tbAplicacionDataTable)(base.Tables["tbAplicacion"])); - if ((initTable == true)) { - if ((this.tabletbAplicacion != null)) { - this.tabletbAplicacion.InitVars(); - } - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - private void InitClass() { - this.DataSetName = "dtsAplicacion"; - this.Prefix = ""; - this.Namespace = "http://tempuri.org/dtsAplicacion.xsd"; - this.EnforceConstraints = true; - this.SchemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema; - this.tabletbAplicacion = new tbAplicacionDataTable(); - base.Tables.Add(this.tabletbAplicacion); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - private bool ShouldSerializetbAplicacion() { - return false; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - private void SchemaChanged(object sender, global::System.ComponentModel.CollectionChangeEventArgs e) { - if ((e.Action == global::System.ComponentModel.CollectionChangeAction.Remove)) { - this.InitVars(); - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs) { - dtsAplicacion ds = new dtsAplicacion(); - global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType(); - global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence(); - global::System.Xml.Schema.XmlSchemaAny any = new global::System.Xml.Schema.XmlSchemaAny(); - any.Namespace = ds.Namespace; - sequence.Items.Add(any); - type.Particle = sequence; - global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable(); - if (xs.Contains(dsSchema.TargetNamespace)) { - global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream(); - global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream(); - try { - global::System.Xml.Schema.XmlSchema schema = null; - dsSchema.Write(s1); - for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) { - schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current)); - s2.SetLength(0); - schema.Write(s2); - if ((s1.Length == s2.Length)) { - s1.Position = 0; - s2.Position = 0; - for (; ((s1.Position != s1.Length) - && (s1.ReadByte() == s2.ReadByte())); ) { - ; - } - if ((s1.Position == s1.Length)) { - return type; - } - } - } - } - finally { - if ((s1 != null)) { - s1.Close(); - } - if ((s2 != null)) { - s2.Close(); - } - } - } - xs.Add(dsSchema); - return type; - } - - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public delegate void tbAplicacionRowChangeEventHandler(object sender, tbAplicacionRowChangeEvent e); - - /// - ///Represents the strongly named DataTable class. - /// - [global::System.Serializable()] - [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")] - public partial class tbAplicacionDataTable : global::System.Data.TypedTableBase { - - private global::System.Data.DataColumn columnIdAplicacion; - - private global::System.Data.DataColumn columnDescripcion; - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public tbAplicacionDataTable() { - this.TableName = "tbAplicacion"; - this.BeginInit(); - this.InitClass(); - this.EndInit(); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - internal tbAplicacionDataTable(global::System.Data.DataTable table) { - this.TableName = table.TableName; - if ((table.CaseSensitive != table.DataSet.CaseSensitive)) { - this.CaseSensitive = table.CaseSensitive; - } - if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) { - this.Locale = table.Locale; - } - if ((table.Namespace != table.DataSet.Namespace)) { - this.Namespace = table.Namespace; - } - this.Prefix = table.Prefix; - this.MinimumCapacity = table.MinimumCapacity; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected tbAplicacionDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : - base(info, context) { - this.InitVars(); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public global::System.Data.DataColumn IdAplicacionColumn { - get { - return this.columnIdAplicacion; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public global::System.Data.DataColumn DescripcionColumn { - get { - return this.columnDescripcion; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - [global::System.ComponentModel.Browsable(false)] - public int Count { - get { - return this.Rows.Count; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public tbAplicacionRow this[int index] { - get { - return ((tbAplicacionRow)(this.Rows[index])); - } - } - - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public event tbAplicacionRowChangeEventHandler tbAplicacionRowChanging; - - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public event tbAplicacionRowChangeEventHandler tbAplicacionRowChanged; - - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public event tbAplicacionRowChangeEventHandler tbAplicacionRowDeleting; - - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public event tbAplicacionRowChangeEventHandler tbAplicacionRowDeleted; - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public void AddtbAplicacionRow(tbAplicacionRow row) { - this.Rows.Add(row); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public tbAplicacionRow AddtbAplicacionRow(string IdAplicacion, string Descripcion) { - tbAplicacionRow rowtbAplicacionRow = ((tbAplicacionRow)(this.NewRow())); - object[] columnValuesArray = new object[] { - IdAplicacion, - Descripcion}; - rowtbAplicacionRow.ItemArray = columnValuesArray; - this.Rows.Add(rowtbAplicacionRow); - return rowtbAplicacionRow; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public override global::System.Data.DataTable Clone() { - tbAplicacionDataTable cln = ((tbAplicacionDataTable)(base.Clone())); - cln.InitVars(); - return cln; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override global::System.Data.DataTable CreateInstance() { - return new tbAplicacionDataTable(); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - internal void InitVars() { - this.columnIdAplicacion = base.Columns["IdAplicacion"]; - this.columnDescripcion = base.Columns["Descripcion"]; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - private void InitClass() { - this.columnIdAplicacion = new global::System.Data.DataColumn("IdAplicacion", typeof(string), null, global::System.Data.MappingType.Element); - base.Columns.Add(this.columnIdAplicacion); - this.columnDescripcion = new global::System.Data.DataColumn("Descripcion", typeof(string), null, global::System.Data.MappingType.Element); - base.Columns.Add(this.columnDescripcion); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public tbAplicacionRow NewtbAplicacionRow() { - return ((tbAplicacionRow)(this.NewRow())); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) { - return new tbAplicacionRow(builder); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override global::System.Type GetRowType() { - return typeof(tbAplicacionRow); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) { - base.OnRowChanged(e); - if ((this.tbAplicacionRowChanged != null)) { - this.tbAplicacionRowChanged(this, new tbAplicacionRowChangeEvent(((tbAplicacionRow)(e.Row)), e.Action)); - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) { - base.OnRowChanging(e); - if ((this.tbAplicacionRowChanging != null)) { - this.tbAplicacionRowChanging(this, new tbAplicacionRowChangeEvent(((tbAplicacionRow)(e.Row)), e.Action)); - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) { - base.OnRowDeleted(e); - if ((this.tbAplicacionRowDeleted != null)) { - this.tbAplicacionRowDeleted(this, new tbAplicacionRowChangeEvent(((tbAplicacionRow)(e.Row)), e.Action)); - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) { - base.OnRowDeleting(e); - if ((this.tbAplicacionRowDeleting != null)) { - this.tbAplicacionRowDeleting(this, new tbAplicacionRowChangeEvent(((tbAplicacionRow)(e.Row)), e.Action)); - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public void RemovetbAplicacionRow(tbAplicacionRow row) { - this.Rows.Remove(row); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) { - global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType(); - global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence(); - dtsAplicacion ds = new dtsAplicacion(); - global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny(); - any1.Namespace = "http://www.w3.org/2001/XMLSchema"; - any1.MinOccurs = new decimal(0); - any1.MaxOccurs = decimal.MaxValue; - any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax; - sequence.Items.Add(any1); - global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny(); - any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1"; - any2.MinOccurs = new decimal(1); - any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax; - sequence.Items.Add(any2); - global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute(); - attribute1.Name = "namespace"; - attribute1.FixedValue = ds.Namespace; - type.Attributes.Add(attribute1); - global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute(); - attribute2.Name = "tableTypeName"; - attribute2.FixedValue = "tbAplicacionDataTable"; - type.Attributes.Add(attribute2); - type.Particle = sequence; - global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable(); - if (xs.Contains(dsSchema.TargetNamespace)) { - global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream(); - global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream(); - try { - global::System.Xml.Schema.XmlSchema schema = null; - dsSchema.Write(s1); - for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) { - schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current)); - s2.SetLength(0); - schema.Write(s2); - if ((s1.Length == s2.Length)) { - s1.Position = 0; - s2.Position = 0; - for (; ((s1.Position != s1.Length) - && (s1.ReadByte() == s2.ReadByte())); ) { - ; - } - if ((s1.Position == s1.Length)) { - return type; - } - } - } - } - finally { - if ((s1 != null)) { - s1.Close(); - } - if ((s2 != null)) { - s2.Close(); - } - } - } - xs.Add(dsSchema); - return type; - } - } - - /// - ///Represents strongly named DataRow class. - /// - public partial class tbAplicacionRow : global::System.Data.DataRow { - - private tbAplicacionDataTable tabletbAplicacion; - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - internal tbAplicacionRow(global::System.Data.DataRowBuilder rb) : - base(rb) { - this.tabletbAplicacion = ((tbAplicacionDataTable)(this.Table)); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public string IdAplicacion { - get { - try { - return ((string)(this[this.tabletbAplicacion.IdAplicacionColumn])); - } - catch (global::System.InvalidCastException e) { - throw new global::System.Data.StrongTypingException("The value for column \'IdAplicacion\' in table \'tbAplicacion\' is DBNull.", e); - } - } - set { - this[this.tabletbAplicacion.IdAplicacionColumn] = value; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public string Descripcion { - get { - try { - return ((string)(this[this.tabletbAplicacion.DescripcionColumn])); - } - catch (global::System.InvalidCastException e) { - throw new global::System.Data.StrongTypingException("The value for column \'Descripcion\' in table \'tbAplicacion\' is DBNull.", e); - } - } - set { - this[this.tabletbAplicacion.DescripcionColumn] = value; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public bool IsIdAplicacionNull() { - return this.IsNull(this.tabletbAplicacion.IdAplicacionColumn); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public void SetIdAplicacionNull() { - this[this.tabletbAplicacion.IdAplicacionColumn] = global::System.Convert.DBNull; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public bool IsDescripcionNull() { - return this.IsNull(this.tabletbAplicacion.DescripcionColumn); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public void SetDescripcionNull() { - this[this.tabletbAplicacion.DescripcionColumn] = global::System.Convert.DBNull; - } - } - - /// - ///Row event argument class - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public class tbAplicacionRowChangeEvent : global::System.EventArgs { - - private tbAplicacionRow eventRow; - - private global::System.Data.DataRowAction eventAction; - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public tbAplicacionRowChangeEvent(tbAplicacionRow row, global::System.Data.DataRowAction action) { - this.eventRow = row; - this.eventAction = action; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public tbAplicacionRow Row { - get { - return this.eventRow; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public global::System.Data.DataRowAction Action { - get { - return this.eventAction; - } - } - } - } -} - -#pragma warning restore 1591 \ No newline at end of file diff --git a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsAplicacion.xsc b/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsAplicacion.xsc deleted file mode 100644 index 551fc56fb..000000000 --- a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsAplicacion.xsc +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsAplicacion.xsd b/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsAplicacion.xsd deleted file mode 100644 index d12c2d855..000000000 --- a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsAplicacion.xsd +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsAplicacion.xss b/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsAplicacion.xss deleted file mode 100644 index d422b2444..000000000 --- a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsAplicacion.xss +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnica.Designer.cs b/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnica.Designer.cs deleted file mode 100644 index aa7957b46..000000000 --- a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnica.Designer.cs +++ /dev/null @@ -1,941 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -#pragma warning disable 1591 - -namespace AYA.SlnSinort.Reportes.datasets { - - - /// - ///Represents a strongly typed in-memory cache of data. - /// - [global::System.Serializable()] - [global::System.ComponentModel.DesignerCategoryAttribute("code")] - [global::System.ComponentModel.ToolboxItem(true)] - [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedDataSetSchema")] - [global::System.Xml.Serialization.XmlRootAttribute("dtsFichaTecnica")] - [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.DataSet")] - public partial class dtsFichaTecnica : global::System.Data.DataSet { - - private tbFichaTecnicaDataTable tabletbFichaTecnica; - - private global::System.Data.SchemaSerializationMode _schemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema; - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public dtsFichaTecnica() { - this.BeginInit(); - this.InitClass(); - global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged); - base.Tables.CollectionChanged += schemaChangedHandler; - base.Relations.CollectionChanged += schemaChangedHandler; - this.EndInit(); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected dtsFichaTecnica(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : - base(info, context, false) { - if ((this.IsBinarySerialized(info, context) == true)) { - this.InitVars(false); - global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler1 = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged); - this.Tables.CollectionChanged += schemaChangedHandler1; - this.Relations.CollectionChanged += schemaChangedHandler1; - return; - } - string strSchema = ((string)(info.GetValue("XmlSchema", typeof(string)))); - if ((this.DetermineSchemaSerializationMode(info, context) == global::System.Data.SchemaSerializationMode.IncludeSchema)) { - global::System.Data.DataSet ds = new global::System.Data.DataSet(); - ds.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema))); - if ((ds.Tables["tbFichaTecnica"] != null)) { - base.Tables.Add(new tbFichaTecnicaDataTable(ds.Tables["tbFichaTecnica"])); - } - this.DataSetName = ds.DataSetName; - this.Prefix = ds.Prefix; - this.Namespace = ds.Namespace; - this.Locale = ds.Locale; - this.CaseSensitive = ds.CaseSensitive; - this.EnforceConstraints = ds.EnforceConstraints; - this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add); - this.InitVars(); - } - else { - this.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema))); - } - this.GetSerializationData(info, context); - global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged); - base.Tables.CollectionChanged += schemaChangedHandler; - this.Relations.CollectionChanged += schemaChangedHandler; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - [global::System.ComponentModel.Browsable(false)] - [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)] - public tbFichaTecnicaDataTable tbFichaTecnica { - get { - return this.tabletbFichaTecnica; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - [global::System.ComponentModel.BrowsableAttribute(true)] - [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Visible)] - public override global::System.Data.SchemaSerializationMode SchemaSerializationMode { - get { - return this._schemaSerializationMode; - } - set { - this._schemaSerializationMode = value; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)] - public new global::System.Data.DataTableCollection Tables { - get { - return base.Tables; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)] - public new global::System.Data.DataRelationCollection Relations { - get { - return base.Relations; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override void InitializeDerivedDataSet() { - this.BeginInit(); - this.InitClass(); - this.EndInit(); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public override global::System.Data.DataSet Clone() { - dtsFichaTecnica cln = ((dtsFichaTecnica)(base.Clone())); - cln.InitVars(); - cln.SchemaSerializationMode = this.SchemaSerializationMode; - return cln; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override bool ShouldSerializeTables() { - return false; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override bool ShouldSerializeRelations() { - return false; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override void ReadXmlSerializable(global::System.Xml.XmlReader reader) { - if ((this.DetermineSchemaSerializationMode(reader) == global::System.Data.SchemaSerializationMode.IncludeSchema)) { - this.Reset(); - global::System.Data.DataSet ds = new global::System.Data.DataSet(); - ds.ReadXml(reader); - if ((ds.Tables["tbFichaTecnica"] != null)) { - base.Tables.Add(new tbFichaTecnicaDataTable(ds.Tables["tbFichaTecnica"])); - } - this.DataSetName = ds.DataSetName; - this.Prefix = ds.Prefix; - this.Namespace = ds.Namespace; - this.Locale = ds.Locale; - this.CaseSensitive = ds.CaseSensitive; - this.EnforceConstraints = ds.EnforceConstraints; - this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add); - this.InitVars(); - } - else { - this.ReadXml(reader); - this.InitVars(); - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override global::System.Xml.Schema.XmlSchema GetSchemaSerializable() { - global::System.IO.MemoryStream stream = new global::System.IO.MemoryStream(); - this.WriteXmlSchema(new global::System.Xml.XmlTextWriter(stream, null)); - stream.Position = 0; - return global::System.Xml.Schema.XmlSchema.Read(new global::System.Xml.XmlTextReader(stream), null); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - internal void InitVars() { - this.InitVars(true); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - internal void InitVars(bool initTable) { - this.tabletbFichaTecnica = ((tbFichaTecnicaDataTable)(base.Tables["tbFichaTecnica"])); - if ((initTable == true)) { - if ((this.tabletbFichaTecnica != null)) { - this.tabletbFichaTecnica.InitVars(); - } - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - private void InitClass() { - this.DataSetName = "dtsFichaTecnica"; - this.Prefix = ""; - this.Namespace = "http://tempuri.org/dtsFichaTecnica.xsd"; - this.EnforceConstraints = true; - this.SchemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema; - this.tabletbFichaTecnica = new tbFichaTecnicaDataTable(); - base.Tables.Add(this.tabletbFichaTecnica); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - private bool ShouldSerializetbFichaTecnica() { - return false; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - private void SchemaChanged(object sender, global::System.ComponentModel.CollectionChangeEventArgs e) { - if ((e.Action == global::System.ComponentModel.CollectionChangeAction.Remove)) { - this.InitVars(); - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs) { - dtsFichaTecnica ds = new dtsFichaTecnica(); - global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType(); - global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence(); - global::System.Xml.Schema.XmlSchemaAny any = new global::System.Xml.Schema.XmlSchemaAny(); - any.Namespace = ds.Namespace; - sequence.Items.Add(any); - type.Particle = sequence; - global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable(); - if (xs.Contains(dsSchema.TargetNamespace)) { - global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream(); - global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream(); - try { - global::System.Xml.Schema.XmlSchema schema = null; - dsSchema.Write(s1); - for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) { - schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current)); - s2.SetLength(0); - schema.Write(s2); - if ((s1.Length == s2.Length)) { - s1.Position = 0; - s2.Position = 0; - for (; ((s1.Position != s1.Length) - && (s1.ReadByte() == s2.ReadByte())); ) { - ; - } - if ((s1.Position == s1.Length)) { - return type; - } - } - } - } - finally { - if ((s1 != null)) { - s1.Close(); - } - if ((s2 != null)) { - s2.Close(); - } - } - } - xs.Add(dsSchema); - return type; - } - - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public delegate void tbFichaTecnicaRowChangeEventHandler(object sender, tbFichaTecnicaRowChangeEvent e); - - /// - ///Represents the strongly named DataTable class. - /// - [global::System.Serializable()] - [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")] - public partial class tbFichaTecnicaDataTable : global::System.Data.TypedTableBase { - - private global::System.Data.DataColumn columnIdFichaTecnica; - - private global::System.Data.DataColumn columnNombre; - - private global::System.Data.DataColumn columnIdentificacion; - - private global::System.Data.DataColumn columnDescripcionDocumentoTecnico; - - private global::System.Data.DataColumn columnDescripcionAplicacion; - - private global::System.Data.DataColumn columnDescripcionContenido; - - private global::System.Data.DataColumn columnDescripcionGrupoTematico; - - private global::System.Data.DataColumn columnDescripcionEmisor; - - private global::System.Data.DataColumn columnNumeroPublicacionVersion; - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public tbFichaTecnicaDataTable() { - this.TableName = "tbFichaTecnica"; - this.BeginInit(); - this.InitClass(); - this.EndInit(); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - internal tbFichaTecnicaDataTable(global::System.Data.DataTable table) { - this.TableName = table.TableName; - if ((table.CaseSensitive != table.DataSet.CaseSensitive)) { - this.CaseSensitive = table.CaseSensitive; - } - if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) { - this.Locale = table.Locale; - } - if ((table.Namespace != table.DataSet.Namespace)) { - this.Namespace = table.Namespace; - } - this.Prefix = table.Prefix; - this.MinimumCapacity = table.MinimumCapacity; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected tbFichaTecnicaDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : - base(info, context) { - this.InitVars(); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public global::System.Data.DataColumn IdFichaTecnicaColumn { - get { - return this.columnIdFichaTecnica; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public global::System.Data.DataColumn NombreColumn { - get { - return this.columnNombre; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public global::System.Data.DataColumn IdentificacionColumn { - get { - return this.columnIdentificacion; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public global::System.Data.DataColumn DescripcionDocumentoTecnicoColumn { - get { - return this.columnDescripcionDocumentoTecnico; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public global::System.Data.DataColumn DescripcionAplicacionColumn { - get { - return this.columnDescripcionAplicacion; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public global::System.Data.DataColumn DescripcionContenidoColumn { - get { - return this.columnDescripcionContenido; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public global::System.Data.DataColumn DescripcionGrupoTematicoColumn { - get { - return this.columnDescripcionGrupoTematico; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public global::System.Data.DataColumn DescripcionEmisorColumn { - get { - return this.columnDescripcionEmisor; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public global::System.Data.DataColumn NumeroPublicacionVersionColumn { - get { - return this.columnNumeroPublicacionVersion; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - [global::System.ComponentModel.Browsable(false)] - public int Count { - get { - return this.Rows.Count; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public tbFichaTecnicaRow this[int index] { - get { - return ((tbFichaTecnicaRow)(this.Rows[index])); - } - } - - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public event tbFichaTecnicaRowChangeEventHandler tbFichaTecnicaRowChanging; - - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public event tbFichaTecnicaRowChangeEventHandler tbFichaTecnicaRowChanged; - - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public event tbFichaTecnicaRowChangeEventHandler tbFichaTecnicaRowDeleting; - - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public event tbFichaTecnicaRowChangeEventHandler tbFichaTecnicaRowDeleted; - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public void AddtbFichaTecnicaRow(tbFichaTecnicaRow row) { - this.Rows.Add(row); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public tbFichaTecnicaRow AddtbFichaTecnicaRow(int IdFichaTecnica, string Nombre, string Identificacion, string DescripcionDocumentoTecnico, string DescripcionAplicacion, string DescripcionContenido, string DescripcionGrupoTematico, string DescripcionEmisor, string NumeroPublicacionVersion) { - tbFichaTecnicaRow rowtbFichaTecnicaRow = ((tbFichaTecnicaRow)(this.NewRow())); - object[] columnValuesArray = new object[] { - IdFichaTecnica, - Nombre, - Identificacion, - DescripcionDocumentoTecnico, - DescripcionAplicacion, - DescripcionContenido, - DescripcionGrupoTematico, - DescripcionEmisor, - NumeroPublicacionVersion}; - rowtbFichaTecnicaRow.ItemArray = columnValuesArray; - this.Rows.Add(rowtbFichaTecnicaRow); - return rowtbFichaTecnicaRow; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public override global::System.Data.DataTable Clone() { - tbFichaTecnicaDataTable cln = ((tbFichaTecnicaDataTable)(base.Clone())); - cln.InitVars(); - return cln; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override global::System.Data.DataTable CreateInstance() { - return new tbFichaTecnicaDataTable(); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - internal void InitVars() { - this.columnIdFichaTecnica = base.Columns["IdFichaTecnica"]; - this.columnNombre = base.Columns["Nombre"]; - this.columnIdentificacion = base.Columns["Identificacion"]; - this.columnDescripcionDocumentoTecnico = base.Columns["DescripcionDocumentoTecnico"]; - this.columnDescripcionAplicacion = base.Columns["DescripcionAplicacion"]; - this.columnDescripcionContenido = base.Columns["DescripcionContenido"]; - this.columnDescripcionGrupoTematico = base.Columns["DescripcionGrupoTematico"]; - this.columnDescripcionEmisor = base.Columns["DescripcionEmisor"]; - this.columnNumeroPublicacionVersion = base.Columns["NumeroPublicacionVersion"]; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - private void InitClass() { - this.columnIdFichaTecnica = new global::System.Data.DataColumn("IdFichaTecnica", typeof(int), null, global::System.Data.MappingType.Element); - base.Columns.Add(this.columnIdFichaTecnica); - this.columnNombre = new global::System.Data.DataColumn("Nombre", typeof(string), null, global::System.Data.MappingType.Element); - base.Columns.Add(this.columnNombre); - this.columnIdentificacion = new global::System.Data.DataColumn("Identificacion", typeof(string), null, global::System.Data.MappingType.Element); - base.Columns.Add(this.columnIdentificacion); - this.columnDescripcionDocumentoTecnico = new global::System.Data.DataColumn("DescripcionDocumentoTecnico", typeof(string), null, global::System.Data.MappingType.Element); - base.Columns.Add(this.columnDescripcionDocumentoTecnico); - this.columnDescripcionAplicacion = new global::System.Data.DataColumn("DescripcionAplicacion", typeof(string), null, global::System.Data.MappingType.Element); - base.Columns.Add(this.columnDescripcionAplicacion); - this.columnDescripcionContenido = new global::System.Data.DataColumn("DescripcionContenido", typeof(string), null, global::System.Data.MappingType.Element); - base.Columns.Add(this.columnDescripcionContenido); - this.columnDescripcionGrupoTematico = new global::System.Data.DataColumn("DescripcionGrupoTematico", typeof(string), null, global::System.Data.MappingType.Element); - base.Columns.Add(this.columnDescripcionGrupoTematico); - this.columnDescripcionEmisor = new global::System.Data.DataColumn("DescripcionEmisor", typeof(string), null, global::System.Data.MappingType.Element); - base.Columns.Add(this.columnDescripcionEmisor); - this.columnNumeroPublicacionVersion = new global::System.Data.DataColumn("NumeroPublicacionVersion", typeof(string), null, global::System.Data.MappingType.Element); - base.Columns.Add(this.columnNumeroPublicacionVersion); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public tbFichaTecnicaRow NewtbFichaTecnicaRow() { - return ((tbFichaTecnicaRow)(this.NewRow())); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) { - return new tbFichaTecnicaRow(builder); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override global::System.Type GetRowType() { - return typeof(tbFichaTecnicaRow); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) { - base.OnRowChanged(e); - if ((this.tbFichaTecnicaRowChanged != null)) { - this.tbFichaTecnicaRowChanged(this, new tbFichaTecnicaRowChangeEvent(((tbFichaTecnicaRow)(e.Row)), e.Action)); - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) { - base.OnRowChanging(e); - if ((this.tbFichaTecnicaRowChanging != null)) { - this.tbFichaTecnicaRowChanging(this, new tbFichaTecnicaRowChangeEvent(((tbFichaTecnicaRow)(e.Row)), e.Action)); - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) { - base.OnRowDeleted(e); - if ((this.tbFichaTecnicaRowDeleted != null)) { - this.tbFichaTecnicaRowDeleted(this, new tbFichaTecnicaRowChangeEvent(((tbFichaTecnicaRow)(e.Row)), e.Action)); - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) { - base.OnRowDeleting(e); - if ((this.tbFichaTecnicaRowDeleting != null)) { - this.tbFichaTecnicaRowDeleting(this, new tbFichaTecnicaRowChangeEvent(((tbFichaTecnicaRow)(e.Row)), e.Action)); - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public void RemovetbFichaTecnicaRow(tbFichaTecnicaRow row) { - this.Rows.Remove(row); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) { - global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType(); - global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence(); - dtsFichaTecnica ds = new dtsFichaTecnica(); - global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny(); - any1.Namespace = "http://www.w3.org/2001/XMLSchema"; - any1.MinOccurs = new decimal(0); - any1.MaxOccurs = decimal.MaxValue; - any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax; - sequence.Items.Add(any1); - global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny(); - any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1"; - any2.MinOccurs = new decimal(1); - any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax; - sequence.Items.Add(any2); - global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute(); - attribute1.Name = "namespace"; - attribute1.FixedValue = ds.Namespace; - type.Attributes.Add(attribute1); - global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute(); - attribute2.Name = "tableTypeName"; - attribute2.FixedValue = "tbFichaTecnicaDataTable"; - type.Attributes.Add(attribute2); - type.Particle = sequence; - global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable(); - if (xs.Contains(dsSchema.TargetNamespace)) { - global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream(); - global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream(); - try { - global::System.Xml.Schema.XmlSchema schema = null; - dsSchema.Write(s1); - for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) { - schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current)); - s2.SetLength(0); - schema.Write(s2); - if ((s1.Length == s2.Length)) { - s1.Position = 0; - s2.Position = 0; - for (; ((s1.Position != s1.Length) - && (s1.ReadByte() == s2.ReadByte())); ) { - ; - } - if ((s1.Position == s1.Length)) { - return type; - } - } - } - } - finally { - if ((s1 != null)) { - s1.Close(); - } - if ((s2 != null)) { - s2.Close(); - } - } - } - xs.Add(dsSchema); - return type; - } - } - - /// - ///Represents strongly named DataRow class. - /// - public partial class tbFichaTecnicaRow : global::System.Data.DataRow { - - private tbFichaTecnicaDataTable tabletbFichaTecnica; - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - internal tbFichaTecnicaRow(global::System.Data.DataRowBuilder rb) : - base(rb) { - this.tabletbFichaTecnica = ((tbFichaTecnicaDataTable)(this.Table)); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public int IdFichaTecnica { - get { - try { - return ((int)(this[this.tabletbFichaTecnica.IdFichaTecnicaColumn])); - } - catch (global::System.InvalidCastException e) { - throw new global::System.Data.StrongTypingException("The value for column \'IdFichaTecnica\' in table \'tbFichaTecnica\' is DBNull.", e); - } - } - set { - this[this.tabletbFichaTecnica.IdFichaTecnicaColumn] = value; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public string Nombre { - get { - try { - return ((string)(this[this.tabletbFichaTecnica.NombreColumn])); - } - catch (global::System.InvalidCastException e) { - throw new global::System.Data.StrongTypingException("The value for column \'Nombre\' in table \'tbFichaTecnica\' is DBNull.", e); - } - } - set { - this[this.tabletbFichaTecnica.NombreColumn] = value; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public string Identificacion { - get { - try { - return ((string)(this[this.tabletbFichaTecnica.IdentificacionColumn])); - } - catch (global::System.InvalidCastException e) { - throw new global::System.Data.StrongTypingException("The value for column \'Identificacion\' in table \'tbFichaTecnica\' is DBNull.", e); - } - } - set { - this[this.tabletbFichaTecnica.IdentificacionColumn] = value; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public string DescripcionDocumentoTecnico { - get { - try { - return ((string)(this[this.tabletbFichaTecnica.DescripcionDocumentoTecnicoColumn])); - } - catch (global::System.InvalidCastException e) { - throw new global::System.Data.StrongTypingException("The value for column \'DescripcionDocumentoTecnico\' in table \'tbFichaTecnica\' is D" + - "BNull.", e); - } - } - set { - this[this.tabletbFichaTecnica.DescripcionDocumentoTecnicoColumn] = value; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public string DescripcionAplicacion { - get { - try { - return ((string)(this[this.tabletbFichaTecnica.DescripcionAplicacionColumn])); - } - catch (global::System.InvalidCastException e) { - throw new global::System.Data.StrongTypingException("The value for column \'DescripcionAplicacion\' in table \'tbFichaTecnica\' is DBNull." + - "", e); - } - } - set { - this[this.tabletbFichaTecnica.DescripcionAplicacionColumn] = value; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public string DescripcionContenido { - get { - try { - return ((string)(this[this.tabletbFichaTecnica.DescripcionContenidoColumn])); - } - catch (global::System.InvalidCastException e) { - throw new global::System.Data.StrongTypingException("The value for column \'DescripcionContenido\' in table \'tbFichaTecnica\' is DBNull.", e); - } - } - set { - this[this.tabletbFichaTecnica.DescripcionContenidoColumn] = value; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public string DescripcionGrupoTematico { - get { - try { - return ((string)(this[this.tabletbFichaTecnica.DescripcionGrupoTematicoColumn])); - } - catch (global::System.InvalidCastException e) { - throw new global::System.Data.StrongTypingException("The value for column \'DescripcionGrupoTematico\' in table \'tbFichaTecnica\' is DBNu" + - "ll.", e); - } - } - set { - this[this.tabletbFichaTecnica.DescripcionGrupoTematicoColumn] = value; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public string DescripcionEmisor { - get { - try { - return ((string)(this[this.tabletbFichaTecnica.DescripcionEmisorColumn])); - } - catch (global::System.InvalidCastException e) { - throw new global::System.Data.StrongTypingException("The value for column \'DescripcionEmisor\' in table \'tbFichaTecnica\' is DBNull.", e); - } - } - set { - this[this.tabletbFichaTecnica.DescripcionEmisorColumn] = value; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public string NumeroPublicacionVersion { - get { - try { - return ((string)(this[this.tabletbFichaTecnica.NumeroPublicacionVersionColumn])); - } - catch (global::System.InvalidCastException e) { - throw new global::System.Data.StrongTypingException("The value for column \'NumeroPublicacionVersion\' in table \'tbFichaTecnica\' is DBNu" + - "ll.", e); - } - } - set { - this[this.tabletbFichaTecnica.NumeroPublicacionVersionColumn] = value; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public bool IsIdFichaTecnicaNull() { - return this.IsNull(this.tabletbFichaTecnica.IdFichaTecnicaColumn); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public void SetIdFichaTecnicaNull() { - this[this.tabletbFichaTecnica.IdFichaTecnicaColumn] = global::System.Convert.DBNull; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public bool IsNombreNull() { - return this.IsNull(this.tabletbFichaTecnica.NombreColumn); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public void SetNombreNull() { - this[this.tabletbFichaTecnica.NombreColumn] = global::System.Convert.DBNull; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public bool IsIdentificacionNull() { - return this.IsNull(this.tabletbFichaTecnica.IdentificacionColumn); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public void SetIdentificacionNull() { - this[this.tabletbFichaTecnica.IdentificacionColumn] = global::System.Convert.DBNull; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public bool IsDescripcionDocumentoTecnicoNull() { - return this.IsNull(this.tabletbFichaTecnica.DescripcionDocumentoTecnicoColumn); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public void SetDescripcionDocumentoTecnicoNull() { - this[this.tabletbFichaTecnica.DescripcionDocumentoTecnicoColumn] = global::System.Convert.DBNull; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public bool IsDescripcionAplicacionNull() { - return this.IsNull(this.tabletbFichaTecnica.DescripcionAplicacionColumn); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public void SetDescripcionAplicacionNull() { - this[this.tabletbFichaTecnica.DescripcionAplicacionColumn] = global::System.Convert.DBNull; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public bool IsDescripcionContenidoNull() { - return this.IsNull(this.tabletbFichaTecnica.DescripcionContenidoColumn); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public void SetDescripcionContenidoNull() { - this[this.tabletbFichaTecnica.DescripcionContenidoColumn] = global::System.Convert.DBNull; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public bool IsDescripcionGrupoTematicoNull() { - return this.IsNull(this.tabletbFichaTecnica.DescripcionGrupoTematicoColumn); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public void SetDescripcionGrupoTematicoNull() { - this[this.tabletbFichaTecnica.DescripcionGrupoTematicoColumn] = global::System.Convert.DBNull; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public bool IsDescripcionEmisorNull() { - return this.IsNull(this.tabletbFichaTecnica.DescripcionEmisorColumn); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public void SetDescripcionEmisorNull() { - this[this.tabletbFichaTecnica.DescripcionEmisorColumn] = global::System.Convert.DBNull; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public bool IsNumeroPublicacionVersionNull() { - return this.IsNull(this.tabletbFichaTecnica.NumeroPublicacionVersionColumn); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public void SetNumeroPublicacionVersionNull() { - this[this.tabletbFichaTecnica.NumeroPublicacionVersionColumn] = global::System.Convert.DBNull; - } - } - - /// - ///Row event argument class - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public class tbFichaTecnicaRowChangeEvent : global::System.EventArgs { - - private tbFichaTecnicaRow eventRow; - - private global::System.Data.DataRowAction eventAction; - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public tbFichaTecnicaRowChangeEvent(tbFichaTecnicaRow row, global::System.Data.DataRowAction action) { - this.eventRow = row; - this.eventAction = action; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public tbFichaTecnicaRow Row { - get { - return this.eventRow; - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public global::System.Data.DataRowAction Action { - get { - return this.eventAction; - } - } - } - } -} - -#pragma warning restore 1591 \ No newline at end of file diff --git a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnica.xsc b/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnica.xsc deleted file mode 100644 index 551fc56fb..000000000 --- a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnica.xsc +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnica.xsd b/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnica.xsd deleted file mode 100644 index 49a5a49a4..000000000 --- a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnica.xsd +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnica.xss b/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnica.xss deleted file mode 100644 index 74a7ad619..000000000 --- a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnica.xss +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnicaFinal.Designer.cs b/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnicaFinal.Designer.cs index fcb548c1a..107c56a7a 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnicaFinal.Designer.cs +++ b/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnicaFinal.Designer.cs @@ -291,8 +291,12 @@ namespace AYA.SlnSinort.Reportes.datasets { private global::System.Data.DataColumn columnDescripcionContenido; + private global::System.Data.DataColumn columnDescripcionsubCategoriaContenido; + private global::System.Data.DataColumn columnDescripcionGrupoTematico; + private global::System.Data.DataColumn columnDescripcionSubCategoriaGrupoTematico; + private global::System.Data.DataColumn columnDescripcionEmisor; private global::System.Data.DataColumn columnNumeroPublicacionVersion; @@ -378,6 +382,14 @@ namespace AYA.SlnSinort.Reportes.datasets { } } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] + public global::System.Data.DataColumn DescripcionsubCategoriaContenidoColumn { + get { + return this.columnDescripcionsubCategoriaContenido; + } + } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] public global::System.Data.DataColumn DescripcionGrupoTematicoColumn { @@ -386,6 +398,14 @@ namespace AYA.SlnSinort.Reportes.datasets { } } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] + public global::System.Data.DataColumn DescripcionSubCategoriaGrupoTematicoColumn { + get { + return this.columnDescripcionSubCategoriaGrupoTematico; + } + } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] public global::System.Data.DataColumn DescripcionEmisorColumn { @@ -439,7 +459,7 @@ namespace AYA.SlnSinort.Reportes.datasets { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] - public DataTable1Row AddDataTable1Row(int IdFichaTecnica, string Nombre, string Identificacion, string DescripcionDocumentoTecnico, string DescripcionAplicacion, string DescripcionContenido, string DescripcionGrupoTematico, string DescripcionEmisor, string NumeroPublicacionVersion) { + public DataTable1Row AddDataTable1Row(int IdFichaTecnica, string Nombre, string Identificacion, string DescripcionDocumentoTecnico, string DescripcionAplicacion, string DescripcionContenido, string DescripcionsubCategoriaContenido, string DescripcionGrupoTematico, string DescripcionSubCategoriaGrupoTematico, string DescripcionEmisor, string NumeroPublicacionVersion) { DataTable1Row rowDataTable1Row = ((DataTable1Row)(this.NewRow())); object[] columnValuesArray = new object[] { IdFichaTecnica, @@ -448,7 +468,9 @@ namespace AYA.SlnSinort.Reportes.datasets { DescripcionDocumentoTecnico, DescripcionAplicacion, DescripcionContenido, + DescripcionsubCategoriaContenido, DescripcionGrupoTematico, + DescripcionSubCategoriaGrupoTematico, DescripcionEmisor, NumeroPublicacionVersion}; rowDataTable1Row.ItemArray = columnValuesArray; @@ -486,7 +508,9 @@ namespace AYA.SlnSinort.Reportes.datasets { this.columnDescripcionDocumentoTecnico = base.Columns["DescripcionDocumentoTecnico"]; this.columnDescripcionAplicacion = base.Columns["DescripcionAplicacion"]; this.columnDescripcionContenido = base.Columns["DescripcionContenido"]; + this.columnDescripcionsubCategoriaContenido = base.Columns["DescripcionsubCategoriaContenido"]; this.columnDescripcionGrupoTematico = base.Columns["DescripcionGrupoTematico"]; + this.columnDescripcionSubCategoriaGrupoTematico = base.Columns["DescripcionSubCategoriaGrupoTematico"]; this.columnDescripcionEmisor = base.Columns["DescripcionEmisor"]; this.columnNumeroPublicacionVersion = base.Columns["NumeroPublicacionVersion"]; } @@ -506,8 +530,12 @@ namespace AYA.SlnSinort.Reportes.datasets { base.Columns.Add(this.columnDescripcionAplicacion); this.columnDescripcionContenido = new global::System.Data.DataColumn("DescripcionContenido", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnDescripcionContenido); + this.columnDescripcionsubCategoriaContenido = new global::System.Data.DataColumn("DescripcionsubCategoriaContenido", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnDescripcionsubCategoriaContenido); this.columnDescripcionGrupoTematico = new global::System.Data.DataColumn("DescripcionGrupoTematico", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnDescripcionGrupoTematico); + this.columnDescripcionSubCategoriaGrupoTematico = new global::System.Data.DataColumn("DescripcionSubCategoriaGrupoTematico", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnDescripcionSubCategoriaGrupoTematico); this.columnDescripcionEmisor = new global::System.Data.DataColumn("DescripcionEmisor", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnDescripcionEmisor); this.columnNumeroPublicacionVersion = new global::System.Data.DataColumn("NumeroPublicacionVersion", typeof(string), null, global::System.Data.MappingType.Element); @@ -521,7 +549,9 @@ namespace AYA.SlnSinort.Reportes.datasets { this.columnDescripcionDocumentoTecnico.MaxLength = 500; this.columnDescripcionAplicacion.MaxLength = 500; this.columnDescripcionContenido.MaxLength = 500; + this.columnDescripcionsubCategoriaContenido.MaxLength = 500; this.columnDescripcionGrupoTematico.MaxLength = 500; + this.columnDescripcionSubCategoriaGrupoTematico.MaxLength = 500; this.columnDescripcionEmisor.MaxLength = 500; this.columnNumeroPublicacionVersion.MaxLength = 200; } @@ -756,6 +786,23 @@ namespace AYA.SlnSinort.Reportes.datasets { } } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] + public string DescripcionsubCategoriaContenido { + get { + try { + return ((string)(this[this.tableDataTable1.DescripcionsubCategoriaContenidoColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'DescripcionsubCategoriaContenido\' in table \'DataTable1\' is " + + "DBNull.", e); + } + } + set { + this[this.tableDataTable1.DescripcionsubCategoriaContenidoColumn] = value; + } + } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] public string DescripcionGrupoTematico { @@ -772,6 +819,23 @@ namespace AYA.SlnSinort.Reportes.datasets { } } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] + public string DescripcionSubCategoriaGrupoTematico { + get { + try { + return ((string)(this[this.tableDataTable1.DescripcionSubCategoriaGrupoTematicoColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'DescripcionSubCategoriaGrupoTematico\' in table \'DataTable1\'" + + " is DBNull.", e); + } + } + set { + this[this.tableDataTable1.DescripcionSubCategoriaGrupoTematicoColumn] = value; + } + } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] public string DescripcionEmisor { @@ -864,6 +928,18 @@ namespace AYA.SlnSinort.Reportes.datasets { this[this.tableDataTable1.DescripcionContenidoColumn] = global::System.Convert.DBNull; } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] + public bool IsDescripcionsubCategoriaContenidoNull() { + return this.IsNull(this.tableDataTable1.DescripcionsubCategoriaContenidoColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] + public void SetDescripcionsubCategoriaContenidoNull() { + this[this.tableDataTable1.DescripcionsubCategoriaContenidoColumn] = global::System.Convert.DBNull; + } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] public bool IsDescripcionGrupoTematicoNull() { @@ -876,6 +952,18 @@ namespace AYA.SlnSinort.Reportes.datasets { this[this.tableDataTable1.DescripcionGrupoTematicoColumn] = global::System.Convert.DBNull; } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] + public bool IsDescripcionSubCategoriaGrupoTematicoNull() { + return this.IsNull(this.tableDataTable1.DescripcionSubCategoriaGrupoTematicoColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] + public void SetDescripcionSubCategoriaGrupoTematicoNull() { + this[this.tableDataTable1.DescripcionSubCategoriaGrupoTematicoColumn] = global::System.Convert.DBNull; + } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] public bool IsDescripcionEmisorNull() { @@ -1066,7 +1154,9 @@ namespace AYA.SlnSinort.Reportes.datasets.dtsFichaTecnicaFinalTableAdapters { tableMapping.ColumnMappings.Add("DescripcionDocumentoTecnico", "DescripcionDocumentoTecnico"); tableMapping.ColumnMappings.Add("DescripcionAplicacion", "DescripcionAplicacion"); tableMapping.ColumnMappings.Add("DescripcionContenido", "DescripcionContenido"); + tableMapping.ColumnMappings.Add("DescripcionsubCategoriaContenido", "DescripcionsubCategoriaContenido"); tableMapping.ColumnMappings.Add("DescripcionGrupoTematico", "DescripcionGrupoTematico"); + tableMapping.ColumnMappings.Add("DescripcionSubCategoriaGrupoTematico", "DescripcionSubCategoriaGrupoTematico"); tableMapping.ColumnMappings.Add("DescripcionEmisor", "DescripcionEmisor"); tableMapping.ColumnMappings.Add("NumeroPublicacionVersion", "NumeroPublicacionVersion"); this._adapter.TableMappings.Add(tableMapping); @@ -1076,9 +1166,9 @@ namespace AYA.SlnSinort.Reportes.datasets.dtsFichaTecnicaFinalTableAdapters { [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] private void InitConnection() { this._connection = new global::System.Data.SqlClient.SqlConnection(); - this._connection.ConnectionString = "Data Source=192.168.1.37;Initial Catalog=SinortAyA;Persist Security Info=True;Use" + - "r ID=sinort;Password=sinort2018;MultipleActiveResultSets=True;Application Name=E" + - "ntityFramework"; + this._connection.ConnectionString = "Data Source=10.50.1.98;Initial Catalog=SINORT;Persist Security Info=True;User ID=" + + "usersinort;Password=usersinort;MultipleActiveResultSets=True;Application Name=En" + + "tityFramework"; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -1087,16 +1177,38 @@ namespace AYA.SlnSinort.Reportes.datasets.dtsFichaTecnicaFinalTableAdapters { this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1]; this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand(); this._commandCollection[0].Connection = this.Connection; - this._commandCollection[0].CommandText = @"SELECT [IdFichaTecnica],[Nombre],[Identificacion],[DescripcionDocumentoTecnico], [DescripcionAplicacion],[DescripcionContenido],[DescripcionGrupoTematico], [DescripcionEmisor],[NumeroPublicacionVersion] FROM [Global].[FichaTecnica] f, [Expediente].[DocumentosAdjuntos] d WHERE f.[IdDocumento] = d.[IdDocumentoAdjunto] and ([DescripcionEmisor] = @parametro1 or @parametro1 = '')"; + this._commandCollection[0].CommandText = @"SELECT [IdFichaTecnica],[Nombre],[Identificacion],[DescripcionDocumentoTecnico], + [DescripcionAplicacion],[DescripcionContenido],[DescripcionsubCategoriaContenido],[DescripcionGrupoTematico], + [DescripcionSubCategoriaGrupoTematico],[DescripcionEmisor],[NumeroPublicacionVersion] FROM + [Global].[FichaTecnica] f, [Expediente].[DocumentosAdjuntos] d + WHERE f.[IdDocumento] = d.[IdDocumentoAdjunto] and + ([DescripcionEmisor] = @parametro1 or @parametro1 = '') and + ([DescripcionDocumentoTecnico] = @parametro2 or @parametro2 = '') and + ([DescripcionAplicacion] = @parametro3 or @parametro3 = '') and + ([DescripcionContenido] = @parametro4 or @parametro4 = '') and + ([DescripcionsubCategoriaContenido] = @parametro5 or @parametro5 = '') and + ([DescripcionGrupoTematico] = @parametro6 or @parametro6 = '') and + ([DescripcionSubCategoriaGrupoTematico] = @parametro7 or @parametro7 = '') and + ([NumeroPublicacionVersion] = @parametro8 or @parametro8 = '') and + ([FechaPublicacionDocumentoTecnico] between @parametro9 and @parametro10 )"; this._commandCollection[0].CommandType = global::System.Data.CommandType.Text; this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@parametro1", global::System.Data.SqlDbType.VarChar, 500, global::System.Data.ParameterDirection.Input, 0, 0, "DescripcionEmisor", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@parametro2", global::System.Data.SqlDbType.VarChar, 500, global::System.Data.ParameterDirection.Input, 0, 0, "DescripcionDocumentoTecnico", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@parametro3", global::System.Data.SqlDbType.VarChar, 500, global::System.Data.ParameterDirection.Input, 0, 0, "DescripcionAplicacion", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@parametro4", global::System.Data.SqlDbType.VarChar, 500, global::System.Data.ParameterDirection.Input, 0, 0, "DescripcionContenido", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@parametro5", global::System.Data.SqlDbType.VarChar, 500, global::System.Data.ParameterDirection.Input, 0, 0, "DescripcionsubCategoriaContenido", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@parametro6", global::System.Data.SqlDbType.VarChar, 500, global::System.Data.ParameterDirection.Input, 0, 0, "DescripcionGrupoTematico", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@parametro7", global::System.Data.SqlDbType.VarChar, 500, global::System.Data.ParameterDirection.Input, 0, 0, "DescripcionSubCategoriaGrupoTematico", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@parametro8", global::System.Data.SqlDbType.VarChar, 200, global::System.Data.ParameterDirection.Input, 0, 0, "NumeroPublicacionVersion", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@parametro9", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 0, 0, "FechaPublicacionDocumentoTecnico", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@parametro10", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 0, 0, "FechaPublicacionDocumentoTecnico", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)] - public virtual int Fill(dtsFichaTecnicaFinal.DataTable1DataTable dataTable, string parametro1) { + public virtual int Fill(dtsFichaTecnicaFinal.DataTable1DataTable dataTable, string parametro1, string parametro2, string parametro3, string parametro4, string parametro5, string parametro6, string parametro7, string parametro8, global::System.Nullable parametro9, global::System.Nullable parametro10) { this.Adapter.SelectCommand = this.CommandCollection[0]; if ((parametro1 == null)) { this.Adapter.SelectCommand.Parameters[0].Value = global::System.DBNull.Value; @@ -1104,6 +1216,60 @@ namespace AYA.SlnSinort.Reportes.datasets.dtsFichaTecnicaFinalTableAdapters { else { this.Adapter.SelectCommand.Parameters[0].Value = ((string)(parametro1)); } + if ((parametro2 == null)) { + this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value; + } + else { + this.Adapter.SelectCommand.Parameters[1].Value = ((string)(parametro2)); + } + if ((parametro3 == null)) { + this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value; + } + else { + this.Adapter.SelectCommand.Parameters[2].Value = ((string)(parametro3)); + } + if ((parametro4 == null)) { + this.Adapter.SelectCommand.Parameters[3].Value = global::System.DBNull.Value; + } + else { + this.Adapter.SelectCommand.Parameters[3].Value = ((string)(parametro4)); + } + if ((parametro5 == null)) { + this.Adapter.SelectCommand.Parameters[4].Value = global::System.DBNull.Value; + } + else { + this.Adapter.SelectCommand.Parameters[4].Value = ((string)(parametro5)); + } + if ((parametro6 == null)) { + this.Adapter.SelectCommand.Parameters[5].Value = global::System.DBNull.Value; + } + else { + this.Adapter.SelectCommand.Parameters[5].Value = ((string)(parametro6)); + } + if ((parametro7 == null)) { + this.Adapter.SelectCommand.Parameters[6].Value = global::System.DBNull.Value; + } + else { + this.Adapter.SelectCommand.Parameters[6].Value = ((string)(parametro7)); + } + if ((parametro8 == null)) { + this.Adapter.SelectCommand.Parameters[7].Value = global::System.DBNull.Value; + } + else { + this.Adapter.SelectCommand.Parameters[7].Value = ((string)(parametro8)); + } + if ((parametro9.HasValue == true)) { + this.Adapter.SelectCommand.Parameters[8].Value = ((System.DateTime)(parametro9.Value)); + } + else { + this.Adapter.SelectCommand.Parameters[8].Value = global::System.DBNull.Value; + } + if ((parametro10.HasValue == true)) { + this.Adapter.SelectCommand.Parameters[9].Value = ((System.DateTime)(parametro10.Value)); + } + else { + this.Adapter.SelectCommand.Parameters[9].Value = global::System.DBNull.Value; + } if ((this.ClearBeforeFill == true)) { dataTable.Clear(); } @@ -1115,7 +1281,7 @@ namespace AYA.SlnSinort.Reportes.datasets.dtsFichaTecnicaFinalTableAdapters { [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)] - public virtual dtsFichaTecnicaFinal.DataTable1DataTable GetData(string parametro1) { + public virtual dtsFichaTecnicaFinal.DataTable1DataTable GetData(string parametro1, string parametro2, string parametro3, string parametro4, string parametro5, string parametro6, string parametro7, string parametro8, global::System.Nullable parametro9, global::System.Nullable parametro10) { this.Adapter.SelectCommand = this.CommandCollection[0]; if ((parametro1 == null)) { this.Adapter.SelectCommand.Parameters[0].Value = global::System.DBNull.Value; @@ -1123,6 +1289,60 @@ namespace AYA.SlnSinort.Reportes.datasets.dtsFichaTecnicaFinalTableAdapters { else { this.Adapter.SelectCommand.Parameters[0].Value = ((string)(parametro1)); } + if ((parametro2 == null)) { + this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value; + } + else { + this.Adapter.SelectCommand.Parameters[1].Value = ((string)(parametro2)); + } + if ((parametro3 == null)) { + this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value; + } + else { + this.Adapter.SelectCommand.Parameters[2].Value = ((string)(parametro3)); + } + if ((parametro4 == null)) { + this.Adapter.SelectCommand.Parameters[3].Value = global::System.DBNull.Value; + } + else { + this.Adapter.SelectCommand.Parameters[3].Value = ((string)(parametro4)); + } + if ((parametro5 == null)) { + this.Adapter.SelectCommand.Parameters[4].Value = global::System.DBNull.Value; + } + else { + this.Adapter.SelectCommand.Parameters[4].Value = ((string)(parametro5)); + } + if ((parametro6 == null)) { + this.Adapter.SelectCommand.Parameters[5].Value = global::System.DBNull.Value; + } + else { + this.Adapter.SelectCommand.Parameters[5].Value = ((string)(parametro6)); + } + if ((parametro7 == null)) { + this.Adapter.SelectCommand.Parameters[6].Value = global::System.DBNull.Value; + } + else { + this.Adapter.SelectCommand.Parameters[6].Value = ((string)(parametro7)); + } + if ((parametro8 == null)) { + this.Adapter.SelectCommand.Parameters[7].Value = global::System.DBNull.Value; + } + else { + this.Adapter.SelectCommand.Parameters[7].Value = ((string)(parametro8)); + } + if ((parametro9.HasValue == true)) { + this.Adapter.SelectCommand.Parameters[8].Value = ((System.DateTime)(parametro9.Value)); + } + else { + this.Adapter.SelectCommand.Parameters[8].Value = global::System.DBNull.Value; + } + if ((parametro10.HasValue == true)) { + this.Adapter.SelectCommand.Parameters[9].Value = ((System.DateTime)(parametro10.Value)); + } + else { + this.Adapter.SelectCommand.Parameters[9].Value = global::System.DBNull.Value; + } dtsFichaTecnicaFinal.DataTable1DataTable dataTable = new dtsFichaTecnicaFinal.DataTable1DataTable(); this.Adapter.Fill(dataTable); return dataTable; diff --git a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnicaFinal.xsd b/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnicaFinal.xsd index 279fb8fb7..83e3681d4 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnicaFinal.xsd +++ b/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnicaFinal.xsd @@ -2,19 +2,42 @@ - + + - + - SELECT [IdFichaTecnica],[Nombre],[Identificacion],[DescripcionDocumentoTecnico], [DescripcionAplicacion],[DescripcionContenido],[DescripcionGrupoTematico], [DescripcionEmisor],[NumeroPublicacionVersion] FROM [Global].[FichaTecnica] f, [Expediente].[DocumentosAdjuntos] d WHERE f.[IdDocumento] = d.[IdDocumentoAdjunto] and ([DescripcionEmisor] = @parametro1 or @parametro1 = '') + SELECT [IdFichaTecnica],[Nombre],[Identificacion],[DescripcionDocumentoTecnico], + [DescripcionAplicacion],[DescripcionContenido],[DescripcionsubCategoriaContenido],[DescripcionGrupoTematico], + [DescripcionSubCategoriaGrupoTematico],[DescripcionEmisor],[NumeroPublicacionVersion] FROM + [Global].[FichaTecnica] f, [Expediente].[DocumentosAdjuntos] d + WHERE f.[IdDocumento] = d.[IdDocumentoAdjunto] and + ([DescripcionEmisor] = @parametro1 or @parametro1 = '') and + ([DescripcionDocumentoTecnico] = @parametro2 or @parametro2 = '') and + ([DescripcionAplicacion] = @parametro3 or @parametro3 = '') and + ([DescripcionContenido] = @parametro4 or @parametro4 = '') and + ([DescripcionsubCategoriaContenido] = @parametro5 or @parametro5 = '') and + ([DescripcionGrupoTematico] = @parametro6 or @parametro6 = '') and + ([DescripcionSubCategoriaGrupoTematico] = @parametro7 or @parametro7 = '') and + ([NumeroPublicacionVersion] = @parametro8 or @parametro8 = '') and + ([FechaPublicacionDocumentoTecnico] between @parametro9 and @parametro10 ) - + + + + + + + + + + @@ -27,7 +50,9 @@ + + @@ -41,7 +66,7 @@ - + @@ -80,6 +105,13 @@ + + + + + + + @@ -87,6 +119,13 @@ + + + + + + + diff --git a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnicaFinal.xss b/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnicaFinal.xss index 685d01c24..8a19ebd0e 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnicaFinal.xss +++ b/AYA.SlnSynor/AYA.SlnSynor/Reportes/datasets/dtsFichaTecnicaFinal.xss @@ -6,7 +6,7 @@ --> - + \ No newline at end of file diff --git a/AYA.SlnSynor/AYA.SlnSynor/Reportes/rdlc/repFichaTecnica.rdlc b/AYA.SlnSynor/AYA.SlnSynor/Reportes/rdlc/repFichaTecnica.rdlc index b9a371e04..382016047 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Reportes/rdlc/repFichaTecnica.rdlc +++ b/AYA.SlnSynor/AYA.SlnSynor/Reportes/rdlc/repFichaTecnica.rdlc @@ -40,25 +40,31 @@ 1.30937cm - 6.83917cm + 5.08001cm - 6.54812cm + 4.03458cm - 3.79646cm + 3.69063cm - 2.5cm + 2.44708cm - 3.46604cm + 2.87042cm - 2.5cm + 3.09562cm - 2.15604cm + 3.77cm + + + 2.07667cm + + + 1.62687cm 3.00271cm @@ -248,6 +254,42 @@ + + + + true + true + + + + + SubContenido + + + + + + + Textbox2 + + + Blue + 2pt + 2pt + 2pt + 2pt + + + + @@ -284,6 +326,42 @@ + + + + true + true + + + + + SubGrupo Tematico + + + + + + + Textbox10 + + + Blue + 2pt + 2pt + 2pt + 2pt + + + + @@ -547,6 +625,36 @@ + + + + true + true + + + + + =Fields!DescripcionsubCategoriaContenido.Value + + + 2pt + 2pt + 2pt + 2pt + + + + @@ -577,6 +685,36 @@ + + + + true + true + + + + + =Fields!DescripcionSubCategoriaGrupoTematico.Value + + + 2pt + 2pt + 2pt + 2pt + + + + @@ -682,6 +820,8 @@ + + @@ -698,7 +838,7 @@ 0.88209cm 0.26141cm 1.2cm - 32.11791cm + 33.00395cm 1 - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - Nombre - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - Identificacion - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - Descripcion Emisor - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - 0.6cm - - - - - true - true - - - - - =Fields!IdFichaTecnica.Value - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!Nombre.Value - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!Identificacion.Value - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - true - true - - - - - =Fields!DescripcionEmisor.Value - - - 2pt - 2pt - 2pt - 2pt - - - - - - - - - - - - - - - - - - - - After - - - - - - - dtsFichaTecnicaFinal - 1.90182cm - 1.63724cm - 1.2cm - 10cm - - - - - - 2in -