B2018-069 Revert PDF Location to default temporary folder when running baseline testing

This commit is contained in:
Rich
2018-05-07 16:04:17 +00:00
parent e4a99e09cf
commit 86c85bee58
2 changed files with 8 additions and 3 deletions

View File

@@ -107,7 +107,11 @@ namespace VEPROMS
}
public string PDFPath
{
get { return txbPDFLocation.Text; }
get {// B2018-069 Revert to Temporary for Baseline testing
if (PromsPrinter.BaselineTesting)
return VlnSettings.TemporaryFolder;
return txbPDFLocation.Text;
}
set { txbPDFLocation.Text = value; }
}
public string RevDate