crovel Posted March 25, 2010 Share Posted March 25, 2010 Do you know If we can change Invoice in our PrestaShop?I am asking because there is not information about seller!!! There should be sellers' address!!! Link to comment Share on other sites More sharing options...
rocky Posted March 26, 2010 Share Posted March 26, 2010 Did you enter the seller's information under Preferences > Contact? That address will be displayed at the top of the invoice.Unfortunately, there is no simple way to edit the invoice. You must modify the code in classes/PDF.pdf. Prestashop uses FPDF to write the PDF file. Link to comment Share on other sites More sharing options...
crovel Posted March 26, 2010 Author Share Posted March 26, 2010 Hi rocky,In Preferences>Contacts have been enter (shop name,shop email,shop address) by me. All the above information are included but.......on the bottom, as Headquarters?In my opinion it should be on the top,there are just delivery and invoice address (my customer's)? Link to comment Share on other sites More sharing options...
bigboy16 Posted March 27, 2010 Share Posted March 27, 2010 just modify fpdf settingif just change the format, it can be.but if edit the invoice, i don't think so Link to comment Share on other sites More sharing options...
lp.boe Posted April 1, 2010 Share Posted April 1, 2010 I agree on this. The sellers information should be displayed at the top like the customers information. This is how I expect to see for all my invoice, both incoming and outgoing. The "body" of an invoice should be Seller, Buyer, Products, Taxes, Sum of the sale and maybe some additional info. Link to comment Share on other sites More sharing options...
Bubblemaker Posted September 21, 2010 Share Posted September 21, 2010 the solution for this problem is simple, instead of the logo on the top of your invoice, use an image with all of your shop's details (shop name,shop email,shop address) you can even create an image containing the logo and the details. Link to comment Share on other sites More sharing options...
Vyga Posted January 23, 2011 Share Posted January 23, 2011 is there any other way to display information about seller instead of customer's on the top of invoice ? Link to comment Share on other sites More sharing options...
dccruibay0 Posted January 24, 2011 Share Posted January 24, 2011 as the seller i agreed on purchase price offer and shipping reduction due to more than one item being purchased. how can i change the price on the invoice so the buyer can pay the agreed price? Link to comment Share on other sites More sharing options...
SoftMano Posted March 11, 2011 Share Posted March 11, 2011 The modified invoice modul (pdf.php) is available on www.prestaworld.info<br/><br/>This contain the seller information in top of the invoice.<br/><br/>If you have any idea with invoice, please ask it. Link to comment Share on other sites More sharing options...
salko Posted April 6, 2011 Share Posted April 6, 2011 I have disabled tax in BO, but it still shows on PDF invoice. Now I would like to know how can I edit PDF.php to remove all tax (DDV) specification on the invoice (see picture). Because I'm not VAT registered I cannot show tax on invoice, only price of products, shipping and total price (price of products + shipping). Thank you for help! Link to comment Share on other sites More sharing options...
Ulisses Ramos Posted August 28, 2011 Share Posted August 28, 2011 The modified invoice modul (pdf.php) is available on www.prestasoft.co.cc<br/><br/>This contain the seller information in top of the invoice.<br/><br/>If you have any idea with invoice, please ask it. The link is unavailable. A nice feature would be to have the product image cover added to the invoice. In the new image file system like: p/4/5/6/456.jpg Link to comment Share on other sites More sharing options...
SoftMano Posted August 29, 2011 Share Posted August 29, 2011 Hi, you can find the Invoice modification on www.prestaworld.info Sorry, the domain name was changed. Link to comment Share on other sites More sharing options...
cerovic Posted August 30, 2011 Share Posted August 30, 2011 the solution for this problem is simple, instead of the logo on the top of your invoice, use an image with all of your shop's details (shop name,shop email,shop address) you can even create an image containing the logo and the details. I agree that the simplest solution is to substitute the company logo by logo with company information. I also had the same idea. However the process is not so easy, since you have set the maximum height of invoice logo to 72 px, so the invoice logo with seller information looks like the attachment. So I tried to change the 72 px limit in fpdf.php Original piece of code: if($unit=='pt') $this->k=1; elseif($unit=='mm') $this->k=72/25.4; elseif($unit=='cm') $this->k=72/2.54; elseif($unit=='in') $this->k=72; Substitute: if($unit=='pt') $this->k=1; elseif($unit=='mm') $this->k=235/82.9; elseif($unit=='cm') $this->k=235/8.29; elseif($unit=='in') $this->k=235; However, the result is still the same, like in the attached image. Does anybody have any point? Link to comment Share on other sites More sharing options...
cerovic Posted September 1, 2011 Share Posted September 1, 2011 nobody any idea? Link to comment Share on other sites More sharing options...
Recommended Posts