IO-2217 Partner changes for generating part price changes.

This commit is contained in:
Patrick Fic
2023-03-16 13:34:13 -07:00
parent bd3e55a878
commit c16243eb3c
13 changed files with 382 additions and 44 deletions

View File

@@ -242,8 +242,16 @@ namespace RomeOnlinePartner.ViewModels
Properties.Settings.Default.EmsExportPath = dialog.SelectedPath;
Properties.Settings.Default.Save();
}
}
public void BrowseForPpcFolder()
{
var dialog = new Ookii.Dialogs.Wpf.VistaFolderBrowserDialog();
dialog.SelectedPath = Properties.Settings.Default.PpcExportPath;
if (dialog.ShowDialog().GetValueOrDefault())
{
Properties.Settings.Default.PpcExportPath = dialog.SelectedPath;
Properties.Settings.Default.Save();
}
}
public void BrowseForPaintScalePath()