Browse Source

Nov 10: [FIX] Bug Fixed 'base_accounting_kit'

pull/406/merge
Risvana Cybro 1 week ago
parent
commit
af32c3b836
  1. 2
      base_accounting_kit/__manifest__.py
  2. 5
      base_accounting_kit/doc/RELEASE_NOTES.md
  3. 24
      base_accounting_kit/static/description/index.html
  4. 7
      base_accounting_kit/views/account_journal_views.xml
  5. 2
      base_accounting_kit/wizard/import_bank_statement.py

2
base_accounting_kit/__manifest__.py

@ -21,7 +21,7 @@
#############################################################################
{
'name': 'Odoo 18 Full Accounting Kit for Community',
'version': '18.0.5.0.6',
'version': '18.0.5.0.7',
'category': 'Accounting',
'live_test_url': 'https://kit.easyinstance.com/web/login?redirect=/odoo/accounting',
'summary': """Odoo 18 Accounting, Odoo 18 Accounting Reports, Odoo18 Accounting, Odoo Accounting, Odoo18 Financial Reports, Odoo18 Asset, Odoo18 Profit and Loss, PDC, Followups, Odoo18, Accounting, Odoo Apps, Reports""",

5
base_accounting_kit/doc/RELEASE_NOTES.md

@ -49,3 +49,8 @@
#### Version 18.0.5.0.6
#### UPDT
- Added Customer Statement feature.
#### 10.11.2025
#### Version 18.0.5.0.7
#### FIX
- Fixed Transactions button redirection for bank and cash journals to display journal-specific transactions, and added reconciliation filter for the To Reconcile action.

24
base_accounting_kit/static/description/index.html

@ -183,7 +183,29 @@
style=" font-size: 16px; vertical-align: middle"
>Email Us</span>
</a>
<a href="skype:cybroopenerp?chat"
target="_blank"
style="
background-color: #7f289b;
font-family: Montserrat;
display: inline-block;
padding: 7px 33px;
border: 1px solid #7f289b;
border-radius: 35px;
text-decoration: none;
width: 231px;
"
class="mx-1 mb-2 deep-1 deep_hover">
<img
class="img"
style="width: 24px"
src="./assets/icons/skype-fill.svg"
/>
<span
class="pl-2"
style="color: #fff; font-size: 16px; vertical-align: middle"
>Skype Us</span>
</a>
<a href="https://wa.me/9074270811"
target="_blank"

7
base_accounting_kit/views/account_journal_views.xml

@ -12,7 +12,9 @@
<t t-if="dashboard.number_to_reconcile > 0">
<button class="btn btn-primary"
type="object"
name="action_open_reconcile">
name="action_open_reconcile"
context="{'search_default_not_matched': 1}"
>
<t t-esc="dashboard.number_to_reconcile"/> to Reconcile
</button>
</t>
@ -23,6 +25,9 @@
</a>
</t>
</xpath>
<xpath expr="//button[@id='all_transactions_btn']" position="attributes">
<attribute name="name">action_open_reconcile</attribute>
</xpath>
</field>
</record>
</odoo>

2
base_accounting_kit/wizard/import_bank_statement.py

@ -323,4 +323,4 @@ class ImportBankStatement(models.TransientModel):
'res_id': statement.id,
}
else:
raise ValidationError(_("Choose correct file"))
raise ValidationError(_("Choose correct file"))
Loading…
Cancel
Save