I cannot save the whole page as pdf,some text is missing
You should try to apply the theme to a real invoice and safe s PDF. The Themes preview would not render the custom content as you may have noticed but a real invoice would
Please show copies of the edit and view screen of this invoice
What version of Manager are you using?
What setting have you got under Settings/Legacy features?
What do you get of you use Print and then Save as Pdf?
when i print ,i get every text
when save s pdf ,some text is missing
am using windows single user version of manager
condition of sale portion is missing when saved as PDF
Maybe there is a mistake in your custom theme it seems a bit off.
You have only shown the top of the sales invoice on the edit screen - the interesting portion is the bottom of it
Indeed where the information of the custom field should have been entered.
i also thought so,maybe there is a mistake in the theme
@AIRPRO, the Edit screen for your sales invoice (which you have given the custom title of TAX INVOICE) shows that you have no custom field created for sales invoices. If you did, there would be a section at the bottom, directly above the Update and Delete buttons, that included all custom fields. In case you are not aware, custom fields must be created separately for every type of transaction.
In fact, the absence of custom fields in the Edit screen shot of invoice 1529 in post #13 and the presence of one in the View screen shot of post #7 strongly suggests you have two different business files with the same name (and potentially some of the same transactions).
Your screen shot of the theme is useless, because it cannot be scrolled to view the code. If you are going to paste in a theme, you need to copy the code itself and paste that in, not take a screen shot of it.
I also wonder why you have apparently created a custom theme with the same name as the default, Plain, theme. That is poor practice, because you cannot tell them apart. This raises the possibility that one of the screen shots mentioned above was captured using one Plain them (the built-in one) and the other using your self-created Plain theme, which could have errors.
Before any questions about creating PDFs can be resolved, you need to sort out the confusion over duplicate businesses and themes. If the problem comes with a custom theme that you gave the same name as a built-in theme, you may have taken out the code that prints custom fields. But we cannot tell, because we cannot see the code.
The section called “condition of sale” is located outside the printable table. You need to place it inside the table.
The HTML is poor. Your <table>
has no end </table>
.
Have a look at:
https://www.w3schools.com/html/html_tables.asp
to see how a html table should be build, including rows and columns.
You should fix your code.
Use <br>
instead of <table>
to create new lines and close all open tags as @ries suggested.
got it,
Thanks all