ARMS Uploader

This commit is contained in:
Patrick Fic
2022-02-07 13:31:51 -08:00
parent 1221f35162
commit c936d354b2
16 changed files with 440 additions and 175 deletions

View File

@@ -150,6 +150,15 @@ namespace BodyshopPartner.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to ARMS Export Path.
/// </summary>
public static string Label_ArmsExportPath {
get {
return ResourceManager.GetString("Label_ArmsExportPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Auto-start Monitors.
/// </summary>
@@ -159,6 +168,15 @@ namespace BodyshopPartner.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Browse ARMS Export Path.
/// </summary>
public static string Label_BrowseArmsExportPath {
get {
return ResourceManager.GetString("Label_BrowseArmsExportPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Browse for EMS Export Path.
/// </summary>
@@ -186,6 +204,15 @@ namespace BodyshopPartner.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to (Re)configure ARMS Export.
/// </summary>
public static string Label_ConfigureArmsExport {
get {
return ResourceManager.GetString("Label_ConfigureArmsExport", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to (Re)Configure Paint Scale Task.
/// </summary>

View File

@@ -147,9 +147,15 @@
<data name="Label_AddMonitoringPath" xml:space="preserve">
<value>Add Path</value>
</data>
<data name="Label_ArmsExportPath" xml:space="preserve">
<value>ARMS Export Path</value>
</data>
<data name="Label_AutoStartMonitor" xml:space="preserve">
<value>Auto-start Monitors</value>
</data>
<data name="Label_BrowseArmsExportPath" xml:space="preserve">
<value>Browse ARMS Export Path</value>
</data>
<data name="Label_BrowseForEmsExport" xml:space="preserve">
<value>Browse for EMS Export Path</value>
</data>
@@ -159,6 +165,9 @@
<data name="Label_BrowsePaintScalePath" xml:space="preserve">
<value>Browse Paint Scale Path</value>
</data>
<data name="Label_ConfigureArmsExport" xml:space="preserve">
<value>(Re)configure ARMS Export</value>
</data>
<data name="Label_ConfigurePaintScale" xml:space="preserve">
<value>(Re)Configure Paint Scale Task</value>
</data>

View File

@@ -164,5 +164,17 @@ namespace BodyshopPartner.Properties {
this["EmsExportPath"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("c:\\program files\\armsbusinesssolutions\\repairorderpumpagentservice\\export")]
public string ArmsExportPath {
get {
return ((string)(this["ArmsExportPath"]));
}
set {
this["ArmsExportPath"] = value;
}
}
}
}

View File

@@ -38,5 +38,8 @@
<Setting Name="EmsExportPath" Type="System.String" Scope="User">
<Value Profile="(Default)">C:\CIECA\MITCHELL\EXPORT</Value>
</Setting>
<Setting Name="ArmsExportPath" Type="System.String" Scope="User">
<Value Profile="(Default)">c:\program files\armsbusinesssolutions\repairorderpumpagentservice\export</Value>
</Setting>
</Settings>
</SettingsFile>