Allow for null vehicle information & releases file.
This commit is contained in:
@@ -39,3 +39,5 @@ D62C10039629E09EC5343B530503D1E2DC1EEBD4 ImEXOnlinePartner-1.0.18-full.nupkg 515
|
||||
62DC1CCB2F8BB766C04DDA46B22BD4A6CFF0ABB5 ImEXOnlinePartner-1.0.20-full.nupkg 5198592
|
||||
11009A195489F6147BDB4C3563070FFB06303FBF ImEXOnlinePartner-1.0.21-delta.nupkg 26577
|
||||
95F57B9083321F21259FE125B3A152BB171BD4EC ImEXOnlinePartner-1.0.21-full.nupkg 5189950
|
||||
B80473EA2E60AFE03F0E22E2C78995A2360D9DB7 ImEXOnlinePartner-1.0.22-delta.nupkg 26086
|
||||
C15C0B6EE335E383F2CEF0EFA32027B7210AA312 ImEXOnlinePartner-1.0.22-full.nupkg 5189952
|
||||
@@ -141,7 +141,7 @@ namespace BodyshopPartner.Utils
|
||||
newJob.est_data = item.Job;
|
||||
newJob.ownr_name = item.Job.ownr_fn?.Value + " " + item.Job.ownr_ln?.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_amt = item.Job.clm_total?.Value;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user