diff --git a/WebLab/Items/ItemEdit2.aspx b/WebLab/Items/ItemEdit2.aspx index 210d45b3..3a203408 100644 --- a/WebLab/Items/ItemEdit2.aspx +++ b/WebLab/Items/ItemEdit2.aspx @@ -829,9 +829,13 @@ Presentación por Defecto: - - + + + +   + + diff --git a/WebLab/Items/ItemEdit2.aspx.cs b/WebLab/Items/ItemEdit2.aspx.cs index 41789b84..f160b03f 100644 --- a/WebLab/Items/ItemEdit2.aspx.cs +++ b/WebLab/Items/ItemEdit2.aspx.cs @@ -209,6 +209,17 @@ private void MostrarDatosEfector(Efector oEfector) ddlPresentacionEfectorDefecto.SelectedValue = oItem.IdPresentacionDefecto.ToString(); + if(oItem.IdPresentacionDefecto == 0) + { + lblPresentacionDefecto.Text = "No se ha determinado una presentación por defecto"; + } + else + { + ItemPresentacion itemPres = new ItemPresentacion(); + itemPres = (ItemPresentacion) itemPres.Get(typeof(ItemPresentacion), oItem.IdPresentacionDefecto); + lblPresentacionDefecto.Text = "Presentacion: "+ itemPres.Codigo + '-' + itemPres.Presentacion + " se aplicará por defecto."; + } + MostrarDatosValoresReferencia(); } } @@ -3264,6 +3275,9 @@ private void GuardarPresentacionporDefecto(int pres) oItem.IdPresentacionDefecto = pres; oItem.Save(); + ItemPresentacion itemPres = new ItemPresentacion(); + itemPres = (ItemPresentacion)itemPres.Get(typeof(ItemPresentacion), oItem.IdPresentacionDefecto); + lblPresentacionDefecto.Text = "Presentacion: " + itemPres.Codigo + '-' + itemPres.Presentacion + " se aplicará por defecto."; } } diff --git a/WebLab/Items/ItemEdit2.aspx.designer.cs b/WebLab/Items/ItemEdit2.aspx.designer.cs index 56a2da8b..ea16a23d 100644 --- a/WebLab/Items/ItemEdit2.aspx.designer.cs +++ b/WebLab/Items/ItemEdit2.aspx.designer.cs @@ -7,11 +7,13 @@ // //------------------------------------------------------------------------------ -namespace WebLab.Items { - - - public partial class ItemEdit2 { - +namespace WebLab.Items +{ + + + public partial class ItemEdit2 + { + /// /// HFCurrTabIndex control. /// @@ -20,7 +22,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.HiddenField HFCurrTabIndex; - + /// /// txtEfector control. /// @@ -29,7 +31,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.Label txtEfector; - + /// /// rfvCodigo control. /// @@ -38,7 +40,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.RequiredFieldValidator rfvCodigo; - + /// /// txtCodigo control. /// @@ -47,7 +49,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.TextBox txtCodigo; - + /// /// lblMensajeCodigo control. /// @@ -56,7 +58,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Label lblMensajeCodigo; - + /// /// rfvNombre control. /// @@ -65,7 +67,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.RequiredFieldValidator rfvNombre; - + /// /// txtNombre control. /// @@ -74,7 +76,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.TextBox txtNombre; - + /// /// rfvDescripcion control. /// @@ -83,7 +85,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.RequiredFieldValidator rfvDescripcion; - + /// /// txtDescripcion control. /// @@ -92,7 +94,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.TextBox txtDescripcion; - + /// /// rvArea control. /// @@ -101,7 +103,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.RangeValidator rvArea; - + /// /// ddlServicio control. /// @@ -110,7 +112,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlServicio; - + /// /// ddlArea control. /// @@ -119,7 +121,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlArea; - + /// /// ddlUnidadMedida control. /// @@ -128,7 +130,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.DropDownList ddlUnidadMedida; - + /// /// rdbRequiereMuestra control. /// @@ -137,7 +139,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.RadioButtonList rdbRequiereMuestra; - + /// /// ddlDerivable control. /// @@ -146,7 +148,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlDerivable; - + /// /// ddlEfector control. /// @@ -155,7 +157,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlEfector; - + /// /// rvEfector control. /// @@ -164,7 +166,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.RangeValidator rvEfector; - + /// /// txtCodigoReferencia control. /// @@ -173,7 +175,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.TextBox txtCodigoReferencia; - + /// /// ddlItemReferencia control. /// @@ -182,7 +184,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlItemReferencia; - + /// /// rfvDuracion control. /// @@ -191,7 +193,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.RequiredFieldValidator rfvDuracion; - + /// /// txtDuracion control. /// @@ -200,7 +202,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.HtmlControls.HtmlInputText txtDuracion; - + /// /// rfvItem control. /// @@ -209,7 +211,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.RequiredFieldValidator rfvItem; - + /// /// rdbTipo control. /// @@ -218,7 +220,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.RadioButtonList rdbTipo; - + /// /// rfvCategoria control. /// @@ -227,7 +229,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.RequiredFieldValidator rfvCategoria; - + /// /// rdbCategoria control. /// @@ -236,7 +238,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.RadioButtonList rdbCategoria; - + /// /// ddlTipoMuestra control. /// @@ -245,7 +247,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlTipoMuestra; - + /// /// chkImprimeMuestra control. /// @@ -254,7 +256,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.CheckBox chkImprimeMuestra; - + /// /// rvTipoResultado control. /// @@ -263,7 +265,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.RangeValidator rvTipoResultado; - + /// /// ddlTipoResultado control. /// @@ -272,7 +274,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlTipoResultado; - + /// /// ddlDecimales control. /// @@ -281,7 +283,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlDecimales; - + /// /// ddlMultiplicador control. /// @@ -290,7 +292,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlMultiplicador; - + /// /// txtValorMinimo control. /// @@ -299,7 +301,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.TextBox txtValorMinimo; - + /// /// revValorMinimo control. /// @@ -308,7 +310,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.RegularExpressionValidator revValorMinimo; - + /// /// txtValorMaximo control. /// @@ -317,7 +319,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.TextBox txtValorMaximo; - + /// /// revValorMaximo control. /// @@ -326,7 +328,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.RegularExpressionValidator revValorMaximo; - + /// /// txtValorDefecto control. /// @@ -335,7 +337,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.TextBox txtValorDefecto; - + /// /// revValorDefecto control. /// @@ -344,7 +346,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.RegularExpressionValidator revValorDefecto; - + /// /// ddlDisponible control. /// @@ -353,7 +355,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.DropDownList ddlDisponible; - + /// /// lblSininsumo control. /// @@ -362,7 +364,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.Label lblSininsumo; - + /// /// ddlInformable control. /// @@ -371,7 +373,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.DropDownList ddlInformable; - + /// /// ddlCaracter control. /// @@ -380,7 +382,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.DropDownList ddlCaracter; - + /// /// txtCodigoNomenclador control. /// @@ -389,7 +391,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.TextBox txtCodigoNomenclador; - + /// /// lblMensaje control. /// @@ -398,7 +400,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Label lblMensaje; - + /// /// ddlItemNomenclador control. /// @@ -407,7 +409,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlItemNomenclador; - + /// /// lblValorNomenclador control. /// @@ -416,7 +418,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Label lblValorNomenclador; - + /// /// btnAuditoria control. /// @@ -425,7 +427,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.Button btnAuditoria; - + /// /// btnGuardar control. /// @@ -434,7 +436,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.Button btnGuardar; - + /// /// ddlMarca control. /// @@ -443,7 +445,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlMarca; - + /// /// rvMarca control. /// @@ -452,7 +454,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.RangeValidator rvMarca; - + /// /// txtCodigoPresentacion control. /// @@ -461,7 +463,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.TextBox txtCodigoPresentacion; - + /// /// rfvCodigoPresentacion control. /// @@ -470,7 +472,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.RequiredFieldValidator rfvCodigoPresentacion; - + /// /// txtPresentacion control. /// @@ -479,7 +481,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.TextBox txtPresentacion; - + /// /// rfvPresentacion control. /// @@ -488,7 +490,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.RequiredFieldValidator rfvPresentacion; - + /// /// btnAgregarPresentacion control. /// @@ -497,7 +499,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Button btnAgregarPresentacion; - + /// /// lblMensagePresentacion control. /// @@ -506,7 +508,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Label lblMensagePresentacion; - + /// /// gdPresentacion control. /// @@ -515,7 +517,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.GridView gdPresentacion; - + /// /// gvAutoAnalizadores control. /// @@ -524,7 +526,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.GridView gvAutoAnalizadores; - + /// /// lblMensajeMuestra1 control. /// @@ -533,7 +535,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.Label lblMensajeMuestra1; - + /// /// ddlMuestra1 control. /// @@ -542,7 +544,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlMuestra1; - + /// /// RangeValidator1 control. /// @@ -551,7 +553,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.RangeValidator RangeValidator1; - + /// /// btnAgregarMuestra control. /// @@ -560,7 +562,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Button btnAgregarMuestra; - + /// /// lblMensajeMuestra control. /// @@ -569,7 +571,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Label lblMensajeMuestra; - + /// /// gvMuestraItem control. /// @@ -578,7 +580,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.GridView gvMuestraItem; - + /// /// pnlVR control. /// @@ -587,7 +589,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Panel pnlVR; - + /// /// pnlNuevoVR control. /// @@ -596,7 +598,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Panel pnlNuevoVR; - + /// /// lblItemVR control. /// @@ -605,7 +607,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.Label lblItemVR; - + /// /// ddlTipoServicio control. /// @@ -614,7 +616,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlTipoServicio; - + /// /// ddlSexo control. /// @@ -623,7 +625,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlSexo; - + /// /// rfvEdadDesde control. /// @@ -632,7 +634,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.RequiredFieldValidator rfvEdadDesde; - + /// /// txtEdadDesde control. /// @@ -641,7 +643,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.HtmlControls.HtmlInputText txtEdadDesde; - + /// /// rfvEdadHasta control. /// @@ -650,7 +652,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.RequiredFieldValidator rfvEdadHasta; - + /// /// txtEdadHasta control. /// @@ -659,7 +661,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.HtmlControls.HtmlInputText txtEdadHasta; - + /// /// ddlUnidadEdad control. /// @@ -668,7 +670,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlUnidadEdad; - + /// /// ddlMetodo control. /// @@ -677,7 +679,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.DropDownList ddlMetodo; - + /// /// lblDecimales control. /// @@ -686,7 +688,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.Label lblDecimales; - + /// /// rdbRango control. /// @@ -695,7 +697,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.RadioButtonList rdbRango; - + /// /// txtValorMinimoVR control. /// @@ -704,7 +706,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.TextBox txtValorMinimoVR; - + /// /// RegularExpressionValidator1 control. /// @@ -713,7 +715,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.RegularExpressionValidator RegularExpressionValidator1; - + /// /// txtValorMaximoVR control. /// @@ -722,7 +724,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.TextBox txtValorMaximoVR; - + /// /// RegularExpressionValidator2 control. /// @@ -731,7 +733,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.RegularExpressionValidator RegularExpressionValidator2; - + /// /// txtObservaciones control. /// @@ -740,7 +742,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.TextBox txtObservaciones; - + /// /// cvObservaciones control. /// @@ -749,7 +751,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.CustomValidator cvObservaciones; - + /// /// cvValores control. /// @@ -758,7 +760,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.CustomValidator cvValores; - + /// /// ddlPresentacionItem control. /// @@ -767,7 +769,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlPresentacionItem; - + /// /// btGuardarVR control. /// @@ -776,7 +778,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Button btGuardarVR; - + /// /// PnlVREfector control. /// @@ -785,7 +787,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Panel PnlVREfector; - + /// /// ddlPresentacionEfector control. /// @@ -794,7 +796,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlPresentacionEfector; - + /// /// btnAgregarVREfector control. /// @@ -803,7 +805,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Button btnAgregarVREfector; - + /// /// ddlPresentacionEfectorDefecto control. /// @@ -812,7 +814,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlPresentacionEfectorDefecto; - + /// /// btnPresentacionDefecto control. /// @@ -821,7 +823,16 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Button btnPresentacionDefecto; - + + /// + /// lblPresentacionDefecto control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::Anthem.Label lblPresentacionDefecto; + /// /// gvListaVR control. /// @@ -830,7 +841,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.GridView gvListaVR; - + /// /// lblMensaje3 control. /// @@ -839,7 +850,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Label lblMensaje3; - + /// /// btnAplicarEfectores control. /// @@ -848,7 +859,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Button btnAplicarEfectores; - + /// /// gvListaVRNP control. /// @@ -857,7 +868,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.GridView gvListaVRNP; - + /// /// lblMensaje2 control. /// @@ -866,7 +877,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Label lblMensaje2; - + /// /// btnAplicarEfectoresNP control. /// @@ -875,7 +886,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Button btnAplicarEfectoresNP; - + /// /// ValidationSummary2 control. /// @@ -884,7 +895,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.ValidationSummary ValidationSummary2; - + /// /// pnlDiagrama control. /// @@ -893,7 +904,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Panel pnlDiagrama; - + /// /// lblItemDiagrama control. /// @@ -902,7 +913,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.Label lblItemDiagrama; - + /// /// txtCodigoDiagrama control. /// @@ -911,7 +922,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.TextBox txtCodigoDiagrama; - + /// /// lblMensajeDiagrama control. /// @@ -920,7 +931,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Label lblMensajeDiagrama; - + /// /// ddlItemDiagrama control. /// @@ -929,7 +940,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlItemDiagrama; - + /// /// rvItem control. /// @@ -938,7 +949,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.RangeValidator rvItem; - + /// /// txtNombreDiagrama control. /// @@ -947,7 +958,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.TextBox txtNombreDiagrama; - + /// /// RequiredFieldValidator1 control. /// @@ -956,7 +967,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.RequiredFieldValidator RequiredFieldValidator1; - + /// /// TxtDatosDiagrama control. /// @@ -965,7 +976,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.HtmlControls.HtmlInputHidden TxtDatosDiagrama; - + /// /// btnGuardarDiagrama control. /// @@ -974,7 +985,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.Button btnGuardarDiagrama; - + /// /// pnlPredefinidos control. /// @@ -983,7 +994,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Panel pnlPredefinidos; - + /// /// lblItemRP control. /// @@ -992,7 +1003,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.Label lblItemRP; - + /// /// txtNombreRP control. /// @@ -1001,7 +1012,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.TextBox txtNombreRP; - + /// /// ddlEfectorItemDeriva control. /// @@ -1010,7 +1021,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlEfectorItemDeriva; - + /// /// btnGuardarRP control. /// @@ -1019,7 +1030,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Button btnGuardarRP; - + /// /// lblMensajeRpD control. /// @@ -1028,7 +1039,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Label lblMensajeRpD; - + /// /// TxtDatosResultados control. /// @@ -1037,7 +1048,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.HtmlControls.HtmlInputHidden TxtDatosResultados; - + /// /// ddlResultadoPorDefecto control. /// @@ -1046,7 +1057,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.DropDownList ddlResultadoPorDefecto; - + /// /// btnGuardarRPDefecto control. /// @@ -1055,7 +1066,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Button btnGuardarRPDefecto; - + /// /// pnlRecomendacion control. /// @@ -1064,7 +1075,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Panel pnlRecomendacion; - + /// /// lblItemRecomendacion control. /// @@ -1073,7 +1084,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.Label lblItemRecomendacion; - + /// /// ddlRecomendacion control. /// @@ -1082,7 +1093,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.DropDownList ddlRecomendacion; - + /// /// rvRecomendacion control. /// @@ -1091,7 +1102,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.RangeValidator rvRecomendacion; - + /// /// btnAgregarRecomendacion control. /// @@ -1100,7 +1111,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.Button btnAgregarRecomendacion; - + /// /// gvListaRecomendacion control. /// @@ -1109,7 +1120,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::Anthem.GridView gvListaRecomendacion; - + /// /// lblItemHiv control. /// @@ -1118,7 +1129,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.Label lblItemHiv; - + /// /// chkCodificaHiv control. /// @@ -1127,7 +1138,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.CheckBox chkCodificaHiv; - + /// /// chkEtiquetaAdicional control. /// @@ -1136,7 +1147,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.CheckBox chkEtiquetaAdicional; - + /// /// btnGuardarHIV control. /// @@ -1145,7 +1156,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.Button btnGuardarHIV; - + /// /// txtLimite control. /// @@ -1154,7 +1165,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.HtmlControls.HtmlInputText txtLimite; - + /// /// rfvLimite control. /// @@ -1163,7 +1174,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.RequiredFieldValidator rfvLimite; - + /// /// lnkRegresar control. /// @@ -1172,7 +1183,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.LinkButton lnkRegresar; - + /// /// btnNuevo control. /// @@ -1181,7 +1192,7 @@ public partial class ItemEdit2 { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.Button btnNuevo; - + /// /// ValidationSummary1 control. ///