From 334d3b725bda83c33fdbd42a9ec8dc53ca4ccf34 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Mon, 14 Sep 2020 23:48:07 +0000 Subject: [PATCH] --- docs/8.0/ayanova/docs/form-ay-report-edit.md | 7 +++++++ server/AyaNova/util/AyaNovaVersion.cs | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/8.0/ayanova/docs/form-ay-report-edit.md b/docs/8.0/ayanova/docs/form-ay-report-edit.md index 693ad7e6..c266f5d8 100644 --- a/docs/8.0/ayanova/docs/form-ay-report-edit.md +++ b/docs/8.0/ayanova/docs/form-ay-report-edit.md @@ -15,6 +15,13 @@ When a report is rendered the following steps take place behind the scenes: * The server retrieves the report template from the database, "re-hydrates" the business objects in memory and feeds the data to the report template to be processed by the Handlebars templating engine * The resulting HTML document is rendered and converted to a .PDF format document and a download URL is sent back to the user's browser to download and open the .pdf document. +### Linking directly to a rendered report + +The AyaNova client supports directly linking to a report in an URL, primarily for Customer notification purposes. Only single objects can be linked to for reporting, not lists of objects. + +The AyaNova client application expects report urls format as follows: `[PATH_TO_AYANOVA_APP_URL]/viewreport?oid=[objectid]&rid=[reportid]` + +If the user is not already logged in, they will be prompted to login first before the report is rendered. ## Report designer template sections diff --git a/server/AyaNova/util/AyaNovaVersion.cs b/server/AyaNova/util/AyaNovaVersion.cs index 02ff8524..1e8e63c8 100644 --- a/server/AyaNova/util/AyaNovaVersion.cs +++ b/server/AyaNova/util/AyaNovaVersion.cs @@ -5,7 +5,7 @@ namespace AyaNova.Util /// internal static class AyaNovaVersion { - public const string VersionString = "8.0.0-alpha.12"; + public const string VersionString = "8.0.0-alpha.14"; public const string FullNameAndVersion = "AyaNova server " + VersionString; }//eoc }//eons \ No newline at end of file