IO-1514 Add Company name to available jobs import.

This commit is contained in:
Patrick Fic
2021-11-22 21:35:10 -08:00
parent c614bac26b
commit f175578686
3 changed files with 5 additions and 3 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 // 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.22.0")] [assembly: AssemblyVersion("1.0.23.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

@@ -40,4 +40,6 @@ D62C10039629E09EC5343B530503D1E2DC1EEBD4 ImEXOnlinePartner-1.0.18-full.nupkg 515
11009A195489F6147BDB4C3563070FFB06303FBF ImEXOnlinePartner-1.0.21-delta.nupkg 26577 11009A195489F6147BDB4C3563070FFB06303FBF ImEXOnlinePartner-1.0.21-delta.nupkg 26577
95F57B9083321F21259FE125B3A152BB171BD4EC ImEXOnlinePartner-1.0.21-full.nupkg 5189950 95F57B9083321F21259FE125B3A152BB171BD4EC ImEXOnlinePartner-1.0.21-full.nupkg 5189950
B80473EA2E60AFE03F0E22E2C78995A2360D9DB7 ImEXOnlinePartner-1.0.22-delta.nupkg 26086 B80473EA2E60AFE03F0E22E2C78995A2360D9DB7 ImEXOnlinePartner-1.0.22-delta.nupkg 26086
C15C0B6EE335E383F2CEF0EFA32027B7210AA312 ImEXOnlinePartner-1.0.22-full.nupkg 5189952 C15C0B6EE335E383F2CEF0EFA32027B7210AA312 ImEXOnlinePartner-1.0.22-full.nupkg 5189952
5DF4F398C2936839A31A19C9ABDDC1A6348BBBD5 ImEXOnlinePartner-1.0.23-delta.nupkg 31735
080EEBC6397552A64E7F847A37E175B384F7BA91 ImEXOnlinePartner-1.0.23-full.nupkg 5190029

View File

@@ -139,7 +139,7 @@ namespace BodyshopPartner.Utils
newJob.bodyshopid = AppMetaData.ActiveShopId; newJob.bodyshopid = AppMetaData.ActiveShopId;
newJob.cieca_id = item.Job.ciecaid; newJob.cieca_id = item.Job.ciecaid;
newJob.est_data = item.Job; newJob.est_data = item.Job;
newJob.ownr_name = item.Job.ownr_fn?.Value + " " + item.Job.ownr_ln?.Value; newJob.ownr_name = item.Job.ownr_fn?.Value + " " + item.Job.ownr_ln?.Value + " " + item.Job.ownr_co_nm?.Value;
newJob.ins_co_nm = item.Job.ins_co_nm?.Value; newJob.ins_co_nm = item.Job.ins_co_nm?.Value;
newJob.vehicle_info = item.Job.vehicle.data.v_model_yr?.Value + " " + item.Job.vehicle.data.v_make_desc?.Value + " " + item.Job.vehicle.data.v_model_desc?.Value; newJob.vehicle_info = item.Job.vehicle.data.v_model_yr?.Value + " " + item.Job.vehicle.data.v_make_desc?.Value + " " + item.Job.vehicle.data.v_model_desc?.Value;
newJob.clm_no = item.Job.clm_no?.Value; newJob.clm_no = item.Job.clm_no?.Value;