Want to add serial Number and amount in word

i want ot add this template in Serial Numbering and amount in word remaining should be same .

please help

i have this Theme

    <table style="margin-bottom: 10px"><tr>
    <td style="font-weight: bold;font-size: 32px;  background-color: #fff; border-color: #fff; border-bottom-width: 5px; padding: 20px; vertical-align: bottom; color: ##E9967A">{{ title }}</td>
                {% if business.logo != null %}<td style="text-align: right"><img src="{{ business.logo }}" style="max-height: 150px; max-width: 300px"></td>{% endif %}
            </tr></table>

    <table style="margin-bottom: 10px"><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 %}

{% if field.label == ‘Due date’ %}{% assign duedate = field.text %}{% endif %}
{% if field.label == ‘Invoice date’ %}{% assign invoicedate = field.text %}{% endif %}
{% if field.label == ‘Due date’ %}{% if duedate == invoicedate %}{% continue %}{% endif %}{% endif %}

{{ field.label }}
{{ field.text }}
{% endfor %}
{{ business.name }}
{{ business.address | newline_to_br }}
{{ business.identifier }}
            <div style="font-size: 14px; font-weight: bold; margin-bottom: 20px">{{ description }}</div>
        </td>
    </tr>
    <tr> {% assign i = i | plus: 1 %}
        {% for column in table.columns %}      
        <td style="font-weight: bold; border-top-width:1px; border-left-width: 1px; padding: 1px 2px; color: #000; border-color: #2f4f4f; border-right-width: 1px; border-bottom-width: 1px; text-align: {{ column.align }}; background-color: #d2b48c{% if column.nowrap %}; white-space: nowrap; width: 10px{% endif %}">{{ column.label }}</td>
        {% endfor %}
    </tr>
</thead>
<tbody>
    {% for row in table.rows %}
    <tr>{% assign i = i | plus: 1 %}
        {% for cell in row.cells %}
        <td style="padding: 1px 2px; background-color: #FFFFFF;  border-left-width: 1px; border-color: #2f4f4f;   border-right-width: 1px; border-bottom-width: 1px; text-align: {{ table.columns[forloop.index0].align }}{% if table.columns[forloop.index0].nowrap %}; white-space: nowrap; width: 10px{% endif %}">{{ cell.text | newline_to_br }}</td>
        {% endfor %}
    </tr>
    {% endfor %}
    <tr><td colspan="{{ table.columns | size }}" style="border-color: #2f4f4f;  border-left-width: 1px; border-right-width: 1px; border-bottom-width: 1px; background-color: #d2b48c">&nbsp;</td></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; font-size: 18px{% endif %}">{{ total.label }}</td>
        <td style="border-color: #000; 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>
{% 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 %}
        
</tbody>

Please do not send private messages with general questions like this. Your post has been moved to the public forum.


See these Guides:
https://www.manager.io/guides/10303
https://www.manager.io/guides/7178

Beyond that, writing and troubleshooting custom themes is your own responsibility. If you do not have the necessary skills, hire a local programmer.

can you please add in my coding
serial number and amount in word

No. That is your responsibility. The Guides tell you how. Adding the amount in words does not even require a custom theme.