mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
[12.0][MIG] account_banking_reconciliation
This commit is contained in:
@@ -11,13 +11,13 @@ Bank Account Reconciliation
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge2| image:: https://img.shields.io/badge/github-OCA%2Faccount--reconcile-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/account-reconcile/tree/11.0/account_banking_reconciliation
|
||||
:target: https://github.com/OCA/account-reconcile/tree/12.0/account_banking_reconciliation
|
||||
:alt: OCA/account-reconcile
|
||||
.. |badge3| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/account-reconcile-11-0/account-reconcile-11-0-account_banking_reconciliation
|
||||
:target: https://translation.odoo-community.org/projects/account-reconcile-12-0/account-reconcile-12-0-account_banking_reconciliation
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge4| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
|
||||
:target: https://runbot.odoo-community.org/runbot/98/11.0
|
||||
:target: https://runbot.odoo-community.org/runbot/98/12.0
|
||||
:alt: Try me on Runbot
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4|
|
||||
@@ -238,6 +238,6 @@ Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|
||||
|
||||
|maintainer-max3903|
|
||||
|
||||
This module is part of the `OCA/account-reconcile <https://github.com/OCA/account-reconcile/tree/11.0/account_banking_reconciliation>`_ project on GitHub.
|
||||
This module is part of the `OCA/account-reconcile <https://github.com/OCA/account-reconcile/tree/12.0/account_banking_reconciliation>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
{
|
||||
"name": "Bank Account Reconciliation",
|
||||
"summary": "Check transactions that cleared the bank",
|
||||
"version": "11.0.1.0.0",
|
||||
"version": "12.0.1.0.0",
|
||||
"license": "AGPL-3",
|
||||
"category": "Accounting and Financial Management",
|
||||
"author": "NovaPoint Group LLC, "
|
||||
@@ -14,7 +14,6 @@
|
||||
"Odoo Community Association (OCA)",
|
||||
"website": "https://github.com/OCA/account-reconcile",
|
||||
"depends": [
|
||||
"account_invoicing",
|
||||
"account_voucher",
|
||||
],
|
||||
"data": [
|
||||
|
||||
@@ -252,13 +252,13 @@
|
||||
<field name="type">search</field>
|
||||
<field name="arch" type="xml">
|
||||
<search string="Search Bank Account Reconciliation Statements">
|
||||
<filter icon="terp-document-new" string="Draft"
|
||||
<filter name="draft" icon="terp-document-new" string="Draft"
|
||||
domain="[('state','=','draft')]"
|
||||
help="Statements that haven't yet been confirmed"/>
|
||||
<filter icon="terp-dolar" string="To be Reviewed"
|
||||
<filter name="to_be_reviewed" icon="terp-dolar" string="To be Reviewed"
|
||||
domain="[('state','=','to_be_reviewed')]"
|
||||
help="Statements that are ready for review"/>
|
||||
<filter icon="terp-check" string="Done"
|
||||
<filter name="done" icon="terp-check" string="Done"
|
||||
domain="[('state','=','done')]"
|
||||
help="Statements that have been processed"/>
|
||||
<separator orientation="vertical"/>
|
||||
@@ -266,16 +266,16 @@
|
||||
<field name="ending_date" select="1" string="Ending Date"/>
|
||||
<field name="account_id" select="1"/>
|
||||
<field name="verified_by_user_id" select="1">
|
||||
<filter domain="[('verified_by_user_id','=',uid)]"
|
||||
<filter name="verified_by_user_id" domain="[('verified_by_user_id','=',uid)]"
|
||||
help="Verified by me"
|
||||
icon="terp-personal"/>
|
||||
</field>
|
||||
<newline/>
|
||||
<group expand="0" string="Group By...">
|
||||
<filter string="Account" icon="terp-personal" domain="[]"
|
||||
<filter name="account_id" string="Account" icon="terp-personal" domain="[]"
|
||||
context="{'group_by':'account_id'}"/>
|
||||
<separator orientation="vertical"/>
|
||||
<filter string="State"
|
||||
<filter name="state" string="State"
|
||||
icon="terp-stock_effects-object-colorize"
|
||||
domain="[]" context="{'group_by':'state'}"/>
|
||||
</group>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<field name="bank_acc_rec_statement_id"/>
|
||||
</field>
|
||||
<field name="move_id" position="before">
|
||||
<filter icon="terp-document-new"
|
||||
<filter name="uncleared_bank_account" icon="terp-document-new"
|
||||
string="Uncleared Bank Account"
|
||||
domain="[('cleared_bank_account','=',False)]"
|
||||
help="Journal Entries not cleared"/>
|
||||
|
||||
Reference in New Issue
Block a user