Platforms to show: All Mac Windows Linux Cross-Platform
/DynaPDF/DynaPDF Database Invoice Example
Function:
Required plugins for this example: MBS DynaPDF Plugin
You find this example project in your Plugins Download as a Xojo project file within the examples folder: /DynaPDF/DynaPDF Database Invoice Example
This example is the version from Wed, 14th Sep 2021.
Function:
Required plugins for this example: MBS DynaPDF Plugin
You find this example project in your Plugins Download as a Xojo project file within the examples folder: /DynaPDF/DynaPDF Database Invoice Example
This example is the version from Wed, 14th Sep 2021.
Project "DynaPDF Database Invoice Example.xojo_binary_project"
Class App Inherits Application
Const kEditClear = "&Löschen"
Const kFileQuit = "Beenden"
Const kFileQuitShortcut = ""
EventHandler Sub Open()
InitCustomer
InitArticles
CreateInvoices
quit
End EventHandler
Sub CreateInvoices()
const NUM_PAGES = 1000
dim r as new random
dim pdf as new MyDynaPDFMBS
dim ofile as FolderItem = SpecialFolder.Desktop.Child("DynaPDF Database Invoice Example.pdf")
dim ifile as FolderItem = FindFile("invoice template.pdf")
call pdf.CreateNewPDF(ofile)
call pdf.SetImportFlags( Bitwiseor(pdf.kifImportAll, pdf.kifImportAsPage))
call pdf.OpenImportFile(ifile, pdf.kptOpen, "")
dim tmpl as integer = pdf.ImportPage(1)
call pdf.CloseImportFile
for i as integer = 1 to NUM_PAGES
call pdf.Append
// Statischer Hintergrund
call pdf.PlaceTemplateEx(tmpl, 0.0, 0.0, 0.0, 0.0)
// Rechnung mit Daten füllen
dim idx as integer = r.InRange(0,UBound(Customers))
FillPage(PDF, Customers(idx))
call pdf.EndPage
next
// Seitennummern einfügen
dim pageCount as integer = pdf.GetPageCount
for i as integer = 1 to NUM_PAGES
call pdf.EditPage(i)
call pdf.SetFont("Arial", pdf.kfsRegular, 8.0, true, pdf.kcpUnicode)
call pdf.WriteText(466.0, 681.5, str(i)+" von "+str(pageCount))
call pdf.EndPage
next
call pdf.CloseFile
ofile.Launch(true)
End Sub
Sub FillPage(pdf as DynaPDFMBS, record as Customer)
dim sum as Double = 0.0
dim tax as Double = 0.0
dim x as double = 56.0
dim y as double = 664.0
call pdf.SetFont("Arial", pdf.kfsRegular, 10.0, true, pdf.kcpUnicode)
// Firmenname, könnte mehrzeilig sein
call pdf.WriteFTextEx(x, y, 200.0, -1.0, pdf.ktaLeft, Record.Company)
// Der Empfänger kommt darunter...
y = pdf.GetLastTextPosY - 10.0
call pdf.WriteText(x, y, Record.ContactPerson)
// Straße
call pdf.WriteFTextEx(x, y, 180.0, -1.0, pdf.ktaLeft, Record.Street)
y = pdf.GetLastTextPosY - 10.0
// PLZ
call pdf.WriteText(x, y, Record.Zip)
// Ort
call pdf.WriteText(pdf.GetLastTextPosX + pdf.GetTextWidth(" "), y, Record.City)
dim d as new date
// Kopfdaten oben rechts
x = 466.0
y = 690.5
call pdf.ChangeFontSize(8.0)
// Datum
call pdf.WriteText(x, y, d.ShortDate)
// Kundennummer
call pdf.WriteText(x, y - 27.5, str(Record.CustomerNr))
// Auftragsnummer
call pdf.WriteText(x, y - 39.0, Record.OrderNr)
// USt-ID
call pdf.WriteText(x, y - 50.0, Record.TaxID)
x = 56.0
y = 500.0
// Rechnungsnummer
dim r as new random
call pdf.ChangeFontSize(14.0)
call pdf.WriteText(x + 90.0, y + 8.5, str(r.InRange(1,1000000)))
// Zwei Linen für den Tabellenkopf ausgeben
call pdf.SetLineWidth(0.25)
call pdf.MoveTo(x, y)
call pdf.LineTo(x + 483.0, y)
y = y - 16.0
call pdf.MoveTo(x, y)
call pdf.LineTo(x + 483.0, y)
call pdf.StrokePath
// Gekaufte Artikel ausgeben -> fünf Spalten
dim num as integer = 1
y = 482.0
call pdf.ChangeFontSize(10.0)
dim count as integer = r.InRange(0,6)
for i as integer = 0 to count
dim a as Article = Articles(r.InRange(0, UBound(Articles)))
WriteArticle(pdf, x, y, num, a, r.InRange(1, 100), sum)
y = y - 12.0
num = num + 1
next
y = y - 2.0
call pdf.MoveTo(x, y)
call pdf.LineTo(x + 483.0, y)
call pdf.StrokePath
call pdf.WriteText(x + 5.0, y - 10.0, "Nettobetrag")
call pdf.WriteFTextEx(x, y, 483.0, -1.0, pdf.ktaRight, Format(sum, "0.00")+" €")
y = y - 14.0
call pdf.MoveTo(x, y)
call pdf.LineTo(x + 483.0, y)
call pdf.StrokePath
call pdf.WriteText(x + 5.0, y - 10.0, "Umsatzsteuer 19%")
tax = sum * 0.19
call pdf.WriteFTextEx(x, y, 483.0, -1.0, pdf.ktaRight, Format(tax, "0.00")+" €")
y = y - 14.0
call pdf.MoveTo(x, y)
call pdf.LineTo(x + 483.0, y)
call pdf.StrokePath
call pdf.SetFont("Arial", pdf.kfsBold, 12.0, true, pdf.kcpUnicode)
call pdf.WriteText(x + 5.0, y - 13.0, "Gesamtbetrag")
call pdf.WriteFTextEx(x, y - 1.0, 483.0, -1.0, pdf.ktaRight, Format(tax+sum, "0.00"))
y = y - 18.0
call pdf.MoveTo(x, y)
call pdf.LineTo(x + 483.0, y)
y = y - 2.0
call pdf.MoveTo(x, y)
call pdf.LineTo(x + 483.0, y)
call pdf.StrokePath
End Sub
Function FindFile(name as string) As FolderItem
// Look for file in parent folders from executable on
dim parent as FolderItem = app.ExecutableFile.Parent
while parent<>Nil
dim file as FolderItem = parent.Child(name)
if file<>Nil and file.Exists then
Return file
end if
parent = parent.Parent
wend
End Function
Sub InitArticles()
Articles.Append new Article(3224567, "Brathänchen (800g)", 12.49)
Articles.Append new Article(5678321, "200g Aufschnitt", 1.98)
Articles.Append new Article(4559021, "Bratwurst 10er Pack", 4.49)
Articles.Append new Article(5679803, "1 Kg Handwaschpaste Deluxe", 8.22)
Articles.Append new Article(5447891, "Zahnpasta Erdber Geschmack", 0.99)
Articles.Append new Article(2342389, "500g Ravioli", 1.78)
Articles.Append new Article(1227432, "Mülleimer klein", 21.22)
End Sub
Sub InitCustomer()
customers.Append new Customer("Gesellschaft für Entwicklung und Ökologie des deutschen Nahrungsmittelwesens",_
"Frau Stefan",_
"Raketenstraße 2",_
"38462",_
"Ravensberg",_
100003457,_
"-",_
"-")
customers.Append new Customer("Rewe",_
"Herr Walter von Straußenberg",_
"Am kleinen Wäldchen 123",_
"56890",_
"Bad Berleburg",_
100003434,_
"-",_
"-")
customers.Append new Customer("Hit",_
"Frau Ingrid Wolter",_
"Lüdenscheider Straße 433",_
"58515",_
"Lüdenscheid",_
100002447,_
"-",_
"-")
customers.Append new Customer("Kaufpark",_
"Herr Gerald Ostheim",_
"Heedfelder Straße 33",_
"43312",_
"Wuppertal",_
100005632,_
"-",_
"-")
customers.Append new Customer("Aldi",_
"Frau Sabine Schnellstadt",_
"Bredde 36",_
"98834",_
"München",_
100003129,_
"-",_
"-")
customers.Append new Customer("Lidle",_
"Herr Manfred Klein",_
"Am Park 2",_
"67890",_
"Frankfurt am Main",_
100009001,_
"-",_
"-")
End Sub
Sub WriteArticle(pdf as DynaPDFMBS, x as Double, y as Double, pos as integer, art as Article, quantity as integer, byref sum as Double)
dim price as Double
call pdf.WriteFTextEx( x, y, 20.0, -1.0, pdf.ktaCenter, str(pos))
call pdf.WriteText(x + 33.0, y - 10.0, str(Art.ArtNr))
call pdf.WriteFTextEx(x + 92.0, y, 200.0, -1.0, pdf.ktaLeft, Art.Description)
call pdf.WriteFTextEx(x + 335.0, y, 40.0, -1.0, pdf.ktaCenter, str(Quantity))
price = (Quantity * Art.SinglePrice)
Sum = sum + price
call pdf.WriteFTextEx(x + 423.0, y, 60.0, -1.0, pdf.ktaRight, Format(price, "0.00")+" €")
End Sub
Property Articles() As Article
Property Customers() As Customer
End Class
MenuBar MenuBar1
MenuItem FileMenu = "&Ablage"
MenuItem FileQuit = "#App.kFileQuit"
MenuItem EditMenu = "&Bearbeiten"
MenuItem EditUndo = "&Rückgängig"
MenuItem UntitledMenu1 = "-"
MenuItem EditCut = "&Ausschneiden"
MenuItem EditCopy = "&Kopieren"
MenuItem EditPaste = "&Einfügen"
MenuItem EditClear = "#App.kEditClear"
MenuItem UntitledMenu0 = "-"
MenuItem EditSelectAll = "&Alles auswählen"
End MenuBar
Class Window1 Inherits Window
End Class
Class Customer
Sub Constructor(pCompany as string, pContactPerson as string, pStreet as string, pZip as string, pCity as string, pCustomerNr as integer, pOrderNr as string, pTaxID as string)
city = pCity
company = pCompany
ContactPerson = pContactPerson
CustomerNr = pCustomerNr
OrderNr = pOrderNr
Street = pStreet
TaxID = pTaxID
Zip = pZip
End Sub
Property City As String
Property Company As string
Property ContactPerson As string
Property CustomerNr As Integer
Property OrderNr As string
Property Street As String
Property TaxID As string
Property Zip As String
End Class
Class Article
Sub Constructor(pArtNr as integer, pDescription as string, pSinglePrice as double)
ArtNr = pArtNr
Description = pDescription
SinglePrice = pSinglePrice
End Sub
Property ArtNr As Integer
Property Description As String
Property SinglePrice As Double
End Class
Class MyDynaPDFMBS Inherits DynaPDFMBS
EventHandler Function Error(ErrorCode as integer, ErrorMessage as string, ErrorType as integer) As integer
// output all messages on the console:
System.DebugLog str(ErrorCode)+": "+ErrorMessage
// and display dialog:
Dim d as New MessageDialog //declare the MessageDialog object
Dim b as MessageDialogButton //for handling the result
d.icon=MessageDialog.GraphicCaution //display warning icon
d.ActionButton.Caption="Continue"
d.CancelButton.Visible=True //show the Cancel button
// a warning or an error?
if BitAnd(ErrorType, me.kE_WARNING) = me.kE_WARNING then
// if user decided to ignore, we'll ignore
if IgnoreWarnings then Return 0
d.Message="A warning occurred while processing your PDF code."
// we add a third button to display all warnings
d.AlternateActionButton.Caption = "Ignore warnings"
d.AlternateActionButton.Visible = true
else
d.Message="An error occurred while processing your PDF code."
end if
d.Explanation = str(ErrorCode)+": "+ErrorMessage
b=d.ShowModal //display the dialog
Select Case b //determine which button was pressed.
Case d.ActionButton
Return 0 // ignore
Case d.AlternateActionButton
IgnoreWarnings = true
Return 0 // ignore
Case d.CancelButton
Return -1 // stop
End select
End EventHandler
Property IgnoreWarnings As Boolean
End Class
End Project
See also:
- /DynaPDF/DynaPDF Graphics/DynaPDF Graphics
- /DynaPDF/DynaPDF Graphics/DynaPDF Graphics iOS
- /DynaPDF/DynaPDF Graphics/DynaPDF GraphicsPath
- /DynaPDF/DynaPDF Graphics/ListBoxReport
- /DynaPDF/DynaPDF Graphics/Reporting/List Of Products
- /DynaPDF/DynaPDF Graphics/VectorGraphics
- /DynaPDF/DynaPDF Graphics/VectorGraphics Alignments
- /DynaPDF/DynaPDF Makros
- /DynaPDF/DynaPDF Transparency Color Test
- /DynaPDF/DynaPDF transparent images/DynaPDF transparent images console
The items on this page are in the following plugins: MBS DynaPDF Plugin.
