2
0

[UPD]Account Check Deposit v16

This commit is contained in:
Fabien BOURGEOIS 2023-06-09 14:58:37 +02:00
parent db004b7bf4
commit 6af574ae63
3 changed files with 7 additions and 11 deletions

View File

@ -7,11 +7,11 @@
{ {
"name": "Account Check Deposit", "name": "Account Check Deposit",
"version": "15.0.1.0.0", "version": "16.0.1.0.0",
"category": "Accounting", "category": "Accounting",
"license": "AGPL-3", "license": "AGPL-3",
"summary": "Manage deposit of checks to the bank", "summary": "Manage deposit of checks to the bank",
"author": "Akretion, Tecnativa, Odoo Community Association (OCA)", "author": "Akretion, Tecnativa, Odoo Community Association (OCA), Fabien Bourgeois",
"website": "https://github.com/OCA/account-financial-tools", "website": "https://github.com/OCA/account-financial-tools",
"depends": ["account"], "depends": ["account"],
"development_status": "Mature", "development_status": "Mature",

View File

@ -5,6 +5,7 @@
@author: Chafique DELLI <chafique.delli@akretion.com> @author: Chafique DELLI <chafique.delli@akretion.com>
@author: Alexis de Lattre <alexis.delattre@akretion.com> @author: Alexis de Lattre <alexis.delattre@akretion.com>
Copyright 2018-2021 Tecnativa - Pedro M. Baeza Copyright 2018-2021 Tecnativa - Pedro M. Baeza
Copyright 2023 Yaltik - Fabien Bourgeois
--> -->
<odoo> <odoo>
<record id="account_check_deposit_view_form" model="ir.ui.view"> <record id="account_check_deposit_view_form" model="ir.ui.view">
@ -53,20 +54,14 @@
options="{'datepicker': {'warn_future': true}}" options="{'datepicker': {'warn_future': true}}"
/> />
<field name="journal_id" /> <field name="journal_id" />
<field <field name="currency_id" />
name="currency_id"
groups="base.group_multi_currency"
/>
<field name="bank_journal_id" widget="selection" /> <field name="bank_journal_id" widget="selection" />
</group> </group>
<group name="right"> <group name="right">
<field name="check_count" /> <field name="check_count" />
<field name="total_amount" /> <field name="total_amount" />
<field name="in_hand_check_account_id" /> <field name="in_hand_check_account_id" />
<field <field name="company_id" />
name="company_id"
groups="base.group_multi_company"
/>
<field name="move_id" /> <field name="move_id" />
</group> </group>
</group> </group>

View File

@ -2,6 +2,7 @@
<!-- <!--
Copyright 2015-2020 Akretion France - Alexis de Lattre Copyright 2015-2020 Akretion France - Alexis de Lattre
Copyright 2018-2020 Tecnativa - Pedro M. Baeza Copyright 2018-2020 Tecnativa - Pedro M. Baeza
Copyright 2023 Yaltik - Fabien Bourgeois
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
--> -->
<odoo> <odoo>
@ -9,7 +10,7 @@
<field name="model">account.move.line</field> <field name="model">account.move.line</field>
<field name="inherit_id" ref="account.view_move_line_form" /> <field name="inherit_id" ref="account.view_move_line_form" />
<field name="arch" type="xml"> <field name="arch" type="xml">
<field name="statement_id" position="after"> <field name="statement_line_id" position="after">
<field <field
name="check_deposit_id" name="check_deposit_id"
readonly="True" readonly="True"