|
setCosts(value)
For costs calculation the value of the costs per meter can be set using setCosts(value) method call. This is only relevant if the “Costs” column is required. This is only relevant for the AutoExecute command. Call by AuxiliaryCommand will be set in another way As parameter the cost value has to be passed. pdf = ReportUtility() myPath = "C:\\Users\\...\\TechnologyCommon\\Standard\\AuxiliaryCommands\\Logos\\" pdf.setHeaderLogo("MyCustomerHeader.jpg") pdf.setFooterLogo("MyCustomerFooter.png") pdf.setCosts(2.56) pdf.createAutoExecutePDFReport(Operator, myPath)
|