Bill of Supply

Hi friends,
Greetings of the day!
Please help me, on how to get invoice name as bill of supply. Due to As per Indian GST act, A taxpayer whose turnover is less than Rs 75 lakh can opt for composition scheme. A dealer opting for composition scheme has to deposit tax on their receipts themselves, they are not allowed to collect any tax from their buyers. The GST has to be paid out of pocket by the composition dealer. They cannot charge GST in the invoice.

Thus a composition dealer has to raise a Bill of Supply instead of a Tax Invoice.

B4ALLB4U

See this Guide: https://www.manager.io/guides/7877.

1 Like

Wow, thanks Tut, This is the beauty of Manager. Once again thanks a lot Tut. You saved my time and guided in simply way.

@B4ALLB4U Please Share The invoice templeate you are using as I am new here and I am facing difficulty in creating a new theme.

Hi, Please find the Inv Template.

{% if business.logo != null %}{% endif %}
{{ title }}
            <table style="margin-bottom: 20px"><tr>
                <td>
                    <div><b>{{ recipient.name }}</b> {{ recipient.code }}</div>
                    <div>{{ recipient.address | newline_to_br }}</div>
                    <div>{{ recipient.identifier }}</div>
                </td>
                <td style="border-right-width: 1px; padding-right: 20px; text-align: right">
                    {% for field in fields %}
                    <div style="font-weight: bold">{{ field.label }}</div>
                    <div style="margin-bottom: 10px">{{ field.text }}</div>
                    {% endfor %}
                </td>
                <td style="padding-left: 20px; width: 1px; white-space: nowrap">
                    <div style="font-weight: bold">{{ business.name }}</div>
                    <div>{{ business.address | newline_to_br }}</div>
                    <div>{{ business.identifier }}</div>
                </td>
            </tr></table>

            <div style="font-size: 14px; font-weight: bold; margin-bottom: 20px">{{ description }}</div>
        </td>
    </tr>
    <tr>
        {% for column in table.columns %}            
        <td style="font-weight: bold; padding: 5px 10px; text-align: {{ column.align }}; border-left-width: 1px; border-bottom-width: 1px; border-top-width: 1px{% if forloop.last == true %}; border-right-width: 1px{% endif %}{% if column.nowrap %}; white-space: nowrap; width: 80px{% endif %}">{{ column.label }}</td>
        {% endfor %}
    </tr>
</thead>
<tbody>
    {% for row in table.rows %}
    <tr>
        {% for cell in row.cells %}
        <td style="padding: 5px 10px; text-align: {{ table.columns[forloop.index0].align }}; border-left-width: 1px{% if forloop.last == true %}; border-right-width: 1px{% endif %}{% if table.columns[forloop.index0].nowrap %}; white-space: nowrap; width: 80px{% endif %}">{{ cell.text | newline_to_br }}</td>
        {% endfor %}
    </tr>
    {% endfor %}
    <tr>
    {% for column in table.columns %}            
        <td style="border-bottom-width: 1px; border-left-width: 1px{% if forloop.last == true %}; border-right-width: 1px{% endif %}">&nbsp;</td>
    {% endfor %}
    </tr>
    {% for total in table.totals %}
    <tr>
        <td colspan="{{ table.columns | size | minus:1 }}" style="padding: 5px 10px; text-align: right{% if total.emphasis == true %}; font-weight: bold{% endif %}">{{ total.label }}</td>
        <td style="border-left-width: 1px; white-space: nowrap; border-right-width: 1px; border-bottom-width: 1px; padding: 5px 10px; text-align: right{% if total.emphasis == true %}; font-weight: bold{% endif %}">{{ total.text }}</td>
    </tr>
    {% endfor %}

    {% for field in custom_fields %}
    <tr>
        <td colspan="99">
            <div style="font-weight: bold; padding-top: 20px">{{ field.label }}</div>
            <div>{{ field.text | newline_to_br }}</div>
        </td>
    </tr>
    {% endfor %}

    {% if emphasis.text != null and emphasis.positive %}
    <tr><td colspan="99"><div style="text-align: center; margin-top: 40px"><span style="color: #006400; border-width: 5px; border-color: #006400; padding: 10px; font-size: 20px">{{ emphasis.text | upcase }}</span></div></td></tr>
    {% endif %}

    {% if emphasis.text != null and emphasis.negative %}
    <tr><td colspan="99"><div style="text-align: center; margin-top: 40px"><span style="color: #FF0000; border-width: 5px; border-color: #FF0000; padding: 10px; font-size: 20px">{{ emphasis.text | upcase }}</span></div></td></tr>
    {% endif %}
      <tfoot>
    <tr><td colspan="99" style="padding-top: 30px">
            <div style="position:relative;text-align:center;border:0px solid black; float:right; width:200px; height:75px; ">
            <div style="position: absolute; top: 0; right:0; left:0;"><b>For COMPUTER SOLUTIONS</b></b></div>
              <div style="position: absolute; bottom: 0;right:0; left:0;"><i>Authorised signature</i>
            </div>
    </td></tr
   
</tfoot>
</table>
 <div style="font-weight: bold; padding-top: 20px; text-align:center;border:2px solid black;width:100%">THANK YOU FOR CHOOSING MANAGER Akaunting SOFTWARE. WE ARE ALWAYS HAPPY TO SERVE U.</div>
</div>
1 Like

Do have similar template for Tax Invoice also, if yes then please provide.

Thanks in advance @B4ALLB4U😊

I pasted it but result is not same as yours.