IO-1376 Include op codes for Audatex.

This commit is contained in:
Patrick Fic
2021-09-28 11:02:35 -07:00
parent 1c40f2d9be
commit 1e91ffa6d1

View File

@@ -1139,8 +1139,7 @@ namespace BodyshopPartner.Utils.Decoder
//if part_type is blank, pull in the part type from parttypetousemitchell //if part_type is blank, pull in the part type from parttypetousemitchell
//if not found, set description to not efined //if not found, set description to not efined
if (string.IsNullOrEmpty(lin.oem_partno.Value))
{
try try
{ {
lin.op_code_desc = Utils.AppMetaData.CiecaOpCodes[lin.lbr_op.Value]["desc"].Value; lin.op_code_desc = Utils.AppMetaData.CiecaOpCodes[lin.lbr_op.Value]["desc"].Value;
@@ -1150,7 +1149,7 @@ namespace BodyshopPartner.Utils.Decoder
logger.Warn(Ex, "Couldnt find OpCodeDesc from {0} ", lin.lbr_op.Value); logger.Warn(Ex, "Couldnt find OpCodeDesc from {0} ", lin.lbr_op.Value);
} }
}
allLines.Add(lin); allLines.Add(lin);