Exemplo n.º 1
0
 public static ResAcc <int> GenerarPago(int iVentaID, decimal mImporte, int iFormaDePagoID)
 {
     return(VentasProc.GenerarPago(iVentaID, mImporte, iFormaDePagoID, 0, "", ""));
 }
Exemplo n.º 2
0
 public static ResAcc <int> GenerarDevolucionDeEfectivo(int iVentaID, decimal mImporte)
 {
     return(VentasProc.GenerarPago(iVentaID, (mImporte * -1), Cat.FormasDePago.Efectivo));
 }