private void CargarFacturaFutura(string periodo, int idSocio) { decimal NetoConIVA = 0; decimal NetoSinIVA = 0; int idMedidor = 0; facturas oFactura = new facturas(); FacturasImplement oFacturaImplement = new FacturasImplement(); oFactura = oFacturaImplement.Get(_idFactura); _oFactura = new facturas(); _oFactura.id_socio = _idSocio; //oFactura.id_medicion Ver como soluciono el idMedicion _oFactura.id_estadoPago = 1; //Impaga _oFactura.id_tarifa = 0; //aun no se carga _oFactura.id_convenio = 0; //Aun no se carga _oFactura.fechaPago = null; _oFactura.cobrado = 0; _oFactura.neto1 = 0; _oFactura.neto2 = 0; _oFactura.importeNeto = 0; _oFactura.importeTotal = 0; _oFactura.id_medicion = 0; // obtengo solo los conceptos activos IList listaConceptos = new ConceptoImplement().GetActivosAll(); SocioConexionImplement oSocioConexionImpl = new SocioConexionImplement(); DataTable DTUsuariosAFacturar = oSocioConexionImpl.GetSociosAFacturar(periodo, idSocio); if (DTUsuariosAFacturar.Rows[0]["medidor"].ToString() != "") { socios_mediciones oSocioMedicionActual = new socios_mediciones(); SocioMedicionImplement oSocioMedicionImplement = new SocioMedicionImplement(); oSocioMedicionActual = oSocioMedicionImplement.ultimaMedicion(int.Parse(DTUsuariosAFacturar.Rows[0]["id_socio"].ToString())); socios_mediciones oSocioMedicionNew = new socios_mediciones(); oSocioMedicionNew.fecha_lectura = null; oSocioMedicionNew.id_socio = _idSocio; decimal consumo = 0; if (oSocioMedicionActual != null) { consumo = (decimal)decimal.Parse((oSocioMedicionActual.consumo * 0.75).ToString()); oSocioMedicionNew.consumo = (int)Math.Truncate(consumo); oSocioMedicionNew.lectura = oSocioMedicionActual.lectura + oSocioMedicionNew.consumo; } else { oSocioMedicionNew.consumo = 0; oSocioMedicionNew.lectura = 0; } idMedidor = oSocioMedicionImplement.Save(oSocioMedicionNew); } _oFactura.id_medicion = idMedidor;//Cargo 0 si no tiene medidor // recorre toda la base de conceptos foreach (cod_conceptos oConcepto in listaConceptos) { bool CorrespondeFacturar = false; if (_oFactura.id_medicion.Value != 0) { //SocioMedicionImplement oSosioMedicionImpl = new SocioMedicionImplement(); //socios_mediciones oSocioMedicion = new socios_mediciones(); //oSocioMedicion = oSosioMedicionImpl.Get(oFactura.id_medicion.Value); } acciones oAccion = new acciones(); conceptos_particulares oConceptoParticular = new conceptos_particulares(); conceptosParticularesImplement oConceptoParticularImplement = new conceptosParticularesImplement(); AccionImplement oAccionesImplement = new AccionImplement(); if (oConcepto.aplicacion == 2) { // si concepto Particular oConceptoParticular = oConceptoParticularImplement.GetByFilter(idSocio, oConcepto.id_concepto, _oFactura.id_periodo); if (oConceptoParticular != null) { CorrespondeFacturar = true; } else { // No encontrado entonces no corresponde facturar CorrespondeFacturar = false; } } else { //Concepto Activo y no particular entonces corresponde facturar CorrespondeFacturar = true; } if (CorrespondeFacturar) { facturas_detalles oDetalle = new facturas_detalles(); FacturasDetallesImplement oFacturasDetallesImplement = new FacturasDetallesImplement(); //ConvenioImplement oConvenioImplement = new ConvenioImplement(); CalculosFacturacionFormulas oCalculosFacturacionFormulas = new CalculosFacturacionFormulas(); oDetalle = oCalculosFacturacionFormulas.getDetalle(idSocio, decimal.Parse(DTUsuariosAFacturar.Rows[0]["cargo_fijo"].ToString()), decimal.Parse(DTUsuariosAFacturar.Rows[0]["abono"].ToString()), decimal.Parse(DTUsuariosAFacturar.Rows[0]["valor_m3"].ToString()), oConcepto, _oFactura, oConceptoParticular); if (oDetalle.importe != 0) { AgregarDetalle(oDetalle); } // Calcula los subtotales separados para los conceptos con y sin IVA if (oConcepto.aplicar_iva.Value) { NetoConIVA = NetoConIVA + oDetalle.importe; } else { NetoSinIVA = NetoSinIVA + oDetalle.importe; } // Calcula los campos Neto1 y Neto2 utilizados en los // cálculos de intereses if (oConcepto.aplicar_recargo.Value) { oFactura.neto1 = oFactura.neto1.Value + Convert.ToSingle(oDetalle.importe); } else { oFactura.neto2 = oFactura.neto2.Value + Convert.ToSingle(oDetalle.importe); } } } cod_conceptos oConceptoIVA = new cod_conceptos(); ConceptoImplement oConceptoImplement = new ConceptoImplement(); facturas_detalles oDetalleFac = new facturas_detalles(); oConceptoIVA = oConceptoImplement.Get(23);//concepto IVA es el 23 oDetalleFac.id_concepto = oConceptoIVA.id_concepto; oDetalleFac.id_factura = 0; oDetalleFac.idOrden = oConceptoIVA.orden_concepto; oDetalleFac.idTipo = 0; oDetalleFac.importe = decimal.Round(NetoConIVA * decimal.Parse(DTUsuariosAFacturar.Rows[0]["iva"].ToString()) / 100, 2); AgregarDetalle(oDetalleFac); }
private void Refacturar1() { decimal NetoConIVA = 0; decimal NetoSinIVA = 0; decimal SubTotal = 0; SocioConexionImplement oSocioConexionImplement = new SocioConexionImplement(); DataTable DTMedidores = oSocioConexionImplement.GetEstadosMedidores(); IList listaConceptos = new ConceptoImplement().GetActivosAll(); DataTable DTUsuariosAFacturar = oSocioConexionImplement.GetSociosAFacturar(_periodo, _idSocio); _oFactura = new facturas(); _oFactura.id_socio = _idSocio; //oFactura.id_medicion Ver como soluciono el idMedicion _oFactura.id_estadoPago = 1; //Impaga _oFactura.id_tarifa = 0; //aun no se carga _oFactura.id_convenio = 0; //Aun no se carga _oFactura.fechaPago = null; _oFactura.cobrado = 0; _oFactura.neto1 = 0; _oFactura.neto2 = 0; _oFactura.importeNeto = 0; _oFactura.importeTotal = 0; _oFactura.id_medicion = 0; if (DTUsuariosAFacturar.Rows[0]["medidor"].ToString() != "") { //preguntar como hago con la medicion? //socios_mediciones oSocioMedicionActual = new socios_mediciones(); //SocioMedicionImplement oSocioMedicionImplement = new SocioMedicionImplement(); //oSocioMedicionActual = oSocioMedicionImplement.ultimaMedicion(_idSocio); //socios_mediciones oSocioMedicionNew = new socios_mediciones(); //oSocioMedicionNew.fecha_lectura = null; //oSocioMedicionNew.id_socio =_idSocio; NetoConIVA = 0; NetoSinIVA = 0; foreach (cod_conceptos oConcepto in listaConceptos) { bool CorrespondeFacturar = false; if (DTUsuariosAFacturar.Rows[0]["medidor"].ToString() != "") { //SocioMedicionImplement oSosioMedicionImpl = new SocioMedicionImplement(); //socios_mediciones oSocioMedicion = new socios_mediciones(); //oSocioMedicion = oSosioMedicionImpl.Get(oFactura.id_medicion.Value); } acciones oAccion = new acciones(); conceptos_particulares oConceptoParticular = new conceptos_particulares(); conceptosParticularesImplement oConceptoParticularImplement = new conceptosParticularesImplement(); AccionImplement oAccionesImplement = new AccionImplement(); if (oConcepto.aplicacion == 2) { // si concepto Particular oConceptoParticular = oConceptoParticularImplement.GetByFilter(_idSocio, oConcepto.id_concepto, _periodo); if (oConceptoParticular != null) { CorrespondeFacturar = true; } else { // No encontrado entonces no corresponde facturar CorrespondeFacturar = false; } } else { //Concepto Activo y no particular entonces corresponde facturar CorrespondeFacturar = true; } if (CorrespondeFacturar) { facturas_detalles oDetalle = new facturas_detalles(); FacturasDetallesImplement oFacturasDetallesImplement = new FacturasDetallesImplement(); //ConvenioImplement oConvenioImplement = new ConvenioImplement(); CalculosFacturacionFormulas oCalculosFacturacionFormulas = new CalculosFacturacionFormulas(); oDetalle = oCalculosFacturacionFormulas.getDetalle(_idSocio, decimal.Parse(DTUsuariosAFacturar.Rows[0]["cargo_fijo"].ToString()), decimal.Parse(DTUsuariosAFacturar.Rows[0]["abono"].ToString()), decimal.Parse(DTUsuariosAFacturar.Rows[0]["valor_m3"].ToString()), oConcepto, _oFactura, oConceptoParticular); if (oDetalle.importe != 0) { AgregarDetalle(oDetalle); } // Calcula los subtotales separados para los conceptos con y sin IVA if (oConcepto.aplicar_iva.Value) { NetoConIVA = NetoConIVA + oDetalle.importe; } else { NetoSinIVA = NetoSinIVA + oDetalle.importe; } // Calcula los campos Neto1 y Neto2 utilizados en los // cálculos de intereses if (oConcepto.aplicar_recargo.Value) { _oFactura.neto1 = _oFactura.neto1.Value + Convert.ToSingle(oDetalle.importe); } else { _oFactura.neto2 = _oFactura.neto2.Value + Convert.ToSingle(oDetalle.importe); } } } // Obtiene el subtotal general como suma de los // subtotales parciales con y sin IVA SubTotal = NetoConIVA + NetoSinIVA; // Redondea el subtotal a dos dígitos SubTotal = decimal.Round(SubTotal, 2); // Registra el subtotal general _oFactura.importeNeto = Convert.ToSingle(SubTotal); // Calcula IVA (sólo para los conceptos que corresponde) facturas_detalles oFacDetalle = new facturas_detalles(); FacturasDetallesImplement oFacDetalleImplement = new FacturasDetallesImplement(); cod_conceptos oConceptoIVA = new cod_conceptos(); ConceptoImplement oConceptoImplement = new ConceptoImplement(); oConceptoIVA = oConceptoImplement.Get(23);//concepto IVA es el 23 oFacDetalle.id_concepto = oConceptoIVA.id_concepto; oFacDetalle.id_factura = 0; oFacDetalle.idOrden = oConceptoIVA.orden_concepto; oFacDetalle.idTipo = 0; oFacDetalle.importe = decimal.Round(NetoConIVA * decimal.Parse(DTUsuariosAFacturar.Rows[0]["iva"].ToString()) / 100, 2); AgregarDetalle(oFacDetalle); // Calcula Total _oFactura.importeTotal = _oFactura.importeNeto.Value + Convert.ToSingle(oFacDetalle.importe); //este ahi que ver el tipo de dato //// Generar entradas en la base de CuentasCorrientes //CuentaCorrienteImplement oCuentaCorrienteImplement = new CuentaCorrienteImplement(); //cuentas_corrientes oCuentaCorriente = new cuentas_corrientes(); //oCuentaCorriente.fecha = DateTime.Now; //oCuentaCorriente.id_factura = _idFactura; //oCuentaCorriente.id_movimiento = 1; //oCuentaCorriente.id_socio = _idSocio; //oCuentaCorriente.importe_credito = 0; //oCuentaCorriente.importe_saldo = 0; //oCuentaCorriente.importe_debito = Convert.ToDecimal(oFactura.importeTotal); //oCuentaCorriente.id_cobranza = 0; //oCuentaCorrienteImplement.Save(oCuentaCorriente); } }
private void Iniciar() { sys_configuracion oSysConfig = new sys_configuracion(); SysConfigImplement oSysConfigImplement = new SysConfigImplement(); oSysConfig = oSysConfigImplement.GetByNombre("CantVencimientos"); int CantUsuarios = 0; decimal NetoConIVA = 0; decimal NetoSinIVA = 0; decimal SubTotal = 0; switch (int.Parse(oSysConfig.valor)) { case 1: //No hace nada porque el primer se establece por defecto break; case 2: for (int i = 1; i <= (int.Parse(this.nudCantidad.Value.ToString()) - 1); i++) { DateTimePicker fecha1 = (DateTimePicker)tcPeriodos.Controls.Find("dtpPrimerVencimiento" + i, true)[0]; DateTimePicker fecha2 = (DateTimePicker)tcPeriodos.Controls.Find("dtpSegundoVencimiento" + i, true)[0]; if (fecha2.Value <= fecha1.Value) { string msg = "Debe establecer las fechas para los 2 vencimientos y éstas " + "no pueden ser iguales, controlar fechas indicadas en el periodo " + (i - 1).ToString(); MessageBox.Show(msg); } } break; case 3: for (int i = 1; i <= (int.Parse(this.nudCantidad.Value.ToString()) + 1); i++) { DateTimePicker fecha1 = (DateTimePicker)tcPeriodos.Controls.Find("dtpPrimerVencimiento" + i, true)[0]; DateTimePicker fecha2 = (DateTimePicker)tcPeriodos.Controls.Find("dtpSegundoVencimiento" + i, true)[0]; if (fecha2.Value <= fecha1.Value) { string msg = "Debe establecer las fechas para los 2 vencimientos y éstas " + "no pueden ser iguales, controlar fechas indicadas en el periodo " + (i - 1).ToString(); MessageBox.Show(msg); } } break; } // Verificar que se hayan cargado los estados de los medidores SocioConexionImplement oSocioConexionImplement = new SocioConexionImplement(); DataTable DTMedidores = oSocioConexionImplement.GetEstadosMedidores(); if (DTMedidores.Rows.Count > 0) { string msg2 = "No se puede efectuar el proceso de facturación porque existen " + "socios de servicio medido que no tienen informado el estado del " + "medidor. \n El estado del medidor debe ser " + "informado siempre, si por algún motivo no se efectuó la lectura, " + "coloque un valor estimado en el campo 'Lectura' pero no informe " + "la fecha de lectura en el campo 'Fecha Lectura', en la factura " + "se informará al socio que el valor de M3 consumidos fué estimado /n" + "El proceso de facturación no puede continuar."; MessageBox.Show(msg2); } // Pide confirmar el proceso de facturación string msj2 = ""; if (int.Parse(this.nudCantidad.Value.ToString()) > 1) { msj2 = "Está Ud. realmente seguro de querer comenzar el proceso de " + "facturación ?. \nEste proceso no puede ser " + "cancelado y al facturarse más de un período sólo puede " + "anularse la facturación del último período pero no de los " + "períodos anteriores"; } else { msj2 = "Está Ud. realmente seguro de querer comenzar el proceso de " + "facturación ?. \nEste proceso no puede ser " + "cancelado, aunque sí es reversible, es decir que una vez " + "finalizado el proceso se puede anular \n toda la facturación " + "y volver a efectuarla"; } DialogResult dialogResult = MessageBox.Show(msj2, "Confirmar facturación", MessageBoxButtons.YesNo); if (dialogResult == DialogResult.Yes) { // Hay que inhabilitar los forms porque el proceso no puede detenerse DeshabilitarControles(); // Guarda la cantidad de usuarios para utilizar la misma cantidad en // todos los períodos a facturar // obtengo solo los conceptos activos IList listaConceptos = new ConceptoImplement().GetActivosAll(); for (int i = 0; i < (int.Parse(this.nudCantidad.Value.ToString())); i++) { TextBox textPeriodo = (TextBox)this.Controls.Find("txtPeriodo" + i, true)[0]; string idPeriodo = textPeriodo.Text.Substring(3, 4) + textPeriodo.Text.Substring(0, 2); DataTable DTUsuariosAFacturar = oSocioConexionImplement.GetSociosAFacturar(idPeriodo); //Repetir el proceso de facturación para todas las solapas (periodos) seleccionados CantUsuarios = DTUsuariosAFacturar.Rows.Count; this.txtUsuariosAFacturar.Text = CantUsuarios.ToString(); this.txtUsuariosFacturados.Text = "0"; this.txtUsuariosFaltantes.Text = CantUsuarios.ToString(); this.pbEstado.Value = 0; // Cartel indicativo del proceso que se está efectuando this.tcPeriodos.TabIndex = i; // Guarda el número 'ProxFactura' del proceso anterior por si se desea // anular la facturación en curso (obviamente luego que termine) //sys_configuracion oSysProxFacturaAnterior = new sys_configuracion(); //oSysProxFacturaAnterior = oSysConfigImplement.GetByNombre("ProxFacturaAnt"); //sys_configuracion oSysProxFactura = new sys_configuracion(); //oSysProxFactura = oSysConfigImplement.GetByNombre("ProxFactura"); //oSysProxFacturaAnterior.valor = oSysProxFactura.valor; //oSysConfigImplement.Update(oSysProxFacturaAnterior); // Guardo las fechas de vencimiento en la tabla periodos periodos oPeriodo = new periodos(); PeriodosImplement oPeriodosImplement = new PeriodosImplement(); oPeriodo = oPeriodosImplement.Get(idPeriodo); this.txtProceso.Text = "Se esta procesando el periodo " + idPeriodo; this.txtProceso.Visible = true; Application.DoEvents(); oPeriodo.fecha_facturacion = this.dtpFecha.Value; DateTimePicker dtpPrimerVenc = (DateTimePicker)this.Controls.Find("dtpPrimerVencimiento" + i, true)[0]; oPeriodo.fecha_primer_venc = dtpPrimerVenc.Value; DateTimePicker dtpSegundoVenc = (DateTimePicker)this.Controls.Find("dtpSegundoVencimiento" + i, true)[0]; if (dtpSegundoVenc.Value.ToString() != "") { oPeriodo.fecha_segundo_venc = dtpSegundoVenc.Value; } oPeriodo.fecha_tercer_venc = null; oPeriodo.facturado = true; FacturasImplement oFacturasImplement = new FacturasImplement(); int cantUsuario = DTUsuariosAFacturar.Rows.Count; this.pbEstado.Maximum = cantUsuario; for (int j = 0; j < cantUsuario; j++) { this.pbEstado.Value = j; facturas oFactura = new facturas(); FacturasImplement oFacturaImplement = new FacturasImplement(); oFactura.id_periodo = idPeriodo; oFactura.id_socio = int.Parse(DTUsuariosAFacturar.Rows[j]["id_socio"].ToString()); //oFactura.id_medicion Ver como soluciono el idMedicion oFactura.id_estadoPago = 1; //Impaga oFactura.id_tarifa = 0; //aun no se carga oFactura.id_convenio = 0; //Aun no se carga oFactura.fechaPago = null; oFactura.cobrado = 0; oFactura.neto1 = 0; oFactura.neto2 = 0; oFactura.importeNeto = 0; oFactura.importeTotal = 0; int idFactura = 0; idFactura = oFacturasImplement.Save(oFactura); /* Si corresponde calcula los consumos estimados, además transfiere * los valores de los campos de datos actuales a los campos de * los datos anteriores*/ int idMedidor = 0; if (DTUsuariosAFacturar.Rows[j]["medidor"].ToString() != "") { socios_mediciones oSocioMedicionActual = new socios_mediciones(); SocioMedicionImplement oSocioMedicionImplement = new SocioMedicionImplement(); oSocioMedicionActual = oSocioMedicionImplement.ultimaMedicion(int.Parse(DTUsuariosAFacturar.Rows[j]["id_socio"].ToString())); socios_mediciones oSocioMedicionNew = new socios_mediciones(); oSocioMedicionNew.fecha_lectura = null; oSocioMedicionNew.id_socio = int.Parse(DTUsuariosAFacturar.Rows[j]["id_socio"].ToString()); if (i <= (int.Parse(this.nudCantidad.Value.ToString()) - 1)) { decimal consumo = 0; if (oSocioMedicionActual != null) { consumo = (decimal)decimal.Parse((oSocioMedicionActual.consumo * 0.75).ToString()); oSocioMedicionNew.consumo = (int)Math.Truncate(consumo); oSocioMedicionNew.lectura = oSocioMedicionActual.lectura + oSocioMedicionNew.consumo; } else { oSocioMedicionNew.consumo = 0; oSocioMedicionNew.lectura = 0; } } else { oSocioMedicionNew.consumo = 0; oSocioMedicionNew.lectura = 0; } idMedidor = oSocioMedicionImplement.Save(oSocioMedicionNew); } oFactura.id_medicion = idMedidor; //Cargo 0 si no tiene medidor // Limpia las variables de subtotales con y sin IVA NetoConIVA = 0; NetoSinIVA = 0; //Para cada socio, recorre toda la base de conceptos foreach (cod_conceptos oConcepto in listaConceptos) { bool CorrespondeFacturar = false; if (oFactura.id_medicion.Value != 0) { //SocioMedicionImplement oSosioMedicionImpl = new SocioMedicionImplement(); //socios_mediciones oSocioMedicion = new socios_mediciones(); //oSocioMedicion = oSosioMedicionImpl.Get(oFactura.id_medicion.Value); } acciones oAccion = new acciones(); conceptos_particulares oConceptoParticular = new conceptos_particulares(); conceptosParticularesImplement oConceptoParticularImplement = new conceptosParticularesImplement(); AccionImplement oAccionesImplement = new AccionImplement(); if (oConcepto.aplicacion == 2) { // si concepto Particular oConceptoParticular = oConceptoParticularImplement.GetByFilter(int.Parse(DTUsuariosAFacturar.Rows[j]["id_socio"].ToString()), oConcepto.id_concepto, oFactura.id_periodo); if (oConceptoParticular != null) { CorrespondeFacturar = true; } else { // No encontrado entonces no corresponde facturar CorrespondeFacturar = false; } } else { //Concepto Activo y no particular entonces corresponde facturar CorrespondeFacturar = true; } if (CorrespondeFacturar) { facturas_detalles oDetalle = new facturas_detalles(); FacturasDetallesImplement oFacturasDetallesImplement = new FacturasDetallesImplement(); //ConvenioImplement oConvenioImplement = new ConvenioImplement(); CalculosFacturacionFormulas oCalculosFacturacionFormulas = new CalculosFacturacionFormulas(); oDetalle = oCalculosFacturacionFormulas.getDetalle(int.Parse(DTUsuariosAFacturar.Rows[j]["id_socio"].ToString()), decimal.Parse(DTUsuariosAFacturar.Rows[j]["cargo_fijo"].ToString()), decimal.Parse(DTUsuariosAFacturar.Rows[j]["abono"].ToString()), decimal.Parse(DTUsuariosAFacturar.Rows[j]["valor_m3"].ToString()), oConcepto, oFactura, oConceptoParticular); if (oDetalle.importe != 0) { oFacturasDetallesImplement.Save(oDetalle); } this.txtUsuariosFacturados.Text = j.ToString(); this.txtUsuariosFaltantes.Text = (int.Parse(this.txtUsuariosAFacturar.Text) - j).ToString(); Application.DoEvents(); // Calcula los subtotales separados para los conceptos con y sin IVA if (oConcepto.aplicar_iva.Value) { NetoConIVA = NetoConIVA + oDetalle.importe; } else { NetoSinIVA = NetoSinIVA + oDetalle.importe; } // Calcula los campos Neto1 y Neto2 utilizados en los // cálculos de intereses if (oConcepto.aplicar_recargo.Value) { oFactura.neto1 = oFactura.neto1.Value + Convert.ToSingle(oDetalle.importe); } else { oFactura.neto2 = oFactura.neto2.Value + Convert.ToSingle(oDetalle.importe); } } } // Obtiene el subtotal general como suma de los // subtotales parciales con y sin IVA SubTotal = NetoConIVA + NetoSinIVA; // Redondea el subtotal a dos dígitos SubTotal = decimal.Round(SubTotal, 2); // Registra el subtotal general oFactura.importeNeto = Convert.ToSingle(SubTotal); // Calcula IVA (sólo para los conceptos que corresponde) facturas_detalles oFacDetalle = new facturas_detalles(); FacturasDetallesImplement oFacDetalleImplement = new FacturasDetallesImplement(); cod_conceptos oConceptoIVA = new cod_conceptos(); ConceptoImplement oConceptoImplement = new ConceptoImplement(); oConceptoIVA = oConceptoImplement.Get(23);//concepto IVA es el 23 oFacDetalle.id_concepto = oConceptoIVA.id_concepto; oFacDetalle.id_factura = oFactura.id_factura; oFacDetalle.idOrden = oConceptoIVA.orden_concepto; oFacDetalle.idTipo = 0; oFacDetalle.importe = decimal.Round(NetoConIVA * decimal.Parse(DTUsuariosAFacturar.Rows[j]["iva"].ToString()) / 100, 2); oFacDetalleImplement.Save(oFacDetalle); // Calcula Total oFactura.importeTotal = oFactura.importeNeto.Value + Convert.ToSingle(oFacDetalle.importe); //este ahi que ver el tipo de dato oFactura.id_factura = idFactura; oFacturaImplement.Update(oFactura); // Generar entradas en la base de CuentasCorrientes CuentaCorrienteImplement oCuentaCorrienteImplement = new CuentaCorrienteImplement(); cuentas_corrientes oCuentaCorriente = new cuentas_corrientes(); oCuentaCorriente.fecha = DateTime.Now; oCuentaCorriente.id_factura = idFactura; oCuentaCorriente.id_movimiento = 1; oCuentaCorriente.id_socio = int.Parse(DTUsuariosAFacturar.Rows[j]["id_socio"].ToString()); oCuentaCorriente.importe_credito = 0; oCuentaCorriente.importe_saldo = 0; oCuentaCorriente.importe_debito = Convert.ToDecimal(oFactura.importeTotal); oCuentaCorriente.id_cobranza = 0; oCuentaCorrienteImplement.Save(oCuentaCorriente); // } } } } }