Hi, I liked this new template created by you . Can u please help me to get rid of that shipped to column from the Invoice as my LOB is Consultancy Service and i do not require that. Your last template prior to this was also perfect just the amount was showing in figures at the top which has been resolved in this template.
@YashSingh, @anoopchintu, @patel8795, and others. Before writing your own custom templates to implement the new GST scheme in India, you should first determine whether recent improvements to Manager deliver what you need. See this new Guide: Guides | Manager.
Ship To is missing and is a legal requirement.
Place Of Supply not available. If additional custom fields are created they all show in the bottom left hand side one below the other. ( These should be shown on top in a vertical line somewhere inbetween ).
Please help.
Note : All Indian users will have to create more custom fields and they all will elongate the sales invoice and will show on the left bottom corner. ( Shifting them to the top will help and improve presentation ).
Thanks in advance.
Please help changing the location of the custom fields. ( Moving them in a more organised manner so that they use less space and don’t elongate the Invoice). The best fit suitable as per your choice.
If you want to customize the look of an invoice, that is really up to you. If you don’t have the coding skills personally, hire someone locally to write the code for you. Please do not impose on other forum members to satisfy your personal preferences for document design.
Right now, the only way to control presentation of custom fields is through custom theme. I do plan to improve custom fields further so you can have them shown side-by-side in more compact way without using custom theme… so either modify custom theme or wait for improvements.
when I used this code I faced a different issue
when the custom field shipped to is left blank it is working fine , i.e it is Populating the Shipped to row with the buyer’s details .this is fine.
but the issue is when I am entering data in the custom field then in stead of showing only the new data provided it is also showing the data which is supposed to be shown when the custom field is left blank
using the above code this is what happened
Shipped to coming twice
one from the data entered in the custom field and the other from the buyers details
I need urgent help in resolving this issue
PLEASE HELP
The field header is in order and I followed the instructions I didn’t tamper with the code and got this result
This is the code I copy pasted from the Forum
indent preformatted text by 4 spaces
{% assign i = 0 %}
{% for row in table.rows %}
{% assign i = i | plus: 1 %}
{% for cell in row.cells %}
{% endfor %}
{% endfor %}
{% for column in table.columns %}
{% endfor %}
{% for total in table.totals %}
{% endfor %}
{% for field in custom_fields %}
{% if title == 'Invoice' %}
{% if field.label != "Notes" %}{% continue %}{% endif %}
{% endif %}
{% endfor %}
{% if title == 'Invoice' %}
{% endif %}
{% if business.logo != null %}{% endif %}
{% if title != 'Invoice' %}{{ title }}{% endif %}{% if title == 'Invoice' %}{{ title | replace: "Invoice", "Tax Invoice" }}{% endif %}