mdInvoiceRequest  -  the modules for generating
XML and/or paper based invoices of physicians
mdInvoiceRequest
    API DocBrowser   ·  Revision history
    Download area
    FAQ
 
home
system
integrators
search the
site
 

validator
modules
invoice
modules
credit
modules
miscellaneous
modules
tools

  Design by TMR AG
  © by sumex1.net
 
How to print webstamps onto an invoice

To print a webstamp onto an invoice in the mdInvoiceRequestManager use
(WEBSTAMP=file_path_of_BMP_file;)
as an object name in the Print method.

In its simplest form e.g. in the MDInvoiceRequestManager code this means


     BSTR bstrPrintTemplate = "(WEBSTAMP="+bstrBMPFile+";)";
	 
     IMDInvoiceRequestManager::Print(bstrPrintTemplate,...);                            
    
in order to print a webstamp onto the first invoice (onto "TP Rechnung" in the TP case or onto "Patienten-Rechnung" in the TG case).
If a webstamp should be printed on all invoices of a TG case ("Patienten-Rechnung" and "Rückerstattungsbeleg") then produce a comma separated list of BMP stamp files e.g.
(WEBSTAMP=file_path_of_BMP_file1,file_path_of_BMP_file2;)