Added call to SetupSecurity after closing edit user dialog
Aded code to corect how Summary of Changes report was processing list of changes Added code to account for double line box around high level steps Added code to resolve printing cautions and notes associated with substeps
This commit is contained in:
@@ -1228,22 +1228,31 @@ namespace Volian.Print.Library
|
||||
ContentAuditInfo caiFirst = null;
|
||||
foreach (ContentAuditInfo cai in auditList1)
|
||||
{
|
||||
if (caiFirst == null)
|
||||
if (caiFirst == null)
|
||||
caiFirst = cai;
|
||||
else
|
||||
{
|
||||
if (cai.ContentID == caiFirst.ContentID && cai.Text != caiFirst.Text)
|
||||
{
|
||||
if (caiFirst.ActionWhat == "Added" && (cai.ActionWhat == "Added" || cai.ActionWhat == "Restored"))
|
||||
auditList2.Add(cai);
|
||||
else
|
||||
{
|
||||
auditList2.Add(caiFirst);
|
||||
auditList2.Add(cai);
|
||||
}
|
||||
}
|
||||
caiFirst = null;
|
||||
}
|
||||
if (cai.ContentID == caiFirst.ContentID && cai.Text != caiFirst.Text)
|
||||
{
|
||||
if (caiFirst.ActionWhat == "Added" && (cai.ActionWhat == "Added" || cai.ActionWhat == "Restored"))
|
||||
{
|
||||
auditList2.Add(cai);
|
||||
caiFirst = null;
|
||||
}
|
||||
else
|
||||
{
|
||||
auditList2.Add(caiFirst);
|
||||
auditList2.Add(cai);
|
||||
caiFirst = null;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if(caiFirst.Text != string.Empty)
|
||||
auditList2.Add(caiFirst);
|
||||
caiFirst = cai;
|
||||
}
|
||||
}
|
||||
}
|
||||
int cols = 5;
|
||||
int borders = 0;
|
||||
|
Reference in New Issue
Block a user