Add USA specific codes.

This commit is contained in:
Patrick Fic
2023-01-23 12:31:21 -08:00
parent bd324e6593
commit c5aa9fd503
2 changed files with 4 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ using System.Windows;
[assembly: AssemblyConfiguration("")] [assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("ImEX Systems Inc.")] [assembly: AssemblyCompany("ImEX Systems Inc.")]
[assembly: AssemblyProduct("ImEX Online Partner")] [assembly: AssemblyProduct("ImEX Online Partner")]
[assembly: AssemblyCopyright("Copyright © Snapt Software Inc. 2021")] [assembly: AssemblyCopyright("Copyright © ImEX Systems Inc.")]
[assembly: AssemblyTrademark("")] [assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")] [assembly: AssemblyCulture("")]
@@ -51,7 +51,7 @@ using System.Windows;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.38.0")] [assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")]
//Setting Squirrel Aware Version. //Setting Squirrel Aware Version.
[assembly: AssemblyMetadata("SquirrelAwareVersion", "1")] [assembly: AssemblyMetadata("SquirrelAwareVersion", "1")]

View File

@@ -811,12 +811,14 @@ namespace BodyshopPartner.Utils.Decoder
j.rate_mapa = float.Parse(readValues[11].ToString()) != 0 ? readValues[11] : readValues[7]; //Use CAL_LBRRTE if exists, otherwise us the pre threshold amt.? j.rate_mapa = float.Parse(readValues[11].ToString()) != 0 ? readValues[11] : readValues[7]; //Use CAL_LBRRTE if exists, otherwise us the pre threshold amt.?
j.tax_paint_mat_rt = float.Parse(readValues[14].ToString()) / 100; j.tax_paint_mat_rt = float.Parse(readValues[14].ToString()) / 100;
o.cal_maxdlr = float.Parse(readValues[3].ToString()); o.cal_maxdlr = float.Parse(readValues[3].ToString());
o.cal_opcode = readValues[12].ToString();
d.mapa = o; d.mapa = o;
break; break;
case "MASH": case "MASH":
j.rate_mash = float.Parse(readValues[11].ToString()) != 0 ? readValues[11] : readValues[7]; //Use CAL_LBRRTE if exists, otherwise us the pre threshold amt.? j.rate_mash = float.Parse(readValues[11].ToString()) != 0 ? readValues[11] : readValues[7]; //Use CAL_LBRRTE if exists, otherwise us the pre threshold amt.?
j.tax_shop_mat_rt = float.Parse(readValues[14].ToString()) / 100; j.tax_shop_mat_rt = float.Parse(readValues[14].ToString()) / 100;
o.cal_maxdlr = float.Parse(readValues[3].ToString()); o.cal_maxdlr = float.Parse(readValues[3].ToString());
o.cal_opcode = readValues[12].ToString();
d.mash = o; d.mash = o;
break; break;
case "MAHW": //TODO Should the remainder of these be index 7 or 11? case "MAHW": //TODO Should the remainder of these be index 7 or 11?