Browse Source

:Dec 17 [FIX] Bug Fixed 'dynamic_accounts_report'

16.0
Risvana Cybro 5 days ago
parent
commit
b937406699
  1. 7
      dynamic_accounts_report/doc/RELEASE_NOTES.md
  2. 44
      dynamic_accounts_report/static/src/xml/trial_balance_view.xml

7
dynamic_accounts_report/doc/RELEASE_NOTES.md

@ -59,4 +59,9 @@
### 09.12.2025
### version 16.0.3.0.0,
### UPDT
- Added a new comparison feature in Trial Balance, Profit & Loss, and Balance Sheet reports.
- Added a new comparison feature in Trial Balance, Profit & Loss, and Balance Sheet reports.
### 17.12.2025
### version 16.0.3.0.0,
### BUGFIX
- Fixed the currency type issue that caused NaN values in Trial Balance subtotals.

44
dynamic_accounts_report/static/src/xml/trial_balance_view.xml

@ -263,13 +263,14 @@
<td class="mon_fld" style="">
<strong>
<t t-raw="Math.round(debit_total * Math.pow(10,currency[3] )) / Math.pow(10, currency[3])"/>
<!-- <t t-raw="Math.round(debit_total * Math.pow(10, 2)) / Math.pow(10, 2)"/>-->
<t t-esc="debit_total"/>
<t t-esc="currency[0]"/>
</strong>
</td>
<td class="mon_fld" style="">
<strong>
<t t-raw="Math.round(credit_total * Math.pow(10, currency[3])) / Math.pow(10, currency[3])"/>
<t t-esc="credit_total"/>
<t t-esc="currency[0]"/>
</strong>
</td>
@ -309,45 +310,6 @@
</div>
</div>
<br></br>
<!-- <div class="sub_container_right row" style="width:30%;height:3%;top:0px;position: relative;">-->
<!-- <div class="time_range" style="">-->
<!-- <a type="button" class="dropdown-toggle" data-bs-toggle="dropdown">-->
<!-- <span class="fa fa-calendar" title="Dates" role="img" aria-label="Dates"></span>-->
<!-- Date Range-->
<!-- </a>-->
<!-- <div class="dropdown-menu" role="menu">-->
<!-- <div class="form-group">-->
<!-- <label class="" for="date_from">Start Date :</label>-->
<!-- <div class="input-group date" id="date_from" data-target-input="nearest">-->
<!-- &lt;!&ndash; <t t-set='date_formatted'><t t-options='{"widget": "date"}' t-esc="filter_data.date_from"/></t>&ndash;&gt;-->
<!-- &lt;!&ndash; <input type="text" name="date_from" class="form-control datetimepicker-input" t-att-value="date_formatted" data-target="#date_from" t-att-name="prefix"/>&ndash;&gt;-->
<!-- <input type="text" name="date_from" class="form-control datetimepicker-input"-->
<!-- data-target="#date_from" t-att-name="prefix"/>-->
<!-- <div class="input-group-append" data-target="#date_from"-->
<!-- data-bs-toggle="datetimepicker">-->
<!-- <span class="input-group-text">-->
<!-- <span class="fa fa-calendar" role="img" aria-label="Calendar"></span>-->
<!-- </span>-->
<!-- </div>-->
<!-- </div>-->
<!-- <label class="" for="date_to">End Date :</label>-->
<!-- <div class="input-group date" id="date_to" data-target-input="nearest">-->
<!-- <input type="text" name="date_to" class="form-control datetimepicker-input"-->
<!-- data-target="#date_to" t-att-name="prefix"/>-->
<!-- <div class="input-group-append" data-target="#date_to" data-bs-toggle="datetimepicker">-->
<!-- <span class="input-group-text">-->
<!-- <span class="fa fa-calendar" role="img" aria-label="Calendar"></span>-->
<!-- </span>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<div class="sub_container_right row"
style="width:30%;height:3%;top:0px;position: relative; display:flex; gap:15px;">

Loading…
Cancel
Save