Exemplo n.º 1
0
 private void LoadNota(string NotaID)
 {
     try
     {
         NotasDeCompra nota = NotasDeCompra.Get(int.Parse(NotaID));
         this.drpdlProveedor.SelectedValue = nota.ProveedorID.ToString();
         this.drpdlProveedor_SelectedIndexChanged(null, null);
         this.drpdlCiclo.SelectedValue  = nota.CicloID.ToString();
         this.PopCalendar3.SelectedDate = Utils.converttoshortFormatfromdbFormat(nota.Fecha.ToString());
         this.txtNumNota.Text           = nota.Folio.ToString();
         this.ddlTipoDeMoneda.DataBind();
         this.ddlTipoDeMoneda.SelectedValue = nota.TipomonedaID.ToString();
         this.ActualizaTotales();
     }
     catch (System.Exception ex)
     {
         Logger.Instance.LogException(Logger.typeUserActions.SELECT, "LoadNota", this.Request.Url.ToString(), ref ex);
     }
 }
Exemplo n.º 2
0
 protected void btnGuardaNotaCompra_Click(object sender, EventArgs e)
 {
     try
     {
         NotasDeCompra nota = NotasDeCompra.Get(int.Parse(this.txtNotaIDToMod.Text));
         nota.ProveedorID   = int.Parse(this.drpdlProveedor.SelectedValue);
         nota.CicloID       = int.Parse(this.drpdlCiclo.SelectedValue);
         nota.Fecha         = DateTime.Parse(Utils.converttoLongDBFormat(this.txtFecha.Text));
         nota.Folio         = this.txtNumNota.Text;
         nota.Observaciones = this.txtObservaciones.Text;
         nota.Fechapago     = DateTime.Parse(Utils.converttoLongDBFormat(this.txtFechapago.Text));
         nota.TipomonedaID  = int.Parse(this.ddlTipoDeMoneda.SelectedItem.Value);
         nota.Update();
     }
     catch (System.Exception ex)
     {
         Logger.Instance.LogException(Logger.typeUserActions.UPDATE, "err updating NOTA", ref ex);
         this.imgBien.Visible             = false;
         this.imgMal.Visible              = this.pnlNotaCompraResult.Visible = true;
         this.lblNotaCompraResult.Visible = true;
         this.lblNotaCompraResult.Text    = "ESTO ES VERGONZOSO, HA OCURRIDO UNA EXCEPCION Y NO SE PUDO GUARDAR LA NOTA.<BR>POR FAVOR ESPERE UN MOMENTO E INTENTELO DE NUEVO<BR>Descripción del error<BR>" + ex.Message;
     }
 }