Search found 22 matches

by shawnregan
Wed Mar 31, 2021 2:32 pm
Forum: ProForm (Order Tracking)
Topic: Setting PolicyType
Replies: 6
Views: 3148

Re: Setting PolicyType

I found the issue and it was nothing on the SPS side. It was all me. Please close this thread. :)
by shawnregan
Wed Mar 31, 2021 2:26 pm
Forum: ProForm (Order Tracking)
Topic: Setting PolicyType
Replies: 6
Views: 3148

Re: Setting PolicyType

Its finding the policy value I am looking for in var policyTypes = tState.EnumManager.GetEnum<IOrderPolicyType>();

but when I apply it to the PolicyType property in SelectOrder.PolicyType and saved / apply changes to the order and close its not setting it.
by shawnregan
Wed Mar 31, 2021 2:17 pm
Forum: ProForm (Order Tracking)
Topic: Setting PolicyType
Replies: 6
Views: 3148

Re: Setting PolicyType

I could try .Trim() on Description.
by shawnregan
Wed Mar 31, 2021 2:13 pm
Forum: ProForm (Order Tracking)
Topic: Setting PolicyType
Replies: 6
Views: 3148

Re: Setting PolicyType

Yeah, I thought about the case and it matches what they have for CA.

I have no idea if it has embedded spaces. How can I tell?
by shawnregan
Mon Mar 29, 2021 12:20 pm
Forum: ProForm (Order Tracking)
Topic: Setting PolicyType
Replies: 6
Views: 3148

Setting PolicyType

I am currently using the following for NE and IL/WI and it works. But its not working for CA orders I submit, the dropdown is blank. Any ideas? var policyTypes = tState.EnumManager.GetEnum<IOrderPolicyType>(); IOrderPolicyType policyType = null; policyType = policyTypes.Values.FirstOrDefault(i => i....
by shawnregan
Thu Dec 12, 2019 3:58 pm
Forum: ProForm (Order Tracking)
Topic: CoverageAmount
Replies: 11
Views: 6288

Re: CoverageAmount

It was a permissions issue and it has been corrected now.

Thanks for the help.
by shawnregan
Thu Dec 12, 2019 3:46 pm
Forum: ProForm (Order Tracking)
Topic: CoverageAmount
Replies: 11
Views: 6288

Re: CoverageAmount

The fields for that section of the order are disabled for me in the SPS UI.
by shawnregan
Thu Dec 12, 2019 12:13 pm
Forum: ProForm (Order Tracking)
Topic: CoverageAmount
Replies: 11
Views: 6288

Re: CoverageAmount

Did as you suggest and got the same results. I will try with the Select UI.
by shawnregan
Thu Dec 12, 2019 11:45 am
Forum: ProForm (Order Tracking)
Topic: CoverageAmount
Replies: 11
Views: 6288

Re: CoverageAmount

EXCEPTION Method: set_Value Error Message: Cannot access member. Stack Trace: at SoftPro.EntityModel.Field`1.set_Value(T value) at PremiumCalculation.set_CoverageAmount(Decimal ) at CallSite.Target(Closure , CallSite , Object , Decimal ) at System.Dynamic.UpdateDelegates.UpdateAndExecute2[T0,T1,TRe...
by shawnregan
Wed Dec 11, 2019 6:19 pm
Forum: ProForm (Order Tracking)
Topic: CoverageAmount
Replies: 11
Views: 6288

Re: CoverageAmount

Code: Select all

Order.Title.TitleInsuranceCalculations[0].LoanPolicy.PremiumCalculation.CoverageAmount = Convert.ToDecimal(((LocalOrder)tState.LocalOrder).LoanPolicyCoverageAmount);