Adding new column to deposit slip printout

This forum is for programmers who have questions about the source code.
Post Reply
tomle
Posts: 55
Joined: Sat Sep 12, 2009 11:28 pm

Adding new column to deposit slip printout

Post by tomle » Wed Sep 10, 2014 12:29 am

Hi All,

I would like to have the type of payment in the deposit slip printout. Any idea how to achieve this? I tried the edit sheet, but the Deposit Slip sheet does not have the payment type.

Thanks

User avatar
jsalmon
Posts: 1551
Joined: Tue Nov 30, 2010 12:33 pm
Contact:

Re: Adding new column to deposit slip printout

Post by jsalmon » Wed Sep 10, 2014 7:28 am

It would either be a feature request for us or you could add an OutputText field for all corresponding deposit items that you wanted:
E.g. depositItem01 and you would make paymentType01, etc.

Programmatically you'll want to take a look at SheetFiller.FillFieldsForDepositSlip()
The best thing about a boolean is even if you are wrong, you are only off by a bit.

Jason Salmon
Open Dental Software
http://www.opendental.com

tomle
Posts: 55
Joined: Sat Sep 12, 2009 11:28 pm

Re: Adding new column to deposit slip printout

Post by tomle » Wed Sep 10, 2014 9:49 am

Hi Jason,

Where does this paymentType01 define? In SheetFiller.cs?

Thanks

User avatar
jsalmon
Posts: 1551
Joined: Tue Nov 30, 2010 12:33 pm
Contact:

Re: Adding new column to deposit slip printout

Post by jsalmon » Wed Sep 10, 2014 10:32 am

jsalmon wrote:...or you could add an OutputText field...
It doesn't exist. It would be a feature request for us to create it or you could manipulate the code and create it yourself.
The best thing about a boolean is even if you are wrong, you are only off by a bit.

Jason Salmon
Open Dental Software
http://www.opendental.com

Post Reply