Search found 18 matches

by dporter
Mon Aug 17, 2015 2:43 pm
Forum: Developers
Topic: Plugin hook for LabCase plugin
Replies: 7
Views: 13049

Re: Plugin hook for LabCase plugin

Is this a new policy? My previous hooks have been back ported to a previous stable release. Also, where are we in the 6-8 week release cycle today?

Thanks...Damon
by dporter
Fri Aug 14, 2015 3:44 pm
Forum: Developers
Topic: Plugin hook for LabCase plugin
Replies: 7
Views: 13049

Re: Plugin hook for LabCase plugin

Are you able to back port his hook to a stable release? We have 10 dental offices we want to get this plugin installed in.

Thanks,

Damon
Risas Dental
by dporter
Thu Nov 13, 2014 12:43 pm
Forum: Developers
Topic: Timestamp on Payment or PaySplit
Replies: 7
Views: 9426

Timestamp on Payment or PaySplit

I can't find anything that stores the time when a payment was made. I only see dates. Is there another table besides Payment and Paysplit that might have a timestamp? If not, can you add a timestamp to one of these tables? We have 9 offices using OD now and 35+ providers. I'd like to create some not...
by dporter
Mon Apr 07, 2014 9:57 pm
Forum: Advanced Topics
Topic: Audit Trail for AppointmentCreate PermType = 25
Replies: 0
Views: 4074

Audit Trail for AppointmentCreate PermType = 25

Hi, I'm running 14.1 and for some reason not all appointments created for new patients are logged in the SecurityLog table where PermType = 25 (ApptCreate). We use this audit trail to know who created the appointments for new patients. Since March 1st only ~half of the new patient appointments are b...
by dporter
Wed Feb 19, 2014 10:41 am
Forum: Developers
Topic: Hook Requests - FormRpProdInc
Replies: 3
Views: 7805

Re: Hook Requests - FormRpProdInc

Great. Thanks for your quick response. Any chance I can get these hooks back ported to 13.2? We have found Open Dental to be the best option for growing business like ours that don't want to be pigeon holed into a platform with no customization. Thanks for the good work you guys are doing for the in...
by dporter
Tue Feb 18, 2014 7:09 pm
Forum: Developers
Topic: Hook Requests - FormRpProdInc
Replies: 3
Views: 7805

Hook Requests - FormRpProdInc

Hi, We use OD in 5 dental offices currently. We are rolling it out to 6-7 more offices this year and have made a commitment to the platform. I need the following Hooks added for additional reporting requirements. Please validate and add as soon as possible as I'm late on a rollout. I appreciate your...
by dporter
Tue Feb 04, 2014 2:59 pm
Forum: Developers
Topic: Hook Requests - FormPayPlan and CreditCards
Replies: 8
Views: 10609

Re: Hook Requests - FormPayPlan and CreditCards

FYI...there is another method that will need to change in order to make weekly, bi-weekly payment plans work. FormCreditRecurringCharges.GetPayDate() is only looking at days in the current or previous month. The current code will always return the day of the month that the payment plan started as th...
by dporter
Tue Feb 04, 2014 12:20 pm
Forum: Developers
Topic: Hook Requests - FormPayPlan and CreditCards
Replies: 8
Views: 10609

Re: Hook Requests - FormPayPlan and CreditCards

Looks like you are still working on these payment plan options. I still see the same problem with the CreditCards.FilterRecurringChargeList() method. Using 13.3 I selected the option to have the payment plan run weekly, however, the payment is removed from the load of the Grid after a successful pay...
by dporter
Tue Feb 04, 2014 11:48 am
Forum: Developers
Topic: Hook Requests - FormPayPlan and CreditCards
Replies: 8
Views: 10609

Re: Hook Requests - FormPayPlan and CreditCards

Actually, I just discovered that you guys are adding flexible payment dates to payment plans in version 13.3. All of the hooks requested in this thread were to create this functionality ourselves in our plugin. I'm digging through the 13.3 code now to make sure it fits our needs. If this feature mak...
by dporter
Sat Feb 01, 2014 12:31 pm
Forum: Developers
Topic: Hook Requests - FormPayPlan and CreditCards
Replies: 8
Views: 10609

Re: Hook Requests - FormPayPlan and CreditCards

Thanks Allen.
by dporter
Sat Feb 01, 2014 7:45 am
Forum: Developers
Topic: Hook Requests - FormPayPlan and CreditCards
Replies: 8
Views: 10609

Re: Hook Requests - FormPayPlan and CreditCards

Did I post this request in the right place?
by dporter
Wed Jan 29, 2014 10:44 pm
Forum: Developers
Topic: Hook Requests - FormPayPlan and CreditCards
Replies: 8
Views: 10609

Hook Requests - FormPayPlan and CreditCards

Please add the following hooks. I'd be ultra happy to see these back ported to 13.2. FormPayPlan.cs around line 896 at the end of FormPayPlan_Load: FillCharges(); Plugins.HookAddCode(this, "FormPayPlan.FormPayPlan_Load_end"); FormPayPlan.cs around line 1133 in the middle of butCreateSched_Click. Thi...
by dporter
Wed Jan 29, 2014 9:39 pm
Forum: Developers
Topic: Plugin Error - DataTable Passed By Ref Not Updating In Form
Replies: 5
Views: 7786

Re: Plugin Error - DataTable Passed By Ref Not Updating In F

I found another way to accomplish the same goal and not pass in the DataTable table object. The HookMethod will jump out of the CreditCards.FilterRecurringChargeList() instead and my plugin will implement that method. No need for the DataTable table object to be passed in. However, if anyone knows w...
by dporter
Wed Jan 29, 2014 10:55 am
Forum: Developers
Topic: Plugin Error - DataTable Passed By Ref Not Updating In Form
Replies: 5
Views: 7786

Re: Plugin Error - DataTable Passed By Ref Not Updating In F

Thanks for the tip, however, the table still returns as null. Here are code snippets of the full round trip from FormCreditRecurringCharges to my plugin. object[] parameters = { table }; if (Plugins.HookMethod(this, "FormCreditRecurringCharges.FillGrid", parameters)) { table = (DataTable)parameters[...
by dporter
Tue Jan 28, 2014 9:21 pm
Forum: Developers
Topic: Plugin Error - DataTable Passed By Ref Not Updating In Form
Replies: 5
Views: 7786

Re: Plugin Error - DataTable Passed By Ref Not Updating In F

Yes, that is similar. My real issue is that the DataTable table object is populated in my plugin but it also need to persist on the Form because it is used elsewhere.

I'd like to know a couple of ways you would handle this since it is a private object in the Form.

Thanks...Damon
by dporter
Tue Jan 28, 2014 4:17 pm
Forum: Developers
Topic: Plugin Error - DataTable Passed By Ref Not Updating In Form
Replies: 5
Views: 7786

Plugin Error - DataTable Passed By Ref Not Updating In Form

I'm having trouble with the DataTable object named "table" in the FormCreditRecurringCharges class. I'm passing this object in to my plugin using the following code at the beginning of FormCreditRecurringCharges.FillGrid(): if (Plugins.HookMethod(this, "FormCreditRecurringCharges.FillGrid", table)) ...
by dporter
Fri Jan 24, 2014 12:04 pm
Forum: Developers
Topic: VS2012 PluginExample - Project References Not Resolved
Replies: 2
Views: 4095

Re: VS2012 PluginExample - Project References Not Resolved

OK, silly thing to overlook. I had a mismatch in the .NET Framework target because PluginExample targets 3.5.

Now on to fixing the 21 new build errors :-)
by dporter
Fri Jan 24, 2014 11:56 am
Forum: Developers
Topic: VS2012 PluginExample - Project References Not Resolved
Replies: 2
Views: 4095

VS2012 PluginExample - Project References Not Resolved

Wondering if anyone has had this issue with VS2012 and the PluginExample Solution. I'm having trouble resolving the project references to OpenDental and OpenDentalBusiness which is preventing me from sucessfully building the solution. See the screen cast below. http://screencast.com/t/XAhkkXA8 -Damon