mirror of
https://github.com/bringout/odoomates.git
synced 2026-04-18 06:12:02 +02:00
update: 19.0 compatibility for odoomates accounting modules
- All manifest versions updated to 19.0.1.0.0
- Renamed all <tree> view tags to <list> (19.0 requirement)
- Renamed tree,form to list,form in view_mode fields
- Removed account.chart.template views (AbstractModel in 19.0)
- Fixed xpath /tree/ to /list/ in account_journal.xml for payment methods
- Modules: om_account_accountant, accounting_pdf_reports,
om_account_budget, om_recurring_payments, om_account_daily_reports
🤖 assisted by claude
This commit is contained in:
parent
5f0082b0ee
commit
788ea7113e
18 changed files with 52 additions and 132 deletions
|
|
@ -1,8 +1,8 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
{
|
{
|
||||||
'name': 'Odoo 16 Accounting Financial Reports',
|
'name': 'Odoo 19 Accounting Financial Reports',
|
||||||
'version': '16.0.2.2.0',
|
'version': '19.0.1.0.0',
|
||||||
'category': 'Invoicing Management',
|
'category': 'Invoicing Management',
|
||||||
'description': 'Accounting Reports For Odoo 16, Accounting Financial Reports, '
|
'description': 'Accounting Reports For Odoo 16, Accounting Financial Reports, '
|
||||||
'Odoo 16 Financial Reports',
|
'Odoo 16 Financial Reports',
|
||||||
|
|
|
||||||
|
|
@ -46,12 +46,12 @@
|
||||||
<field name="name">account.financial.report.tree</field>
|
<field name="name">account.financial.report.tree</field>
|
||||||
<field name="model">account.financial.report</field>
|
<field name="model">account.financial.report</field>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<tree string="Account Report">
|
<list string="Account Report">
|
||||||
<field name="name"/>
|
<field name="name"/>
|
||||||
<field name="parent_id" invisible="1"/>
|
<field name="parent_id" invisible="1"/>
|
||||||
<field name="type"/>
|
<field name="type"/>
|
||||||
<field name="account_report_id"/>
|
<field name="account_report_id"/>
|
||||||
</tree>
|
</list>
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
|
|
@ -77,7 +77,7 @@
|
||||||
<field name="name">Financial Reports</field>
|
<field name="name">Financial Reports</field>
|
||||||
<field name="type">ir.actions.act_window</field>
|
<field name="type">ir.actions.act_window</field>
|
||||||
<field name="res_model">account.financial.report</field>
|
<field name="res_model">account.financial.report</field>
|
||||||
<field name="view_mode">tree,form</field>
|
<field name="view_mode">list,form</field>
|
||||||
<field name="context">{'search_default_filter_parent_id': True}</field>
|
<field name="context">{'search_default_filter_parent_id': True}</field>
|
||||||
<field name="search_view_id" ref="view_account_financial_report_search"/>
|
<field name="search_view_id" ref="view_account_financial_report_search"/>
|
||||||
<field name="view_id" ref="view_account_financial_report_tree"/>
|
<field name="view_id" ref="view_account_financial_report_tree"/>
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
<field name="domain">[('display_type', 'not in', ('line_section', 'line_note')), ('parent_state', '!=', 'cancel')]</field>
|
<field name="domain">[('display_type', 'not in', ('line_section', 'line_note')), ('parent_state', '!=', 'cancel')]</field>
|
||||||
<field name="view_id" ref="account.view_move_line_tree_grouped_general"/>
|
<field name="view_id" ref="account.view_move_line_tree_grouped_general"/>
|
||||||
<field name="search_view_id" ref="account.view_account_move_line_filter"/>
|
<field name="search_view_id" ref="account.view_account_move_line_filter"/>
|
||||||
<field name="view_mode">tree,pivot,graph</field>
|
<field name="view_mode">list,pivot,graph</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
<record id="action_account_moves_ledger_partner" model="ir.actions.act_window">
|
<record id="action_account_moves_ledger_partner" model="ir.actions.act_window">
|
||||||
|
|
@ -19,7 +19,7 @@
|
||||||
<field name="domain">[('display_type', 'not in', ('line_section', 'line_note')), ('parent_state', '!=', 'cancel')]</field>
|
<field name="domain">[('display_type', 'not in', ('line_section', 'line_note')), ('parent_state', '!=', 'cancel')]</field>
|
||||||
<field name="view_id" ref="account.view_move_line_tree_grouped_partner"/>
|
<field name="view_id" ref="account.view_move_line_tree_grouped_partner"/>
|
||||||
<field name="search_view_id" ref="account.view_account_move_line_filter"/>
|
<field name="search_view_id" ref="account.view_account_move_line_filter"/>
|
||||||
<field name="view_mode">tree,pivot,graph</field>
|
<field name="view_mode">list,pivot,graph</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
<menuitem id="menu_finance_entries_accounting_ledgers" name="Ledgers" parent="account.menu_finance_entries" sequence="3">
|
<menuitem id="menu_finance_entries_accounting_ledgers" name="Ledgers" parent="account.menu_finance_entries" sequence="3">
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
<field name="name">Aged Partner Balance</field>
|
<field name="name">Aged Partner Balance</field>
|
||||||
<field name="res_model">account.aged.trial.balance</field>
|
<field name="res_model">account.aged.trial.balance</field>
|
||||||
<field name="type">ir.actions.act_window</field>
|
<field name="type">ir.actions.act_window</field>
|
||||||
<field name="view_mode">tree,form</field>
|
<field name="view_mode">list,form</field>
|
||||||
<field name="view_id" ref="account_aged_balance_view"/>
|
<field name="view_id" ref="account_aged_balance_view"/>
|
||||||
<field name="context"></field>
|
<field name="context"></field>
|
||||||
<field name="target">new</field>
|
<field name="target">new</field>
|
||||||
|
|
@ -51,7 +51,7 @@
|
||||||
<field name="name">Aged Receivable</field>
|
<field name="name">Aged Receivable</field>
|
||||||
<field name="res_model">account.aged.trial.balance</field>
|
<field name="res_model">account.aged.trial.balance</field>
|
||||||
<field name="type">ir.actions.act_window</field>
|
<field name="type">ir.actions.act_window</field>
|
||||||
<field name="view_mode">tree,form</field>
|
<field name="view_mode">list,form</field>
|
||||||
<field name="view_id" ref="account_aged_balance_view"/>
|
<field name="view_id" ref="account_aged_balance_view"/>
|
||||||
<field name="context">{'default_result_selection': 'customer',
|
<field name="context">{'default_result_selection': 'customer',
|
||||||
'hide_result_selection': 1}</field>
|
'hide_result_selection': 1}</field>
|
||||||
|
|
@ -69,7 +69,7 @@
|
||||||
<field name="name">Aged Payable</field>
|
<field name="name">Aged Payable</field>
|
||||||
<field name="res_model">account.aged.trial.balance</field>
|
<field name="res_model">account.aged.trial.balance</field>
|
||||||
<field name="type">ir.actions.act_window</field>
|
<field name="type">ir.actions.act_window</field>
|
||||||
<field name="view_mode">tree,form</field>
|
<field name="view_mode">list,form</field>
|
||||||
<field name="view_id" ref="account_aged_balance_view"/>
|
<field name="view_id" ref="account_aged_balance_view"/>
|
||||||
<field name="context">{'default_result_selection': 'supplier',
|
<field name="context">{'default_result_selection': 'supplier',
|
||||||
'hide_result_selection': 1}</field>
|
'hide_result_selection': 1}</field>
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,8 @@
|
||||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||||
|
|
||||||
{
|
{
|
||||||
'name': 'Odoo 16 Accounting',
|
'name': 'Odoo 19 Accounting',
|
||||||
'version': '1.0.0',
|
'version': '19.0.1.0.0',
|
||||||
'category': 'Accounting',
|
'category': 'Accounting',
|
||||||
'summary': 'Accounting Reports, Asset Management and Account Budget, Recurring Payments, '
|
'summary': 'Accounting Reports, Asset Management and Account Budget, Recurring Payments, '
|
||||||
'Lock Dates, Fiscal Year For Odoo 16 Community Edition, Accounting Dashboard, Financial Reports, '
|
'Lock Dates, Fiscal Year For Odoo 16 Community Edition, Accounting Dashboard, Financial Reports, '
|
||||||
|
|
|
||||||
|
|
@ -1,93 +1,13 @@
|
||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<odoo>
|
<odoo>
|
||||||
|
|
||||||
<record id="view_account_chart_template_form" model="ir.ui.view">
|
<!-- account.chart.template views removed for 19.0 - it is now an AbstractModel -->
|
||||||
<field name="name">account.chart.template.form</field>
|
|
||||||
<field name="model">account.chart.template</field>
|
|
||||||
<field name="arch" type="xml">
|
|
||||||
<form string="Chart of Accounts Template">
|
|
||||||
<group col="4">
|
|
||||||
<field name="name"/>
|
|
||||||
<field name="parent_id"/>
|
|
||||||
<field name="bank_account_code_prefix"/>
|
|
||||||
<field name="cash_account_code_prefix"/>
|
|
||||||
<field name="transfer_account_code_prefix"/>
|
|
||||||
<field name="code_digits"/>
|
|
||||||
<field name="visible"/>
|
|
||||||
<field name="use_anglo_saxon" />
|
|
||||||
<!-- <field name="complete_tax_set"/>-->
|
|
||||||
</group>
|
|
||||||
<separator string="Default Taxes" colspan="4"/>
|
|
||||||
<field name="tax_template_ids" colspan="4" nolabel="1"/>
|
|
||||||
<separator string="Properties" colspan="4"/>
|
|
||||||
<group col="4">
|
|
||||||
<field name="property_account_receivable_id"/>
|
|
||||||
<field name="property_account_payable_id"/>
|
|
||||||
<field name="property_account_expense_categ_id"/>
|
|
||||||
<field name="property_account_income_categ_id"/>
|
|
||||||
<field name="property_account_expense_id"/>
|
|
||||||
<field name="property_account_income_id"/>
|
|
||||||
</group>
|
|
||||||
</form>
|
|
||||||
</field>
|
|
||||||
</record>
|
|
||||||
|
|
||||||
<record id="view_account_chart_template_seacrh" model="ir.ui.view">
|
|
||||||
<field name="name">account.chart.template.search</field>
|
|
||||||
<field name="model">account.chart.template</field>
|
|
||||||
<field name="arch" type="xml">
|
|
||||||
<search string="Search Chart of Account Templates">
|
|
||||||
<field name="name" string="Account Template"/>
|
|
||||||
<field name="bank_account_code_prefix"/>
|
|
||||||
<field name="cash_account_code_prefix"/>
|
|
||||||
<field name="transfer_account_code_prefix"/>
|
|
||||||
<group expand="0" string="Group By">
|
|
||||||
<filter string="Receivable Account" name="receivalbeacc" domain="[]"
|
|
||||||
context="{'group_by':'property_account_receivable_id'}"/>
|
|
||||||
<filter string="Payable Account" name="payableacc" domain="[]"
|
|
||||||
context="{'group_by':'property_account_payable_id'}"/>
|
|
||||||
<filter string="Income Account" name="incomeacc" domain="[]"
|
|
||||||
context="{'group_by':'property_account_income_categ_id'}"/>
|
|
||||||
<filter string="Expense Account" name="expenseacc" domain="[]"
|
|
||||||
context="{'group_by':'property_account_expense_categ_id'}"/>
|
|
||||||
</group>
|
|
||||||
</search>
|
|
||||||
</field>
|
|
||||||
</record>
|
|
||||||
|
|
||||||
<record id="view_account_chart_template_tree" model="ir.ui.view">
|
|
||||||
<field name="name">account.chart.template.tree</field>
|
|
||||||
<field name="model">account.chart.template</field>
|
|
||||||
<field name="arch" type="xml">
|
|
||||||
<tree string="Chart of Accounts Template">
|
|
||||||
<field name="name"/>
|
|
||||||
<field name="property_account_receivable_id" invisible="1"/>
|
|
||||||
<field name="property_account_payable_id" invisible="1"/>
|
|
||||||
<field name="property_account_expense_categ_id" invisible="1"/>
|
|
||||||
<field name="property_account_income_categ_id" invisible="1"/>
|
|
||||||
</tree>
|
|
||||||
</field>
|
|
||||||
</record>
|
|
||||||
|
|
||||||
<!--
|
|
||||||
<record id="action_account_chart_template_form" model="ir.actions.act_window">
|
|
||||||
<field name="name">Chart of Accounts Templates</field>
|
|
||||||
<field name="res_model">account.chart.template</field>
|
|
||||||
<field name="view_mode">tree,form</field>
|
|
||||||
</record>
|
|
||||||
-->
|
|
||||||
|
|
||||||
<record id="action_account_group_action" model="ir.actions.act_window">
|
<record id="action_account_group_action" model="ir.actions.act_window">
|
||||||
<field name="name">Account Groups</field>
|
<field name="name">Account Groups</field>
|
||||||
<field name="type">ir.actions.act_window</field>
|
<field name="type">ir.actions.act_window</field>
|
||||||
<field name="res_model">account.group</field>
|
<field name="res_model">account.group</field>
|
||||||
<field name="view_mode">tree,form</field>
|
<field name="view_mode">list,form</field>
|
||||||
</record>
|
</record>
|
||||||
<!--
|
|
||||||
<menuitem id="menu_account_coa_template"
|
|
||||||
action="om_account_accountant.action_account_chart_template_form"
|
|
||||||
parent="menu_account_templates"
|
|
||||||
sequence="10"/>
|
|
||||||
-->
|
|
||||||
|
|
||||||
</odoo>
|
</odoo>
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
<field name="name">Account Groups</field>
|
<field name="name">Account Groups</field>
|
||||||
<field name="type">ir.actions.act_window</field>
|
<field name="type">ir.actions.act_window</field>
|
||||||
<field name="res_model">account.group</field>
|
<field name="res_model">account.group</field>
|
||||||
<field name="view_mode">tree,form</field>
|
<field name="view_mode">list,form</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
<menuitem id="menu_account_group"
|
<menuitem id="menu_account_group"
|
||||||
|
|
|
||||||
|
|
@ -6,10 +6,10 @@
|
||||||
<field name="model">account.journal</field>
|
<field name="model">account.journal</field>
|
||||||
<field name="inherit_id" ref="account.view_account_journal_form"/>
|
<field name="inherit_id" ref="account.view_account_journal_form"/>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<xpath expr="//field[@name='inbound_payment_method_line_ids']/tree/field[@name='payment_account_id']" position="attributes">
|
<xpath expr="//field[@name='inbound_payment_method_line_ids']/list/field[@name='payment_account_id']" position="attributes">
|
||||||
<attribute name="optional">show</attribute>
|
<attribute name="optional">show</attribute>
|
||||||
</xpath>
|
</xpath>
|
||||||
<xpath expr="//field[@name='outbound_payment_method_line_ids']/tree/field[@name='payment_account_id']" position="attributes">
|
<xpath expr="//field[@name='outbound_payment_method_line_ids']/list/field[@name='payment_account_id']" position="attributes">
|
||||||
<attribute name="optional">show</attribute>
|
<attribute name="optional">show</attribute>
|
||||||
</xpath>
|
</xpath>
|
||||||
</field>
|
</field>
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
<field name="res_model">account.move.line</field>
|
<field name="res_model">account.move.line</field>
|
||||||
<field name="domain">[('display_type', 'not in', ('line_section', 'line_note'))]</field>
|
<field name="domain">[('display_type', 'not in', ('line_section', 'line_note'))]</field>
|
||||||
<field name="view_id" ref="account.view_move_line_tree_grouped_misc"/>
|
<field name="view_id" ref="account.view_move_line_tree_grouped_misc"/>
|
||||||
<field name="view_mode">tree,pivot,graph,kanban</field>
|
<field name="view_mode">list,pivot,graph,kanban</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
</odoo>
|
</odoo>
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
<record id="action_account_account_tag" model="ir.actions.act_window">
|
<record id="action_account_account_tag" model="ir.actions.act_window">
|
||||||
<field name="name">Account Tags</field>
|
<field name="name">Account Tags</field>
|
||||||
<field name="res_model">account.account.tag</field>
|
<field name="res_model">account.account.tag</field>
|
||||||
<field name="view_mode">tree,form</field>
|
<field name="view_mode">list,form</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
<menuitem id="menu_account_tag"
|
<menuitem id="menu_account_tag"
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
<record id="action_account_fiscal_position_template" model="ir.actions.act_window">
|
<record id="action_account_fiscal_position_template" model="ir.actions.act_window">
|
||||||
<field name="name">Fiscal Position Templates</field>
|
<field name="name">Fiscal Position Templates</field>
|
||||||
<field name="res_model">account.fiscal.position.template</field>
|
<field name="res_model">account.fiscal.position.template</field>
|
||||||
<field name="view_mode">tree,form</field>
|
<field name="view_mode">list,form</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
<menuitem id="menu_account_fiscal_position_template"
|
<menuitem id="menu_account_fiscal_position_template"
|
||||||
|
|
|
||||||
|
|
@ -26,10 +26,10 @@
|
||||||
<field name="name">account.payment.method</field>
|
<field name="name">account.payment.method</field>
|
||||||
<field name="model">account.payment.method</field>
|
<field name="model">account.payment.method</field>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<tree string="Payment Methods" create="0" edit="0" delete="0">
|
<list string="Payment Methods" create="0" edit="0" delete="0">
|
||||||
<field name="name"/>
|
<field name="name"/>
|
||||||
<field name="payment_type"/>
|
<field name="payment_type"/>
|
||||||
</tree>
|
</list>
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
|
|
@ -50,7 +50,7 @@
|
||||||
<record id="action_account_payment_method" model="ir.actions.act_window">
|
<record id="action_account_payment_method" model="ir.actions.act_window">
|
||||||
<field name="name">Payment Methods</field>
|
<field name="name">Payment Methods</field>
|
||||||
<field name="res_model">account.payment.method</field>
|
<field name="res_model">account.payment.method</field>
|
||||||
<field name="view_mode">tree,form</field>
|
<field name="view_mode">list,form</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
<menuitem id="menu_account_payment_method"
|
<menuitem id="menu_account_payment_method"
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||||
|
|
||||||
{
|
{
|
||||||
'name': 'Odoo 16 Budget Management',
|
'name': 'Odoo 19 Budget Management',
|
||||||
'author': 'Odoo Mates, Odoo SA',
|
'author': 'Odoo Mates, Odoo SA',
|
||||||
'category': 'Accounting',
|
'category': 'Accounting',
|
||||||
'version': '16.0.1.0.0',
|
'version': '19.0.1.0.0',
|
||||||
'description': """Use budgets to compare actual with expected revenues and costs""",
|
'description': """Use budgets to compare actual with expected revenues and costs""",
|
||||||
'summary': 'Odoo 16 Budget Management',
|
'summary': 'Odoo 16 Budget Management',
|
||||||
'sequence': 10,
|
'sequence': 10,
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
<page string="Budget Items">
|
<page string="Budget Items">
|
||||||
<field name="crossovered_budget_line" widget="one2many_list" colspan="4" nolabel="1"
|
<field name="crossovered_budget_line" widget="one2many_list" colspan="4" nolabel="1"
|
||||||
mode="tree">
|
mode="tree">
|
||||||
<tree string="Budget Items" editable="top">
|
<list string="Budget Items" editable="top">
|
||||||
<field name="crossovered_budget_id"/>
|
<field name="crossovered_budget_id"/>
|
||||||
<field name="general_budget_id"/>
|
<field name="general_budget_id"/>
|
||||||
<field name="date_from"/>
|
<field name="date_from"/>
|
||||||
|
|
@ -22,7 +22,7 @@
|
||||||
<field name="practical_amount" sum="Practical Amount" widget="monetary"/>
|
<field name="practical_amount" sum="Practical Amount" widget="monetary"/>
|
||||||
<field name="theoritical_amount" sum="Theoritical Amount" widget="monetary"/>
|
<field name="theoritical_amount" sum="Theoritical Amount" widget="monetary"/>
|
||||||
<field name="percentage"/>
|
<field name="percentage"/>
|
||||||
</tree>
|
</list>
|
||||||
<form string="Budget Items">
|
<form string="Budget Items">
|
||||||
<field name="crossovered_budget_id"/>
|
<field name="crossovered_budget_id"/>
|
||||||
<field name="general_budget_id"/>
|
<field name="general_budget_id"/>
|
||||||
|
|
|
||||||
|
|
@ -16,17 +16,17 @@
|
||||||
<field name="name">account.budget.post.tree</field>
|
<field name="name">account.budget.post.tree</field>
|
||||||
<field name="model">account.budget.post</field>
|
<field name="model">account.budget.post</field>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<tree string="Budgetary Position">
|
<list string="Budgetary Position">
|
||||||
<field name="name"/>
|
<field name="name"/>
|
||||||
<field name="company_id" options="{'no_create': True}" groups="base.group_multi_company"/>
|
<field name="company_id" options="{'no_create': True}" groups="base.group_multi_company"/>
|
||||||
</tree>
|
</list>
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
<record id="open_budget_post_form" model="ir.actions.act_window">
|
<record id="open_budget_post_form" model="ir.actions.act_window">
|
||||||
<field name="name">Budgetary Positions</field>
|
<field name="name">Budgetary Positions</field>
|
||||||
<field name="res_model">account.budget.post</field>
|
<field name="res_model">account.budget.post</field>
|
||||||
<field name="view_mode">tree,kanban,form</field>
|
<field name="view_mode">list,kanban,form</field>
|
||||||
<field name="view_id" ref="view_budget_post_tree"/>
|
<field name="view_id" ref="view_budget_post_tree"/>
|
||||||
<field name="search_view_id" ref="view_budget_post_search"/>
|
<field name="search_view_id" ref="view_budget_post_search"/>
|
||||||
</record>
|
</record>
|
||||||
|
|
@ -48,10 +48,10 @@
|
||||||
<notebook>
|
<notebook>
|
||||||
<page string="Accounts">
|
<page string="Accounts">
|
||||||
<field name="account_ids">
|
<field name="account_ids">
|
||||||
<tree>
|
<list>
|
||||||
<field name="code"/>
|
<field name="code"/>
|
||||||
<field name="name"/>
|
<field name="name"/>
|
||||||
</tree>
|
</list>
|
||||||
</field>
|
</field>
|
||||||
</page>
|
</page>
|
||||||
</notebook>
|
</notebook>
|
||||||
|
|
@ -103,7 +103,7 @@
|
||||||
<field name="crossovered_budget_line"
|
<field name="crossovered_budget_line"
|
||||||
context="{'default_date_from': date_from,'default_date_to': date_to}" colspan="4"
|
context="{'default_date_from': date_from,'default_date_to': date_to}" colspan="4"
|
||||||
nolabel="1" attrs="{'readonly':[('state','!=','draft')]}">
|
nolabel="1" attrs="{'readonly':[('state','!=','draft')]}">
|
||||||
<tree string="Budget Lines" decoration-success="is_above_budget and planned_amount > 0" decoration-danger="is_above_budget and planned_amount < 0" editable="bottom">
|
<list string="Budget Lines" decoration-success="is_above_budget and planned_amount > 0" decoration-danger="is_above_budget and planned_amount < 0" editable="bottom">
|
||||||
<field name="general_budget_id"/>
|
<field name="general_budget_id"/>
|
||||||
<field name="analytic_account_id" groups="analytic.group_analytic_accounting"/>
|
<field name="analytic_account_id" groups="analytic.group_analytic_accounting"/>
|
||||||
<field name="date_from"/>
|
<field name="date_from"/>
|
||||||
|
|
@ -117,7 +117,7 @@
|
||||||
<button type="object" name="action_open_budget_entries" string="Entries..."
|
<button type="object" name="action_open_budget_entries" string="Entries..."
|
||||||
icon="fa-arrow-circle-o-right"/>
|
icon="fa-arrow-circle-o-right"/>
|
||||||
<field name="is_above_budget" invisible="1"/>
|
<field name="is_above_budget" invisible="1"/>
|
||||||
</tree>
|
</list>
|
||||||
<form string="Budget Lines">
|
<form string="Budget Lines">
|
||||||
<group>
|
<group>
|
||||||
<group>
|
<group>
|
||||||
|
|
@ -156,14 +156,14 @@
|
||||||
<field name="name">crossovered.budget.view.tree</field>
|
<field name="name">crossovered.budget.view.tree</field>
|
||||||
<field name="model">crossovered.budget</field>
|
<field name="model">crossovered.budget</field>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<tree decoration-info="state == 'draft'" decoration-muted="state in ('done','cancel')" string="Budget">
|
<list decoration-info="state == 'draft'" decoration-muted="state in ('done','cancel')" string="Budget">
|
||||||
<field name="name" colspan="1"/>
|
<field name="name" colspan="1"/>
|
||||||
<field name="date_from"/>
|
<field name="date_from"/>
|
||||||
<field name="date_to"/>
|
<field name="date_to"/>
|
||||||
<field name="company_id" options="{'no_create': True}" groups="base.group_multi_company"/>
|
<field name="company_id" options="{'no_create': True}" groups="base.group_multi_company"/>
|
||||||
<field name="user_id"/>
|
<field name="user_id"/>
|
||||||
<field name="state"/>
|
<field name="state"/>
|
||||||
</tree>
|
</list>
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
|
|
@ -233,7 +233,7 @@
|
||||||
<record id="act_crossovered_budget_view" model="ir.actions.act_window">
|
<record id="act_crossovered_budget_view" model="ir.actions.act_window">
|
||||||
<field name="name">Budgets</field>
|
<field name="name">Budgets</field>
|
||||||
<field name="res_model">crossovered.budget</field>
|
<field name="res_model">crossovered.budget</field>
|
||||||
<field name="view_mode">tree,kanban,form</field>
|
<field name="view_mode">list,kanban,form</field>
|
||||||
<field name="view_id" ref="crossovered_budget_view_tree"/>
|
<field name="view_id" ref="crossovered_budget_view_tree"/>
|
||||||
<field name="search_view_id" ref="view_crossovered_budget_search"/>
|
<field name="search_view_id" ref="view_crossovered_budget_search"/>
|
||||||
<field name="help" type="html">
|
<field name="help" type="html">
|
||||||
|
|
@ -274,7 +274,7 @@
|
||||||
<field name="name">crossovered.budget.line.tree</field>
|
<field name="name">crossovered.budget.line.tree</field>
|
||||||
<field name="model">crossovered.budget.lines</field>
|
<field name="model">crossovered.budget.lines</field>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<tree string="Budget Lines" create="0">
|
<list string="Budget Lines" create="0">
|
||||||
<field name="currency_id" invisible="1"/>
|
<field name="currency_id" invisible="1"/>
|
||||||
<field name="crossovered_budget_id" invisible="1"/>
|
<field name="crossovered_budget_id" invisible="1"/>
|
||||||
<field name="general_budget_id" />
|
<field name="general_budget_id" />
|
||||||
|
|
@ -286,7 +286,7 @@
|
||||||
<field name="practical_amount"/>
|
<field name="practical_amount"/>
|
||||||
<field name="theoritical_amount"/>
|
<field name="theoritical_amount"/>
|
||||||
<field name="percentage" widget="percentage"/>
|
<field name="percentage" widget="percentage"/>
|
||||||
</tree>
|
</list>
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
|
|
@ -358,7 +358,7 @@
|
||||||
<record id="act_crossovered_budget_lines_view" model="ir.actions.act_window">
|
<record id="act_crossovered_budget_lines_view" model="ir.actions.act_window">
|
||||||
<field name="name">Budgets Analysis</field>
|
<field name="name">Budgets Analysis</field>
|
||||||
<field name="res_model">crossovered.budget.lines</field>
|
<field name="res_model">crossovered.budget.lines</field>
|
||||||
<field name="view_mode">tree,form,pivot,graph</field>
|
<field name="view_mode">list,form,pivot,graph</field>
|
||||||
<field name="view_id" eval="False"/>
|
<field name="view_id" eval="False"/>
|
||||||
<field name="context">{'search_default_group_crossevered_budgdet_id': True,
|
<field name="context">{'search_default_group_crossevered_budgdet_id': True,
|
||||||
'search_default_filter_not_cancelled':True}</field>
|
'search_default_filter_not_cancelled':True}</field>
|
||||||
|
|
@ -373,7 +373,7 @@
|
||||||
<record id="act_account_analytic_account_cb_lines" model="ir.actions.act_window">
|
<record id="act_account_analytic_account_cb_lines" model="ir.actions.act_window">
|
||||||
<field name="name">Budget Items</field>
|
<field name="name">Budget Items</field>
|
||||||
<field name="res_model">crossovered.budget.lines</field>
|
<field name="res_model">crossovered.budget.lines</field>
|
||||||
<field name="view_mode">tree,kanban,form</field>
|
<field name="view_mode">list,kanban,form</field>
|
||||||
<field name="context">{'search_default_analytic_account_id': [active_id],
|
<field name="context">{'search_default_analytic_account_id': [active_id],
|
||||||
'default_analytic_account_id': active_id}</field>
|
'default_analytic_account_id': active_id}</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
'name': 'Cash Book, Day Book, Bank Book Financial Reports',
|
'name': 'Cash Book, Day Book, Bank Book Financial Reports',
|
||||||
'version': '16.0.1.0.2',
|
'version': '19.0.1.0.0',
|
||||||
'category': 'Invoicing Management',
|
'category': 'Invoicing Management',
|
||||||
'summary': 'Cash Book, Day Book and Bank Book Report For Odoo 16',
|
'summary': 'Cash Book, Day Book and Bank Book Report For Odoo 16',
|
||||||
'description': 'Cash Book, Day Book and Bank Book Report For Odoo 16',
|
'description': 'Cash Book, Day Book and Bank Book Report For Odoo 16',
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||||
|
|
||||||
{
|
{
|
||||||
'name': 'Odoo 16 Recurring Payment',
|
'name': 'Odoo 19 Recurring Payment',
|
||||||
'author': 'Odoo Mates',
|
'author': 'Odoo Mates',
|
||||||
'category': 'Accounting',
|
'category': 'Accounting',
|
||||||
'version': '1.0.0',
|
'version': '19.0.1.0.0',
|
||||||
'description': """Odoo 16 Recurring Payment, Recurring Payment In Odoo, Odoo 16 Accounting""",
|
'description': """Odoo 16 Recurring Payment, Recurring Payment In Odoo, Odoo 16 Accounting""",
|
||||||
'summary': 'Use recurring payments to handle periodically repeated payments',
|
'summary': 'Use recurring payments to handle periodically repeated payments',
|
||||||
'sequence': 11,
|
'sequence': 11,
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
<notebook>
|
<notebook>
|
||||||
<page string="Recurring Entries">
|
<page string="Recurring Entries">
|
||||||
<field name="line_ids">
|
<field name="line_ids">
|
||||||
<tree create="0" delete="0" edit="0" decoration-success="state == 'done'">
|
<list create="0" delete="0" edit="0" decoration-success="state == 'done'">
|
||||||
<field name="date"/>
|
<field name="date"/>
|
||||||
<field name="amount"/>
|
<field name="amount"/>
|
||||||
<field name="journal_id" domain="[('type', 'in', ('bank', 'cash'))]"/>
|
<field name="journal_id" domain="[('type', 'in', ('bank', 'cash'))]"/>
|
||||||
|
|
@ -51,7 +51,7 @@
|
||||||
<button name="action_create_payment" type="object"
|
<button name="action_create_payment" type="object"
|
||||||
string="Create Payment"
|
string="Create Payment"
|
||||||
attrs="{'invisible': [('state', '=', 'done')]}"/>
|
attrs="{'invisible': [('state', '=', 'done')]}"/>
|
||||||
</tree>
|
</list>
|
||||||
<form string="Recurring Payment Line" edit="0">
|
<form string="Recurring Payment Line" edit="0">
|
||||||
<group>
|
<group>
|
||||||
<group>
|
<group>
|
||||||
|
|
@ -80,12 +80,12 @@
|
||||||
<field name="name">recurring.payment.tree</field>
|
<field name="name">recurring.payment.tree</field>
|
||||||
<field name="model">recurring.payment</field>
|
<field name="model">recurring.payment</field>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<tree string="Recurring Payments">
|
<list string="Recurring Payments">
|
||||||
<field name="name"/>
|
<field name="name"/>
|
||||||
<field name="partner_id"/>
|
<field name="partner_id"/>
|
||||||
<field name="journal_id"/>
|
<field name="journal_id"/>
|
||||||
<field name="state"/>
|
<field name="state"/>
|
||||||
</tree>
|
</list>
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
|
|
@ -93,7 +93,7 @@
|
||||||
<field name="name">Recurring Payment</field>
|
<field name="name">Recurring Payment</field>
|
||||||
<field name="type">ir.actions.act_window</field>
|
<field name="type">ir.actions.act_window</field>
|
||||||
<field name="res_model">recurring.payment</field>
|
<field name="res_model">recurring.payment</field>
|
||||||
<field name="view_mode">tree,form</field>
|
<field name="view_mode">list,form</field>
|
||||||
<field name="view_id" ref="view_account_recurring_payment_tree"/>
|
<field name="view_id" ref="view_account_recurring_payment_tree"/>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -36,11 +36,11 @@
|
||||||
<field name="name">account.recurring.template.tree</field>
|
<field name="name">account.recurring.template.tree</field>
|
||||||
<field name="model">account.recurring.template</field>
|
<field name="model">account.recurring.template</field>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<tree string="Recurring Template">
|
<list string="Recurring Template">
|
||||||
<field name="name"/>
|
<field name="name"/>
|
||||||
<field name="journal_id"/>
|
<field name="journal_id"/>
|
||||||
<field name="state"/>
|
<field name="state"/>
|
||||||
</tree>
|
</list>
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
<field name="name">Recurring Template</field>
|
<field name="name">Recurring Template</field>
|
||||||
<field name="type">ir.actions.act_window</field>
|
<field name="type">ir.actions.act_window</field>
|
||||||
<field name="res_model">account.recurring.template</field>
|
<field name="res_model">account.recurring.template</field>
|
||||||
<field name="view_mode">tree,form</field>
|
<field name="view_mode">list,form</field>
|
||||||
<field name="view_id" ref="view_account_recurring_template_tree"/>
|
<field name="view_id" ref="view_account_recurring_template_tree"/>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue