Customer Invoice

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 年 前
Hello,

Is it possible to customize the layout of customer invoice (pdf format) to include our more details like senders address etc.

Regards,
13 年 前
yes,

in the full source version, look in

Libraries\Nop.BusinessLogic\Utils

and edit PDFHelper.cs

you will need to rebuild the business logic once you make any changes

I added a footer with the store address ( it's inserted using a new resource string - PDF.StoreOwner.Address )

// Create footer
            Paragraph pdfFooter = sec.Footers.Primary.AddParagraph();
            // my own resource string - the stores physical address
            // i think it would be useful to have a place in admin where you could provide the store address
            pdfFooter.AddText(LocalizationManager.GetLocaleResourceString("PDF.StoreOwner.Address"));
            pdfFooter.Format.Font.Size = 9;
            pdfFooter.Format.Alignment = ParagraphAlignment.Center;




you might want to read the following post

https://www.nopcommerce.com/boards/t/3783/pdf-delivery-note-v15.aspx


regards

Hayden
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.