C2024-005-Annotations-Cleanup

This commit is contained in:
2024-07-10 16:25:01 -04:00
parent 9f36ccf029
commit 74866388e6
2 changed files with 77 additions and 11 deletions

View File

@@ -59,7 +59,7 @@ namespace VEPROMS
private string getAnnotationProcItems(List<ProcedureInfo> pil2)
{
procList = "";
foreach (var p in pil2)
{
if (p.IsProcedure)
@@ -80,7 +80,7 @@ namespace VEPROMS
private string getAnnotationDocvItems(List<DocVersionInfo> dvil2)
{
docvList = "";
foreach (var d in dvil2)
{
if (d.IsDocVersion)
@@ -109,7 +109,9 @@ namespace VEPROMS
{
TextBox frm2 = mainForm.GettxtProcess();
frm2.AppendText(p.DisplayNumber + ' ' + p.DisplayText);
Annotation.DeleteAnnotationProcByGroup(lbAnnotationTypes.SelectedIndex, p.ItemID);
AnnotationTyp = System.Convert.ToInt32(((KeyValuePair<string, string>)lbAnnotationTypes.SelectedItem).Key);
Annotation.DeleteAnnotationProcByType(AnnotationTyp, p.ItemID.ToString());
lblCountNumber.Text = "0";
}
}
@@ -118,8 +120,10 @@ namespace VEPROMS
if (d.IsDocVersion)
{
TextBox frm2 = mainForm.GettxtProcess();
//frm2.AppendText(p);
Annotation.DeleteAnnotationByGroup(lbAnnotationTypes.SelectedIndex, d.VersionID);
frm2.AppendText(d.ActiveParent.ToString());
AnnotationTyp = System.Convert.ToInt32(((KeyValuePair<string, string>)lbAnnotationTypes.SelectedItem).Key);
Annotation.DeleteAnnotationDocvByType(AnnotationTyp, d.VersionID.ToString());
lblCountNumber.Text = "0";
}
}
}