public bool AltaDeDocumento(tDocumento docto) { if (!SDK.EmpresaAbierta) { throw new Exception("Primero debe establecer una empresa"); } Int32 idDocto = 0; Resultado = Funciones.fAltaDocumento(ref idDocto, ref docto); if (Resultado == 0) { _idDocto = idDocto; EventLog.WriteInfo(string.Format("Se Creó el Documento {0} Correctamente...", idDocto)); return(true); } SDK.rError(Resultado); return(false); }
public static extern Int32 fAltaDocumentoCargoAbono(ref tDocumento aDocumento);
public static extern Int32 fAltaDocumento(ref Int32 aIdDocumento, ref tDocumento aDocumento);