Hi,
There is a way to include a paid stamp. It involves doing some customization to the invoice in Report Designer. To include 'paid' into the invoice you would need to create a script in xtraReport11 property grid. Find the field scripts, expand that and find Before Print. Replace the existing script with something like the following:
Private Sub OnBeforePrint(ByVal sender As Object, ByVal e As System.Drawing.Printing.PrintEventArgs)
Dim isPaid As Boolean = Convert.ToBoolean(GetCurrentColumnValue("IsPaid"))
If isPaid = False
xtrareport11.Watermark.text = ""
Else
xtrareport11.Watermark.text = "Paid"
End If
End Sub
This script will print with the word paid if the isPaid boolean is set to true. Now your customization might be a bit different, especially if you would like to inlcude a payment date. Also keep in mind that your fields (isPaid) and labels (Watermark) may be different. I just included this as a means to get you started if you wanted to attempt this yourself. If you would like some help with this, I can put you in touch with one of our customization consultants or feel free to contact any one of our Method Solution Providers here
- Adam