Skip to content

Commit

Permalink
fix reading pi (#2060)
Browse files Browse the repository at this point in the history
# Description

This PR includes the following proposed change(s):

- fix reading pi for biz licence
  • Loading branch information
peggy-quartech authored Jan 6, 2025
1 parent 956fe20 commit d01b3dc
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ public async Task<BizLicApplicationResp> GetBizLicApplicationAsync(Guid licenceA
.Expand(b => b.spd_ContactId)
.Where(b => b.spd_position_spd_businesscontact.Any(p => p.spd_positionid == position.spd_positionid))
.Where(b => b.spd_businesscontact_spd_application.Any(b => b.spd_applicationid == app.spd_applicationid))
.Where(b => b.statecode != DynamicsConstants.StateCode_Inactive)
.FirstOrDefault();

PrivateInvestigatorSwlContactInfo privateInvestigatorInfo = new()
Expand Down

0 comments on commit d01b3dc

Please sign in to comment.