Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2c42933d58 | |||
| 2e68362836 | |||
| c6736db7ea | |||
| c005f03af8 | |||
| 459aabcc86 | |||
| ad33097d5e | |||
| 8d7735735e | |||
| 25bbc46925 | |||
| 5a26b0ee35 | |||
| 09a397bed2 | |||
| a33039bcae | |||
| fd16a6b6c3 | |||
| cf19f764c7 |
@@ -179,6 +179,7 @@
|
|||||||
<Content Include="fmtall\CPL_00all.xml" />
|
<Content Include="fmtall\CPL_00all.xml" />
|
||||||
<Content Include="fmtall\CPL_01all.xml" />
|
<Content Include="fmtall\CPL_01all.xml" />
|
||||||
<Content Include="fmtall\CPL_02all.xml" />
|
<Content Include="fmtall\CPL_02all.xml" />
|
||||||
|
<Content Include="fmtall\CPL_04all.xml" />
|
||||||
<Content Include="fmtall\CPL_03all.xml" />
|
<Content Include="fmtall\CPL_03all.xml" />
|
||||||
<Content Include="fmtall\CPSAMGDataall.xml" />
|
<Content Include="fmtall\CPSAMGDataall.xml" />
|
||||||
<Content Include="fmtall\CPSAMGDEVall.xml" />
|
<Content Include="fmtall\CPSAMGDEVall.xml" />
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -25052,7 +25052,7 @@ BEGIN TRY -- Try Block
|
|||||||
DECLARE @RevDescription varchar(255)
|
DECLARE @RevDescription varchar(255)
|
||||||
|
|
||||||
set @RevDate = '06/29/2026 7:00 AM'
|
set @RevDate = '06/29/2026 7:00 AM'
|
||||||
set @RevDescription = Update to Grid Deletion Audits'
|
set @RevDescription = 'Update to Grid Deletion Audits'
|
||||||
|
|
||||||
Select cast(@RevDate as datetime) RevDate, @RevDescription RevDescription
|
Select cast(@RevDate as datetime) RevDate, @RevDescription RevDescription
|
||||||
PRINT 'SQL Code Revision ' + @RevDate + ' - ' + @RevDescription
|
PRINT 'SQL Code Revision ' + @RevDate + ' - ' + @RevDescription
|
||||||
|
|||||||
@@ -653,8 +653,6 @@ namespace Volian.Controls.Library
|
|||||||
//do nothing - is still checked out
|
//do nothing - is still checked out
|
||||||
}
|
}
|
||||||
else if (changedDocVersion && !askedAboutchangedDocVersion)
|
else if (changedDocVersion && !askedAboutchangedDocVersion)
|
||||||
{
|
|
||||||
Task.Run(() =>
|
|
||||||
{
|
{
|
||||||
if (MessageBox.Show($"There exists a newer ROFST for this RO database that was loaded for other sets.\r\n\r\nDo you want to update this set's ROs to be consistent/use the latest loaded ROFST?", "Load ROs", MessageBoxButtons.YesNo) == DialogResult.Yes)
|
if (MessageBox.Show($"There exists a newer ROFST for this RO database that was loaded for other sets.\r\n\r\nDo you want to update this set's ROs to be consistent/use the latest loaded ROFST?", "Load ROs", MessageBoxButtons.YesNo) == DialogResult.Yes)
|
||||||
{
|
{
|
||||||
@@ -678,7 +676,6 @@ namespace Volian.Controls.Library
|
|||||||
{
|
{
|
||||||
askedAboutchangedDocVersion = true;
|
askedAboutchangedDocVersion = true;
|
||||||
}
|
}
|
||||||
});
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -468,15 +468,18 @@ namespace Volian.Controls.Library
|
|||||||
this.Refresh();
|
this.Refresh();
|
||||||
myFormatVersionList = FormatVersionList.GetFormatVersions();
|
myFormatVersionList = FormatVersionList.GetFormatVersions();
|
||||||
cbxTranVersion.DisplayMember = "Title";
|
cbxTranVersion.DisplayMember = "Title";
|
||||||
int lastLastFormatID = 0;
|
|
||||||
foreach (FormatVersion fv in myFormatVersionList)
|
List<FormatVersion> fvlst = myFormatVersionList.GroupBy(x => x.FormatID).Select(group => new
|
||||||
{
|
FormatVersion(title: group.Max(x => x.Title),
|
||||||
if (fv.FormatID != lastLastFormatID)
|
formatID: group.Key,
|
||||||
|
versionID: group.Max(x => x.VersionID)
|
||||||
|
)).OrderBy(y => y.Title).ToList();
|
||||||
|
|
||||||
|
foreach (FormatVersion fv in fvlst)
|
||||||
{
|
{
|
||||||
cbxTranVersion.Items.Add(fv);
|
cbxTranVersion.Items.Add(fv);
|
||||||
lastLastFormatID = fv.FormatID;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
cbxTranVersion.SelectedIndexChanged -= new EventHandler(cbxTranVersion_SelectedIndexChanged);
|
cbxTranVersion.SelectedIndexChanged -= new EventHandler(cbxTranVersion_SelectedIndexChanged);
|
||||||
cbxTranVersion.SelectedIndexChanged += new EventHandler(cbxTranVersion_SelectedIndexChanged);
|
cbxTranVersion.SelectedIndexChanged += new EventHandler(cbxTranVersion_SelectedIndexChanged);
|
||||||
cbxTranFormat.SelectedIndexChanged -= new EventHandler(cbxTranFormat_SelectedIndexChanged);
|
cbxTranFormat.SelectedIndexChanged -= new EventHandler(cbxTranFormat_SelectedIndexChanged);
|
||||||
@@ -556,14 +559,9 @@ namespace Volian.Controls.Library
|
|||||||
string versionList = string.Empty;
|
string versionList = string.Empty;
|
||||||
string sep = string.Empty;
|
string sep = string.Empty;
|
||||||
FormatVersion sfv = cbxTranVersion.SelectedItem as FormatVersion;
|
FormatVersion sfv = cbxTranVersion.SelectedItem as FormatVersion;
|
||||||
foreach (FormatVersion fv in myFormatVersionList)
|
|
||||||
{
|
versionList = string.Join(",", myFormatVersionList.Where(x => x.FormatID == sfv?.FormatID).Select(y => y.VersionID));
|
||||||
if (fv.FormatID == sfv.FormatID)
|
|
||||||
{
|
|
||||||
versionList += sep + fv.VersionID;
|
|
||||||
sep = ",";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
cbxTranVersion.Tag = versionList;
|
cbxTranVersion.Tag = versionList;
|
||||||
cbxTranFormatFillIn(versionList);
|
cbxTranFormatFillIn(versionList);
|
||||||
if (dicExpandedFolderNodes.Count > 0)
|
if (dicExpandedFolderNodes.Count > 0)
|
||||||
|
|||||||
Reference in New Issue
Block a user