Browse Source

[FIX] Bug Fixed 'base_accounting_kit'

pull/134/merge
Ajmalcybrosys 6 years ago
parent
commit
31e25671ef
  1. 2
      base_accounting_kit/__manifest__.py
  2. 7
      base_accounting_kit/doc/RELEASE_NOTES.md
  3. 2
      base_accounting_kit/report/account_bank_book_view.xml
  4. 2
      base_accounting_kit/report/account_cash_book_view.xml
  5. 2
      base_accounting_kit/report/account_day_book_view.xml
  6. 10
      base_accounting_kit/report/general_ledger_report.xml
  7. 0
      base_accounting_kit/static/src/scss/account_asset.scss
  8. 2
      base_accounting_kit/views/account_asset_templates.xml

2
base_accounting_kit/__manifest__.py

@ -22,7 +22,7 @@
{
'name': 'Odoo 13 Full Accounting Kit',
'version': '13.0.1.3.1',
'version': '13.0.1.4.1',
'category': 'Accounting',
'summary': """ This Module will bring back the accounting features such
Asset Management, Budget Management, Accounting Reports,

7
base_accounting_kit/doc/RELEASE_NOTES.md

@ -18,4 +18,9 @@
#### 31.10.2019
#### Version 13.0.1.3.1
#### FIX
- Bug Fixed 'Recurring paymenst'
- Bug Fixed 'Recurring payment'
#### 12.11.2019
#### Version 13.0.1.4.1
#### FIX
- Bug Fixed 'asset and report'

2
base_accounting_kit/report/account_bank_book_view.xml

@ -118,7 +118,7 @@
<span t-esc="line['balance']"
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
</td>
<td class="text-right" groups="base.group_multi_currency">
<td t-if="line['amount_currency']" class="text-right" groups="base.group_multi_currency">
<span t-esc="line['amount_currency'] if line['amount_currency'] > 0.00 else ''"/>
<span t-esc="line['currency_code'] if line['amount_currency'] > 0.00 else ''"/>
</td>

2
base_accounting_kit/report/account_cash_book_view.xml

@ -93,7 +93,7 @@
<td class="text-right">
<span t-esc="line['balance']" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
</td>
<td class="text-right" groups="base.group_multi_currency">
<td t-if="line['amount_currency']" class="text-right" groups="base.group_multi_currency">
<span t-esc="line['amount_currency'] if line['amount_currency'] > 0.00 else ''"/>
<span t-esc="line['currency_code'] if line['amount_currency'] > 0.00 else ''"/>
</td>

2
base_accounting_kit/report/account_day_book_view.xml

@ -99,7 +99,7 @@
<span t-esc="line['balance']"
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
</td>
<td class="text-right" groups="base.group_multi_currency">
<td t-if="line['amount_currency']" class="text-right" groups="base.group_multi_currency">
<span t-esc="line['amount_currency'] if line['amount_currency'] > 0.00 else ''"/>
<span t-esc="line['currency_code'] if line['amount_currency'] > 0.00 else ''"/>
</td>

10
base_accounting_kit/report/general_ledger_report.xml

@ -90,10 +90,12 @@
<td class="text-right">
<span t-esc="line['balance']" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
</td>
<td class="text-right" groups="base.group_multi_currency">
<span t-esc="line['amount_currency'] if line['amount_currency'] > 0.00 else ''"/>
<span t-esc="line['currency_code'] if line['amount_currency'] > 0.00 else ''"/>
</td>
<t t-if="line['amount_currency']">
<td class="text-right" groups="base.group_multi_currency">
<span t-esc="line['amount_currency'] if line['amount_currency'] > 0.00 else ''"/>
<span t-esc="line['currency_code'] if line['amount_currency'] > 0.00 else ''"/>
</td>
</t>
</tr>
</t>
</tbody>

0
base_accounting_kit/static/src/less/account_asset.less → base_accounting_kit/static/src/scss/account_asset.scss

2
base_accounting_kit/views/account_asset_templates.xml

@ -2,7 +2,7 @@
<odoo>
<template id="assets_backend" name="account assets" inherit_id="web.assets_backend">
<xpath expr="." position="inside">
<link rel="stylesheet" href="/base_accounting_kit/static/src/less/account_asset.less"/>
<link rel="stylesheet" href="/base_accounting_kit/static/src/scss/account_asset.scss"/>
<script type="text/javascript" src="/base_accounting_kit/static/src/js/account_asset.js"/>
</xpath>
</template>

Loading…
Cancel
Save