Browse Source

Mar 27 [UPDT] : Updated 'base_accounting_kit'

pull/313/head
AjmalCybro 1 year ago
parent
commit
c1c3106e1d
  1. 6
      base_accounting_kit/__manifest__.py
  2. 5
      base_accounting_kit/doc/RELEASE_NOTES.md
  3. 6
      base_accounting_kit/models/account_asset.py
  4. 14
      base_accounting_kit/report/account_bank_book_view.xml
  5. 16
      base_accounting_kit/report/account_cash_book_view.xml
  6. 16
      base_accounting_kit/report/account_day_book_view.xml
  7. 12
      base_accounting_kit/report/cash_flow_report.xml
  8. 16
      base_accounting_kit/report/general_ledger_report.xml
  9. 28
      base_accounting_kit/report/multiple_invoice_layouts.xml
  10. 20
      base_accounting_kit/report/multiple_invoice_report.xml
  11. 16
      base_accounting_kit/report/report_aged_partner.xml
  12. 21
      base_accounting_kit/report/report_financial.xml
  13. 16
      base_accounting_kit/report/report_journal_audit.xml
  14. 16
      base_accounting_kit/report/report_partner_ledger.xml
  15. 2
      base_accounting_kit/report/report_tax.xml
  16. 8
      base_accounting_kit/report/report_trial_balance.xml
  17. 0
      base_accounting_kit/static/description/assets/modules/5.png

6
base_accounting_kit/__manifest__.py

@ -21,11 +21,11 @@
#############################################################################
{
'name': 'Odoo 17 Full Accounting Kit',
'version': '17.0.1.0.1',
'version': '17.0.1.0.2',
'category': 'Accounting',
'summary': """Odoo 17 Accounting, Asset and Budget Management,
Accounting Reports, PDC,
Lock dates, Credit Limit, Follow Ups, Day-Bank-Cash book reports.""",
Accounting Reports, PDC,
Lock dates, Credit Limit, Follow Ups, Day-Bank-Cash book reports.""",
'description': """ Odoo 17 Accounting, The module used to manage the Full
Account Features that can manage the Account Reports,Journals Asset and
Budget Management, Accounting Reports, PDC, Lock dates, Credit Limit,

5
base_accounting_kit/doc/RELEASE_NOTES.md

@ -9,3 +9,8 @@
#### Version 17.0.1.0.1
##### UPDT
- Bug Fix-Resolved the alignment issues.
#### 13.03.2024
#### Version 17.0.1.0.2
##### UPDT
- Bug Fix-Resolved the style issues in report templates.

6
base_accounting_kit/models/account_asset.py

@ -720,14 +720,10 @@ class AccountAssetDepreciationLine(models.Model):
'depreciation_date') or line.depreciation_date or
fields.Date.context_today(
self))
today_date = self._context.get('date') or fields.Date.today()
company = self.env['res.company'].browse(
self._context.get('company_id')) or self.env.company
company_currency = line.asset_id.company_id.currency_id
current_currency = line.asset_id.currency_id
amount = current_currency.with_context(
date=depreciation_date)._convert(line.amount, company_currency,
company, today_date)
date=depreciation_date).compute(line.amount, company_currency)
asset_name = line.asset_id.name + ' (%s/%s)' % (
line.sequence, len(line.asset_id.depreciation_line_ids))
partner = self.env['res.partner']._find_accounting_partner(

14
base_accounting_kit/report/account_bank_book_view.xml

@ -85,15 +85,15 @@
<span t-esc="account['code']"/>
<span t-esc="account['name']"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="account['debit']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="account['credit']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="account['balance']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
@ -120,22 +120,22 @@
<td>
<span t-esc="line['lname']"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="line['debit']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="line['credit']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="line['balance']"
t-options="{'widget': 'monetary',
'display_currency': env.company.currency_id}"/>
</td>
<td t-if="line['amount_currency']"
class="text-right"
class="text-end"
groups="base.group_multi_currency">
<span t-esc="line['amount_currency'] if
line['amount_currency'] > 0.00 else ''"/>

16
base_accounting_kit/report/account_cash_book_view.xml

@ -64,7 +64,7 @@
<br/>
<table class="table table-condensed">
<thead>
<tr class="text-left">
<tr class="text-centre">
<th>Date</th>
<th>JRNL</th>
<th>Partner</th>
@ -88,19 +88,19 @@
<span t-esc="account['code']"/>
<span t-esc="account['name']"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="account['debit']"
t-options="{'widget': 'monetary',
'display_currency':
env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="account['credit']"
t-options="{'widget':
'monetary', 'display_currency':
env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="account['balance']"
t-options="{'widget': 'monetary',
'display_currency':
@ -129,26 +129,26 @@
<td>
<span t-esc="line['lname']"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="line['debit']"
t-options="{'widget': 'monetary',
'display_currency':
env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="line['credit']"
t-options="{'widget': 'monetary',
'display_currency':
env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="line['balance']"
t-options="{'widget': 'monetary',
'display_currency':
env.company.currency_id}"/>
</td>
<td t-if="line['amount_currency']"
class="text-right"
class="text-end"
groups="base.group_multi_currency">
<span t-esc="line['amount_currency']
if line['amount_currency'] > 0.00 else

16
base_accounting_kit/report/account_day_book_view.xml

@ -36,7 +36,7 @@
</div>
<table class="table table-condensed">
<thead>
<tr class="text-left">
<tr class="text-centre">
<th>Date</th>
<th>JRNL</th>
<th>Partner</th>
@ -57,19 +57,19 @@
<span style="color: white;" t-esc="'..'"/>
<span t-esc="account['date']"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="account['debit']"
t-options="{'widget': 'monetary',
'display_currency':
env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="account['credit']"
t-options="{'widget': 'monetary',
'display_currency':
env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="account['balance']"
t-options="{'widget': 'monetary',
'display_currency':
@ -98,26 +98,26 @@
<td>
<span t-esc="line['lname']"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="line['debit']"
t-options="{'widget': 'monetary',
'display_currency':
env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="line['credit']"
t-options="{'widget': 'monetary',
'display_currency':
env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="line['balance']"
t-options="{'widget': 'monetary',
'display_currency':
env.company.currency_id}"/>
</td>
<td t-if="line['amount_currency']"
class="text-right"
class="text-end"
groups="base.group_multi_currency">
<span t-esc="line['amount_currency']
if line['amount_currency'] > 0.00 else

12
base_accounting_kit/report/cash_flow_report.xml

@ -30,7 +30,7 @@
</div>
<table class="table table-sm table-reports">
<thead>
<tr class="text-left">
<tr class="text-centre">
<th>
<strong>Name</strong>
</th>
@ -70,8 +70,8 @@
t-esc="a.get('name')"/>
</td>
<td t-if="data['debit_credit']"
class="text-right"
style="white-space: text-nowrap;">
class="text-end"
style="white-end: text-nowrap;">
<span t-att-style="style"
t-esc="a.get('debit')"
t-if="data['debit_credit']"
@ -81,7 +81,7 @@
env.company.currency_id}"/>
</td>
<td t-if="data['debit_credit']"
class="text-right"
class="text-end"
style="white-space: text-nowrap;">
<span t-att-style="style"
t-esc="a.get('credit')"
@ -91,7 +91,7 @@
'display_currency':
env.company.currency_id}"/>
</td>
<td class="text-right"
<td class="text-end"
style="white-space: text-nowrap;">
<span t-att-style="style"
t-esc="a.get('balance')"
@ -100,7 +100,7 @@
'display_currency':
env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-att-style="style"
t-esc="a.get('balance_cmp')"
t-if="data['enable_filter']"

16
base_accounting_kit/report/general_ledger_report.xml

@ -62,7 +62,7 @@
</div>
<table class="table table-sm table-reports">
<thead>
<tr class="text-left">
<tr class="text-centre">
<th>Date</th>
<th>JRNL</th>
<th>Partner</th>
@ -86,19 +86,19 @@
<span t-esc="account['code']"/>
<span t-esc="account['name']"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="account['debit']"
t-options="{'widget': 'monetary',
'display_currency':
env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="account['credit']"
t-options="{'widget': 'monetary',
'display_currency':
env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="account['balance']"
t-options="{'widget': 'monetary',
'display_currency':
@ -127,26 +127,26 @@
<td>
<span t-esc="line['lname']"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="line['debit']"
t-options="{'widget': 'monetary',
'display_currency':
env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="line['credit']"
t-options="{'widget': 'monetary',
'display_currency':
env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="line['balance']"
t-options="{'widget': 'monetary',
'display_currency':
env.company.currency_id}"/>
</td>
<t t-if="line['amount_currency']">
<td class="text-right"
<td class="text-end"
groups="base.group_multi_currency">
<span t-esc="line['amount_currency']
if line['amount_currency'] > 0.00

28
base_accounting_kit/report/multiple_invoice_layouts.xml

@ -143,7 +143,7 @@
<h4 class="mt0" t-field="company.report_header"/>
<div name="company_address" class="float-right mb4">
<span t-if="company.company_details"
t-field="company.company_details"></span>
t-field="company.company_details"/>
<!--Header-->
<t t-if="mi_type == 'text'">
<t t-if="txt_position == 'header'">
@ -361,12 +361,12 @@
alt="Logo"/>
<div class="float-left company_address">
<span t-if="company.company_details"
t-field="company.company_details"></span>
t-field="company.company_details"/>
</div>
<!--Header-->
<t t-if="mi_type == 'text'">
<t t-if="txt_position == 'header'">
<div t-if="txt_align == 'right'" class="text-right"
<div t-if="txt_align == 'right'" class="text-end"
style="position: relative; top: 50px;">
<span t-esc="mi.copy_name"
style="font-size: 20px;"/>
@ -415,7 +415,7 @@
<!--Footer-->
<t t-if="mi_type == 'text'">
<t t-if="txt_position == 'footer'">
<div t-if="txt_align == 'right'" class="text-right">
<div t-if="txt_align == 'right'" class="text-end">
<span t-esc="mi.copy_name"
style="font-size: 15px;"/>
</div>
@ -497,7 +497,7 @@
<table class="table table-sm o_main_table"
name="invoice_line_table">
<thead>
<tr class="text-left">
<tr class="text-centre">
<th name="th_description">
<span>Description</span>
</th>
@ -526,16 +526,16 @@
Grey Colour
</span>
</td>
<td class="text-right">
<td class="text-end">
<span>5.000</span>
</td>
<td class="text-right d-none d-md-table-cell">
<td class="text-end d-none d-md-table-cell">
<span class="text-nowrap">1,500.00</span>
</td>
<td class="text-left d-none d-md-table-cell">
<span id="line_tax_ids">15.00%</span>
</td>
<td class="text-right o_price_total">
<td class="text-end o_price_total">
<span class="text-nowrap">$
<span class="oe_currency_value">
7,500.00
@ -550,16 +550,16 @@
Four person modern office workstation
</span>
</td>
<td class="text-right">
<td class="text-end">
<span>5.000</span>
</td>
<td class="text-right d-none d-md-table-cell">
<td class="text-end d-none d-md-table-cell">
<span class="text-nowrap">23,500.00</span>
</td>
<td class="text-left d-none d-md-table-cell">
<span id="line_tax_ids">15.00%</span>
</td>
<td class="text-right o_price_total">
<td class="text-end o_price_total">
<span class="text-nowrap">$
<span class="oe_currency_value">
117,500.00
@ -580,7 +580,7 @@
<td>
<strong>Subtotal</strong>
</td>
<td class="text-right">
<td class="text-end">
<span>$
<span class="oe_currency_value">
125,000.00
@ -594,7 +594,7 @@
15%
</span>
</td>
<td class="text-right o_price_total">
<td class="text-end o_price_total">
<span class="text-nowrap">$
18,750.00
</span>
@ -604,7 +604,7 @@
<td>
<strong>Total</strong>
</td>
<td class="text-right">
<td class="text-end">
<span class="text-nowrap">$
<span class="oe_currency_value">
143,750.00

20
base_accounting_kit/report/multiple_invoice_report.xml

@ -84,7 +84,7 @@
<table class="table table-sm o_main_table"
name="invoice_line_table">
<thead>
<tr class="text-left">
<tr class="text-centre">
<th name="th_description" >
<span>Description</span>
</th>
@ -143,19 +143,19 @@
<span t-field="line.name"
t-options="{'widget': 'text'}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-field="line.quantity"/>
<span t-field="line.product_uom_id"
groups="uom.group_uom"/>
</td>
<td t-attf-class="text-right
<td t-attf-class="text-end
{{ 'd-none d-md-table-cell' if
report_type == 'html' else '' }}">
<span class="text-nowrap"
t-field="line.price_unit"/>
</td>
<td t-if="display_discount"
t-attf-class="text-right
t-attf-class="text-end
{{ 'd-none d-md-table-cell' if report_type == 'html' else '' }}">
<span class="text-nowrap"
t-field="line.discount"/>
@ -168,7 +168,7 @@
line.tax_ids))"
id="line_tax_ids"/>
</td>
<td class="text-right o_price_total">
<td class="text-end o_price_total">
<span class="text-nowrap"
t-field="line.price_subtotal"
groups="account.group_show_line_subtotals_tax_excluded"/>
@ -194,7 +194,7 @@
</tr>
<t t-if="current_section and (line_last or
lines[line_index+1].display_type == 'line_section')">
<tr class="is-subtotal text-right">
<tr class="is-subtotal text-end">
<td colspan="99">
<strong class="mr16">Subtotal</strong>
<span
@ -219,7 +219,7 @@
<td>
<strong>Subtotal</strong>
</td>
<td class="text-right">
<td class="text-end">
<span t-field="o.amount_untaxed"/>
</td>
</tr>
@ -235,7 +235,7 @@
<span class="text-nowrap"
t-esc="amount_by_group[0]"/>
</td>
<td class="text-right o_price_total">
<td class="text-end o_price_total">
<span class="text-nowrap"
t-esc="amount_by_group[3]"/>
</td>
@ -247,7 +247,7 @@
<t t-esc="amount_by_group[4]"/>
</span>
</td>
<td class="text-right o_price_total">
<td class="text-end o_price_total">
<span class="text-nowrap"
t-esc="amount_by_group[3]"/>
</td>
@ -258,7 +258,7 @@
<td>
<strong>Total</strong>
</td>
<td class="text-right">
<td class="text-end">
<span class="text-nowrap"
t-field="o.amount_total"/>
</td>

16
base_accounting_kit/report/report_aged_partner.xml

@ -50,7 +50,7 @@
</div>
<table class="table table-sm table-reports">
<thead>
<tr class="text-left">
<tr class="text-centre">
<th>Partners</th>
<th>
<span>Not due</span>
@ -113,31 +113,31 @@
<td>
<span t-esc="partner['name']"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="partner['direction']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="partner['4']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="partner['3']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="partner['2']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="partner['1']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="partner['0']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="partner['total']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>

21
base_accounting_kit/report/report_financial.xml

@ -7,7 +7,7 @@
<t t-set="data_report_header_spacing" t-value="9"/>
<t t-set="data_report_dpi" t-value="110"/>
<div class="page">
<h2 t-esc="data['form']['account_report_id'][1]"/>
<h2 class="text-centre" t-esc="data['form']['account_report_id'][1]"/>
<div class="row mt32 mb32">
<div class="col-4">
<strong>Target Moves:</strong>
@ -37,8 +37,8 @@
<table class="table table-sm table-reports"
t-if="data['form']['debit_credit'] == 1">
<thead>
<tr class="text-left">
<th>Name</th>
<tr class="text-centre">
<th class="text-start">Name</th>
<th>Debit</th>
<th>Credit</th>
<th>Balance</th>
@ -55,26 +55,25 @@
<t t-set="style"
t-value="'font-weight: bold;'"/>
</t>
<td>
<span style="color: white;"
t-esc="'..' * a.get('level', 0)"/>
<span t-att-style="style"
t-esc="a.get('name')"/>
</td>
<td class="text-right"
<td class="text-end"
style="white-space: text-nowrap;">
<span t-att-style="style"
<span t-att-style="style" style="text-align:center; !important"
t-esc="a.get('debit')"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right"
<td class="text-end"
style="white-space: text-nowrap;">
<span t-att-style="style"
t-esc="a.get('credit')"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right"
<td class="text-end"
style="white-space: text-nowrap;">
<span t-att-style="style"
t-esc="a.get('balance')"
@ -110,7 +109,7 @@
<span t-att-style="style"
t-esc="a.get('name')"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-att-style="style"
t-esc="a.get('balance')"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
@ -147,12 +146,12 @@
<span t-att-style="style"
t-esc="a.get('name')"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-att-style="style"
t-esc="a.get('balance')"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-att-style="style"
t-esc="a.get('balance_cmp')"/>
</td>

16
base_accounting_kit/report/report_journal_audit.xml

@ -44,7 +44,7 @@
</div>
<table class="table table-sm">
<thead>
<tr class="text-left">
<tr class="text-centre">
<th>Move</th>
<th>Date</th>
<th>Account</th>
@ -74,15 +74,15 @@
<td>
<span t-esc="aml.name and aml.name[:35]"/>
</td>
<td>
<td class="text-end">
<span t-esc="aml.debit"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td>
<td class="text-end">
<span t-esc="aml.credit"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td t-if="data['form']['amount_currency'] and aml.amount_currency">
<td class="text-end" t-if="data['form']['amount_currency'] and aml.amount_currency">
<span t-esc="aml.amount_currency"
t-options="{'widget': 'monetary', 'display_currency': aml.currency_id}"/>
</td>
@ -96,11 +96,11 @@
<td>
<strong>Total</strong>
</td>
<td>
<td class="text-end">
<span t-esc="sum_debit(data, o)"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td>
<td class="text-end">
<span t-esc="sum_credit(data, o)"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
@ -130,11 +130,11 @@
<td>
<span t-esc="tax.name"/>
</td>
<td>
<td class="text-end">
<span t-esc="taxes[tax]['base_amount']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td>
<td class="text-end">
<span t-esc="taxes[tax]['tax_amount']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>

16
base_accounting_kit/report/report_partner_ledger.xml

@ -36,7 +36,7 @@
</div>
<table class="table table-sm table-reports">
<thead>
<tr class="text-left">
<tr class="text-centre">
<th>Date</th>
<th>JRNL</th>
<th>Account</th>
@ -57,15 +57,15 @@
-
<strong t-esc="o.name"/>
</td>
<td class="text-right">
<td class="text-end">
<strong t-esc="sum_partner(data, o, 'debit')"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<strong t-esc="sum_partner(data, o, 'credit')"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<strong t-esc="sum_partner(data, o, 'debit - credit')"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
@ -83,25 +83,25 @@
<td>
<span t-esc="line['displayed_name']"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="line['debit']"
t-options="{'widget': 'monetary',
'display_currency':
env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="line['credit']"
t-options="{'widget': 'monetary',
'display_currency':
env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-esc="line['progress']"
t-options="{'widget': 'monetary',
'display_currency':
env.company.currency_id}"/>
</td>
<td class="text-right"
<td class="text-end"
t-if="data['form']['amount_currency']">
<t t-if="line['currency_id']">
<span t-esc="line['amount_currency']"

2
base_accounting_kit/report/report_tax.xml

@ -27,7 +27,7 @@
</div>
<table class="table table-sm table-reports">
<thead>
<tr class="text-left">
<tr class="text-centre">
<th>Sale</th>
<th>Net</th>
<th>Tax</th>

8
base_accounting_kit/report/report_trial_balance.xml

@ -51,7 +51,7 @@
</div>
<table class="table table-sm table-reports">
<thead>
<tr class="text-left">
<tr class="text-centre">
<th>Code</th>
<th>Account</th>
<th class="text-right">Debit</th>
@ -70,19 +70,19 @@
<span t-att-style="style"
t-esc="account['name']"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-att-style="style"
t-esc="account['debit']"
t-options="{'widget': 'monetary',
'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-att-style="style"
t-esc="account['credit']"
t-options="{'widget': 'monetary',
'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<td class="text-end">
<span t-att-style="style"
t-esc="account['balance']"
t-options="{'widget': 'monetary',

0
base_accounting_kit/static/description/assets/modules/5.png

Before

Width:  |  Height:  |  Size: 68 KiB

After

Width:  |  Height:  |  Size: 68 KiB

Loading…
Cancel
Save