Beispiel #1
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;
     }
 }
Beispiel #2
0
 public static void Update(NotasDeCompra notasDeCompra, DbTransaction transaction)
 {
     notasDeCompra.Update(transaction);
 }
Beispiel #3
0
 public static void Update(NotasDeCompra notasDeCompra)
 {
     notasDeCompra.Update();
 }