Browse Source

Dec 26: [FIX] Bug Fixed 'advanced_vat_invoice'

pull/309/head
Cybrosys Technologies 4 months ago
parent
commit
09e029f074
  1. 2
      advanced_vat_invoice/__manifest__.py
  2. 6
      advanced_vat_invoice/doc/RELEASE_NOTES.md
  3. 53
      advanced_vat_invoice/report/vat_invoice_report_templates.xml

2
advanced_vat_invoice/__manifest__.py

@ -21,7 +21,7 @@
############################################################################### ###############################################################################
{ {
'name': 'e-Invoicing For Saudi | Saudi VAT Invoice | Saudi Electronic Invoice | Saudi Zatca', 'name': 'e-Invoicing For Saudi | Saudi VAT Invoice | Saudi Electronic Invoice | Saudi Zatca',
'version': '17.0.1.0.0', 'version': '17.0.1.1.0',
'category': 'Accounting', 'category': 'Accounting',
'summary': "Module for e-Invoicing For Saudi | Saudi VAT Invoice | Saudi " 'summary': "Module for e-Invoicing For Saudi | Saudi VAT Invoice | Saudi "
"Electronic Invoice | Saudi Zatca", "Electronic Invoice | Saudi Zatca",

6
advanced_vat_invoice/doc/RELEASE_NOTES.md

@ -5,3 +5,9 @@
##### ADD ##### ADD
- Initial Commit for Advanced VAT Invoice - Initial Commit for Advanced VAT Invoice
#### 24.12.2024
#### Version 17.0.1.1.0
##### ADD
- Added total section to the reports

53
advanced_vat_invoice/report/vat_invoice_report_templates.xml

@ -371,6 +371,59 @@
</tr> </tr>
</tbody> </tbody>
</table> </table>
<br/>
<table style="border:2pt solid grey;width:100%;color:black;"
class="table table-bordered table-sm">
<thead>
<tr>
<td width="40%"
style="font-weight: bold;text-align:left;padding:2pt">
Total Taxable
Amount (excl. VAT)
</td>
<td class="amount" width="40%"
style="text-align:right;padding:2pt">إجمالي
المبلغ
الخاضع للضريبة (غير شامل ضريبة القيمة
المضافة)
</td>
<td width="40%"
style="text-align:right;padding:2pt"
class="text-right">
<span t-esc="doc.currency_id.symbol"/>
<span t-esc="doc.amount_untaxed"/>
</td>
</tr>
<tr>
<td style="font-weight: bold;text-align:left;padding:3pt">
Total VAT
</td>
<td class="total"
style="text-align:right;padding:3pt">مجموع
ضريبة القيمة المضافة
</td>
<td style="text-align:right;padding:3pt"
class="text-right">
<span t-esc="doc.currency_id.symbol"/>
<span t-esc="tax_total"/>
</td>
</tr>
<tr>
<td style="font-weight: bold;text-align:left;padding:3pt">
Amount Due
</td>
<td class="due"
style="text-align:right;padding:3pt">اجمالي
المبلغ المستحق
</td>
<td style="text-align:right;padding:3pt"
class="text-right">
<span t-esc="doc.currency_id.symbol"/>
<span t-esc="doc.amount_residual"/>
</td>
</tr>
</thead>
</table>
</t> </t>
</t> </t>
</t> </t>

Loading…
Cancel
Save