예제 #1
0
        public string ActualizarEjecucionComprobante(int idComprobante, bool ejecutado, DateTime fecha)
        {
            if (!this.currentUser() || isUsuarioExterno()) { return "false"; }

            ComprobanteBL objBL = new ComprobanteBL();
            if (objBL.actualizarEjecutado(idComprobante, ejecutado, fecha, getCurrentUser().IdEmpresa))
            { return "true"; }
            return "false";
        }