private void btnELIMINAR_Click_1(object sender, EventArgs e) { if (dgvORDENESCOMPRA.CurrentRow == null) { MessageBox.Show("Debe seleccionar un rubro"); return; } MODELO.Factura oORDEN = (MODELO.Factura)dgvORDENESCOMPRA.CurrentRow.DataBoundItem; DialogResult dr = MessageBox.Show("¿Confirma que desea eliminar " + oORDEN.NroOrden + "?", "CONFIRMA", MessageBoxButtons.YesNo); if (dr == DialogResult.Yes) { MODELO.AuditoriaOC oAuditoria = new MODELO.AuditoriaOC(); oAuditoria.FechayHora = System.DateTime.Now; oAuditoria.Movimiento = "Baja"; oAuditoria.Username = "******"; oAuditoria.NroOrden = oORDEN.NroOrden; oAuditoria.Proveedor = oORDEN.Proveedor; cAuditoria.AGREGAR_AUDITORIA(oAuditoria); cCOMPRA.eliminarOrden(oORDEN); ARMA_GRILLA(); } }
private void btnELIMINAR_Click(object sender, EventArgs e) { if (dgvMATERIALES.CurrentRow == null) { MessageBox.Show("Debe seleccionar un material"); return; } MODELO.Materiales oMATERIAL = (MODELO.Materiales)dgvMATERIALES.CurrentRow.DataBoundItem; DialogResult dr = MessageBox.Show("¿Confirma que desea eliminar " + oMATERIAL.DESCRIPCION_LARGA + "?", "CONFIRMA", MessageBoxButtons.YesNo); if (dr == DialogResult.Yes) { MODELO.AuditoriaMateriales oAuditoria = new MODELO.AuditoriaMateriales(); oAuditoria.FechayHora = System.DateTime.Now; oAuditoria.Movimiento = "Baja"; oAuditoria.Username = "******"; oAuditoria.COD_MATERIAL = oMATERIAL.COD_MATERIAL; oAuditoria.DESCRIPCION_CORTA = oMATERIAL.DESCRIPCION_CORTA; oAuditoria.DESCRIPCION_LARGA = oMATERIAL.DESCRIPCION_LARGA; oAuditoria.ULTIMA_MODIFICACION = oMATERIAL.ULTIMA_MODIFICACION; oAuditoria.PUC = oMATERIAL.PUC; oAuditoria.MAXIMO = oMATERIAL.MAXIMO; oAuditoria.MINIMO = oMATERIAL.MINIMO; //oAuditoria.CLASE = oMATERIAL.CLASE; // oAuditoria.SUBCLASE = oMATERIAL.SUBCLASE; // oAuditoria.PROVEEDOR = oMATERIAL.PROVEEDOR; oAuditoria.GANANCIA = oMATERIAL.GANANCIA; //// oAuditoria.IVA = oMATERIAL.IVA; oAuditoria.STOCK = oMATERIAL.STOCK; cAuditoria.AGREGAR_AUDITORIA(oAuditoria); cMateriales.eliminarMateriales(oMATERIAL); ARMO_GRILLA(); } }
public void AGREGAR_AUDITORIA(string movimiento, MODELO.Factura oORDEN) { MODELO.AuditoriaOC oAuditoria = new MODELO.AuditoriaOC(); oAuditoria.FechayHora = System.DateTime.Now; oAuditoria.Movimiento = movimiento; oAuditoria.Username = "******"; oAuditoria.NroOrden = oORDEN.NroOrden; oAuditoria.Proveedor = oORDEN.Proveedor; cAuditoria.AGREGAR_AUDITORIA(oAuditoria); }
public void AGREGAR_AUDITORIA(string movimiento, MODELO.Venta oVENTA) { MODELO.AuditoriaVenta oAuditoria = new MODELO.AuditoriaVenta(); oAuditoria.FechayHora = dtpFECHA.Value; oAuditoria.Movimiento = movimiento; oAuditoria.Username = "******"; oAuditoria.codigo = oVENTA.codigo; oAuditoria.nroFactura = oVENTA.nroFactura; oAuditoria.Cliente = oVENTA.Cliente; oAuditoria.Fecha = oVENTA.Fecha; oAuditoria.Importe = oVENTA.Importe; oAuditoria.IvaTotal = oVENTA.IvaTotal; oAuditoria.DescuentoTotal = oVENTA.DescuentoTotal; cAuditoria.AGREGAR_AUDITORIA(oAuditoria); }
public void AGREGAR_AUDITORIA(string movimiento, MODELO.Materiales oMATERIAL) { MODELO.AuditoriaMateriales oAuditoria = new MODELO.AuditoriaMateriales(); oAuditoria.FechayHora = System.DateTime.Now; oAuditoria.Movimiento = movimiento; oAuditoria.Username = "******"; oAuditoria.COD_MATERIAL = oMATERIAL.COD_MATERIAL; oAuditoria.DESCRIPCION_CORTA = oMATERIAL.DESCRIPCION_CORTA; oAuditoria.DESCRIPCION_LARGA = oMATERIAL.DESCRIPCION_LARGA; oAuditoria.ULTIMA_MODIFICACION = oMATERIAL.ULTIMA_MODIFICACION; oAuditoria.PUC = oMATERIAL.PUC; oAuditoria.MAXIMO = oMATERIAL.MAXIMO; oAuditoria.MINIMO = oMATERIAL.MINIMO; // oAuditoria.CLASE = oMATERIAL.CLASE; // oAuditoria.SUBCLASE = oMATERIAL.SUBCLASE; // oAuditoria.PROVEEDOR = oMATERIAL.PROVEEDOR; oAuditoria.GANANCIA = oMATERIAL.GANANCIA; ///// oAuditoria.IVA = oMATERIAL.IVA; oAuditoria.STOCK = oMATERIAL.STOCK; cAuditoria.AGREGAR_AUDITORIA(oAuditoria); }
private void btnELIMINAR_Click(object sender, EventArgs e) { if (dgvVENTAS.CurrentRow == null) { MessageBox.Show("Debe seleccionar una venta"); return; } MODELO.Venta oVENTA = (MODELO.Venta)dgvVENTAS.CurrentRow.DataBoundItem; cVENTA.eliminarOrdenVenta(oVENTA); MODELO.AuditoriaVenta oAuditoria = new MODELO.AuditoriaVenta(); oAuditoria.FechayHora = System.DateTime.Now; oAuditoria.Movimiento = "Baja"; oAuditoria.Username = "******"; oAuditoria.codigo = oVENTA.codigo; oAuditoria.nroFactura = oVENTA.nroFactura; oAuditoria.Cliente = oVENTA.Cliente; oAuditoria.Fecha = oVENTA.Fecha; oAuditoria.Importe = oVENTA.Importe; oAuditoria.IvaTotal = oVENTA.IvaTotal; oAuditoria.DescuentoTotal = oVENTA.DescuentoTotal; cAUDITORIA.AGREGAR_AUDITORIA(oAuditoria); }