Generate Free Text Invoice QR Code in d365fo x++ Code: using Microsoft.Dynamics.ApplicationSuite.QRCode; using QR = QRCoder; class FreeTextInvoiceQRCode { int qrCodeByteArrIndex; System.Byte[] qrCodeByteArray; private static DSSLFreeTextInvoiceQRCode objGAZTQRCode; private void new() { } public static DSSLFreeTextInvoiceQRCode construct() { return (objGAZTQRCode) ? objGAZTQRCode : new DSSLFreeTextInvoiceQRCode(); } public container generate(str _companyName, str _companyVat, utcdatetime _postedDateTime, real _vatAmount, real _amountIncVat) { str strCompanyName, strVATNum, strDateTime, strTotalVATAmount, strTotalAmountIncVAT, strQrCodeBase64, strTime; int intCompanyName, intVATNum, intDateTime, intTotalVATAmount, intTotalAmountIncVAT; int qrByteArrayLength; container ...