public void Editar() { try { if (!isMViewShow) { MView = new COM000MView(); MView.Presenter = this; MView.LoadView(this.CCOT_Tipo); } Item = Client.GetOneCab_Cotizacion_OV(Delfin.Controls.Entorno.ItemEmpresa.EMPR_Codigo, Delfin.Controls.Entorno.ItemSucursal.SUCR_Codigo, Item.CCOT_Numero, Item.CCOT_Tipo); if (Item != null) { MView.ClearItem(); this.Item.AUDI_UsrMod = Session.UserName; this.Item.AUDI_FecMod = Session.Fecha; this.Item.Instance = Infrastructure.Aspect.BusinessEntity.InstanceEntity.Modified; MView.SetItem(); isMViewShow = true; ((COM000MView)MView).Show(); ((COM000MView)MView).BringToFront(); } else { Infrastructure.WinForms.Controls.Dialogos.MostrarMensajeInformacion(Title, "Debe seleccionar un elemento de la grilla"); } } catch (Exception ex) { Infrastructure.WinForms.Controls.Dialogos.MostrarMensajeError(Title, Infrastructure.Aspect.Constants.Mensajes.EditPresenter, ex); } }
public void Nuevo() { try { if (!isMViewShow) { MView = new COM000MView(); MView.Presenter = this; MView.LoadView(this.CCOT_Tipo); } MView.ClearItem(); this.Item = new Cab_Cotizacion_OV(); this.Item.CCOT_Tipo = CCOT_Tipo; this.Item.CCOT_Version = 1; this.Item.CCOT_FecEmi = Session.Fecha; this.Item.EMPR_Codigo = Controls.Entorno.ItemEmpresa.EMPR_Codigo; this.Item.SUCR_Codigo = Controls.Entorno.ItemSucursal.SUCR_Codigo; this.Item.AUDI_UsrCrea = Session.UserName; this.Item.AUDI_FecCrea = Session.Fecha; this.Item.Instance = Infrastructure.Aspect.BusinessEntity.InstanceEntity.Added; MView.SetItem(); isMViewShow = true; ((COM000MView)MView).Show(); ((COM000MView)MView).BringToFront(); } catch (Exception ex) { Infrastructure.WinForms.Controls.Dialogos.MostrarMensajeError(Title, Infrastructure.Aspect.Constants.Mensajes.NewPresenter, ex); } }