Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Available addons
addon | version | maintainers | summary
--- | --- | --- | ---
[agreement_rebate_partner_company_group](agreement_rebate_partner_company_group/) | 18.0.1.0.0 | | Rebate agreements applied to all company group members
[contract](contract/) | 18.0.2.5.1 | | Recurring - Contracts Management
[contract](contract/) | 18.0.2.5.2 | | Recurring - Contracts Management
[contract_analytic_tag](contract_analytic_tag/) | 18.0.1.0.0 | <a href='https://github.com/victoralmau'><img src='https://github.com/victoralmau.png' width='32' height='32' style='border-radius:50%;' alt='victoralmau'/></a> | Contract Analytic Tag
[contract_forecast](contract_forecast/) | 18.0.1.0.1 | <a href='https://github.com/sbejaoui'><img src='https://github.com/sbejaoui.png' width='32' height='32' style='border-radius:50%;' alt='sbejaoui'/></a> | Contract Forecast
[contract_forecast_variable_quantity](contract_forecast_variable_quantity/) | 18.0.1.0.0 | | Contract Forecast Variable Quantity
Expand Down
2 changes: 1 addition & 1 deletion contract/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Recurring - Contracts Management
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:18b03b2e2527c4875b06eb16fdea75963f902195518f9c5c755649aa89352108
!! source digest: sha256:a07f9fa6975b13ecf4826bd4a5635971b659b9db9286e71100e4802a49d1ef25
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
Expand Down
2 changes: 1 addition & 1 deletion contract/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

{
"name": "Recurring - Contracts Management",
"version": "18.0.2.5.1",
"version": "18.0.2.5.2",
"category": "Contract Management",
"license": "AGPL-3",
"author": "Tecnativa, ACSONE SA/NV, Odoo Community Association (OCA)",
Expand Down
2 changes: 1 addition & 1 deletion contract/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ <h1>Recurring - Contracts Management</h1>
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:18b03b2e2527c4875b06eb16fdea75963f902195518f9c5c755649aa89352108
!! source digest: sha256:a07f9fa6975b13ecf4826bd4a5635971b659b9db9286e71100e4802a49d1ef25
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Production/Stable" src="https://img.shields.io/badge/maturity-Production%2FStable-green.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/contract/tree/18.0/contract"><img alt="OCA/contract" src="https://img.shields.io/badge/github-OCA%2Fcontract-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/contract-18-0/contract-18-0-contract"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/contract&amp;target_branch=18.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
<p>This module enables contracts management with recurring invoicing
Expand Down
12 changes: 10 additions & 2 deletions contract/views/contract.xml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@
<field
name="product_id"
widget="product_label_section_and_note_field"
context="{'active_test': True}"
/>
<field
name="name"
Expand All @@ -149,7 +150,10 @@
groups="analytic.group_analytic_accounting"
/>
<field name="quantity" />
<field name="uom_id" />
<field
name="uom_id"
context="{'active_test': True}"
/>
<field
name="automatic_price"
column_invisible="parent.contract_type == 'purchase'"
Expand Down Expand Up @@ -219,6 +223,7 @@
<field
name="product_id"
widget="product_label_section_and_note_field"
context="{'active_test': True}"
/>
<field
name="name"
Expand All @@ -232,7 +237,10 @@
groups="analytic.group_analytic_accounting"
/>
<field name="quantity" />
<field name="uom_id" />
<field
name="uom_id"
context="{'active_test': True}"
/>
<field
name="automatic_price"
column_invisible="parent.contract_type == 'purchase'"
Expand Down
2 changes: 2 additions & 0 deletions contract/views/contract_template_line.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
name="product_id"
required="display_type == 'product'"
invisible="display_type"
context="{'active_test': True}"
/>
</group>
<group invisible="display_type">
Expand All @@ -36,6 +37,7 @@
groups="uom.group_uom"
class="oe_no_button"
required="not display_type"
context="{'active_test': True}"
/>
</div>
<field name="discount" />
Expand Down
49 changes: 49 additions & 0 deletions contract_service_dates/i18n/it.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * contract_service_dates
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"

#. module: contract_service_dates
#: model:ir.model,name:contract_service_dates.model_contract_line
msgid "Contract Line"
msgstr ""

#. module: contract_service_dates
#: model:ir.model.fields,help:contract_service_dates.field_contract_line__service_end_date
msgid ""
"End date of the service period covered by this contract line. Defaults to "
"the contract line end date and follows it unless manually overridden."
msgstr ""

#. module: contract_service_dates
#: model_terms:ir.ui.view,arch_db:contract_service_dates.contract_line_form_view
msgid "Service Dates"
msgstr ""

#. module: contract_service_dates
#: model:ir.model.fields,field_description:contract_service_dates.field_contract_line__service_end_date
msgid "Service End Date"
msgstr ""

#. module: contract_service_dates
#: model:ir.model.fields,field_description:contract_service_dates.field_contract_line__service_start_date
msgid "Service Start Date"
msgstr ""

#. module: contract_service_dates
#: model:ir.model.fields,help:contract_service_dates.field_contract_line__service_start_date
msgid ""
"Start date of the service period covered by this contract line. Defaults to "
"the contract line start date and follows it unless manually overridden."
msgstr ""