Page 1 of 1

Jiwa 7.2 Bugs

PostPosted: Wed Aug 29, 2018 8:15 pm
by SBarnes
Hi Mike

I have just discovered a bug in 7.2 that wasn't there in 7.1 if you have a system setting plugin and have code in the Button click to show a search that uses

Code: Select all
var search = JiwaFinancials.Jiwa.JiwaApplication.Manager.Instance.Search;


You need to change it to

Code: Select all
var search = BusinessLogicHost.Manager.Search;


Otherwise you get an error about the connection string not being initialised for PermissionDemand.

and further to this another issue is

Code: Select all
PrintUIObject = this.Manager.CreateReport(ReportDefinition,this, 1, true, false, true, "", false,1);


versus below which does not and produces an error about Base directory can not be blank

Code: Select all
PrintUIObject = JiwaFinancials.Jiwa.JiwaApplication.Manager.Instance.CreateReport(ReportDefinition,this, 1, true, false, true, "", false,1);


Looks like there are some issues with JiwaFinancials.Jiwa.JiwaApplication.Manager.Instance.

Re: Jiwa 7.2 Bugs

PostPosted: Fri Aug 31, 2018 5:58 pm
by SBarnes
Hi Mike,

The permission demand error also occurs when Jiwa 7.2 attempts to email invoices, which would lead me to believe the email plugins have the same issues.

Re: Jiwa 7.2 Bugs  Topic is solved

PostPosted: Fri Aug 31, 2018 6:32 pm
by Mike.Sheen
Thanks - logged as DEV-6864.