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

@@ -186,6 +186,15 @@ namespace RomeOnlinePartner.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Brose for PPC Export Path.
/// </summary>
public static string Label_BrowseForPpcExport {
get {
return ResourceManager.GetString("Label_BrowseForPpcExport", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Browse for QuickBooks File.
/// </summary>
@@ -294,6 +303,15 @@ namespace RomeOnlinePartner.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Parts Price Change Export Path.
/// </summary>
public static string Label_PpcExport {
get {
return ResourceManager.GetString("Label_PpcExport", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to QuickBooks File Path.
/// </summary>

View File

@@ -159,6 +159,9 @@
<data name="Label_BrowseForEmsExport" xml:space="preserve">
<value>Browse for EMS Export Path</value>
</data>
<data name="Label_BrowseForPpcExport" xml:space="preserve">
<value>Brose for PPC Export Path</value>
</data>
<data name="Label_BrowseForQb" xml:space="preserve">
<value>Browse for QuickBooks File</value>
</data>
@@ -195,6 +198,9 @@
<data name="Label_PaintScalePath" xml:space="preserve">
<value>RO -&gt;Paint Scale Path</value>
</data>
<data name="Label_PpcExport" xml:space="preserve">
<value>Parts Price Change Export Path</value>
</data>
<data name="Label_QbFilePath" xml:space="preserve">
<value>QuickBooks File Path</value>
</data>

View File

@@ -200,5 +200,17 @@ namespace RomeOnlinePartner.Properties {
this["PaintScaleImportTimer"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("C:\\CIECA\\CCC\\IMPORT")]
public string PpcExportPath {
get {
return ((string)(this["PpcExportPath"]));
}
set {
this["PpcExportPath"] = value;
}
}
}
}

View File

@@ -47,5 +47,8 @@
<Setting Name="PaintScaleImportTimer" Type="System.String" Scope="User">
<Value Profile="(Default)">0</Value>
</Setting>
<Setting Name="PpcExportPath" Type="System.String" Scope="User">
<Value Profile="(Default)">C:\CIECA\CCC\IMPORT</Value>
</Setting>
</Settings>
</SettingsFile>