IO-233 2 Way Paint Scale.

This commit is contained in:
Patrick Fic
2022-04-28 09:46:47 -07:00
parent 1a1cc67402
commit 6eff2dbb31
15 changed files with 277 additions and 23 deletions

View File

@@ -51,7 +51,7 @@ using System.Windows;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.34.0")]
[assembly: AssemblyVersion("1.0.35.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
//Setting Squirrel Aware Version.
[assembly: AssemblyMetadata("SquirrelAwareVersion", "1")]

View File

@@ -196,7 +196,16 @@ namespace BodyshopPartner.Properties {
}
/// <summary>
/// Looks up a localized string similar to Browse Paint Scale Path.
/// Looks up a localized string similar to Browse Paint Scale -&gt; IO Path.
/// </summary>
public static string Label_BrowsePaintScaleImportPath {
get {
return ResourceManager.GetString("Label_BrowsePaintScaleImportPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Browse IO-&gt; Paint Scale Path.
/// </summary>
public static string Label_BrowsePaintScalePath {
get {
@@ -259,7 +268,25 @@ namespace BodyshopPartner.Properties {
}
/// <summary>
/// Looks up a localized string similar to Paint Scale Path.
/// Looks up a localized string similar to Paint Scale -&gt; IO Path.
/// </summary>
public static string Label_PaintScaleImportPath {
get {
return ResourceManager.GetString("Label_PaintScaleImportPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Paint Scare Import Timer (mins).
/// </summary>
public static string Label_PaintScaleImportTimer {
get {
return ResourceManager.GetString("Label_PaintScaleImportTimer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to IO -&gt;Paint Scale Path.
/// </summary>
public static string Label_PaintScalePath {
get {

View File

@@ -162,8 +162,11 @@
<data name="Label_BrowseForQb" xml:space="preserve">
<value>Browse for QuickBooks File</value>
</data>
<data name="Label_BrowsePaintScaleImportPath" xml:space="preserve">
<value>Browse Paint Scale -&gt; IO Path</value>
</data>
<data name="Label_BrowsePaintScalePath" xml:space="preserve">
<value>Browse Paint Scale Path</value>
<value>Browse IO-&gt; Paint Scale Path</value>
</data>
<data name="Label_ConfigureArmsExport" xml:space="preserve">
<value>(Re)configure ARMS Export</value>
@@ -183,8 +186,14 @@
<data name="Label_MonitorStatus" xml:space="preserve">
<value>Monitor Status</value>
</data>
<data name="Label_PaintScaleImportPath" xml:space="preserve">
<value>Paint Scale -&gt; IO Path</value>
</data>
<data name="Label_PaintScaleImportTimer" xml:space="preserve">
<value>Paint Scare Import Timer (mins)</value>
</data>
<data name="Label_PaintScalePath" xml:space="preserve">
<value>Paint Scale Path</value>
<value>IO -&gt;Paint Scale Path</value>
</data>
<data name="Label_QbFilePath" xml:space="preserve">
<value>QuickBooks File Path</value>

View File

@@ -176,5 +176,29 @@ namespace BodyshopPartner.Properties {
this["ArmsExportPath"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("C:\\Color\\PPGImport")]
public string PaintScaleImportPath {
get {
return ((string)(this["PaintScaleImportPath"]));
}
set {
this["PaintScaleImportPath"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("0")]
public string PaintScaleImportTimer {
get {
return ((string)(this["PaintScaleImportTimer"]));
}
set {
this["PaintScaleImportTimer"] = value;
}
}
}
}

View File

@@ -41,5 +41,11 @@
<Setting Name="ArmsExportPath" Type="System.String" Scope="User">
<Value Profile="(Default)">c:\program files\armsbusinesssolutions\repairorderpumpagentservice\export</Value>
</Setting>
<Setting Name="PaintScaleImportPath" Type="System.String" Scope="User">
<Value Profile="(Default)">C:\Color\PPGImport</Value>
</Setting>
<Setting Name="PaintScaleImportTimer" Type="System.String" Scope="User">
<Value Profile="(Default)">0</Value>
</Setting>
</Settings>
</SettingsFile>