PriceList: Footer problem

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 年 前
Hi,
Price list header addto the price list instead of footer!
The problem is here:
nopCommerce_1.90_Source\Libraries\Nop.BusinessLogic\Products\Pricelist.cs at:

            // write footer, if provided
            if (!String.IsNullOrEmpty(this.Footer))
            {
                strContents += this.Header;
                if (!this.Footer.EndsWith("\n"))
                    strContents += "\n";
            }


code must become:

            // write footer, if provided
            if (!String.IsNullOrEmpty(this.Footer))
            {
                strContents += this.Footer;
                if (!this.Footer.EndsWith("\n"))
                    strContents += "\n";
            }
13 年 前
Thanks for info
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.