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 @@ -25,7 +25,7 @@ addon | version | maintainers | summary
[agreement_rebate_partner_company_group](agreement_rebate_partner_company_group/) | 16.0.1.0.0 | | Rebate agreements applied to all company group members
[contract](contract/) | 16.0.2.15.0 | | Recurring - Contracts Management
[contract_analytic_tag](contract_analytic_tag/) | 16.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/) | 16.0.1.0.0 | | Contract forecast
[contract_forecast](contract_forecast/) | 16.0.1.1.0 | | Contract forecast
[contract_invoice_start_end_dates](contract_invoice_start_end_dates/) | 16.0.1.0.0 | <a href='https://github.com/florian-dacosta'><img src='https://github.com/florian-dacosta.png' width='32' height='32' style='border-radius:50%;' alt='florian-dacosta'/></a> | Contract Invoice Start End Dates
[contract_mandate](contract_mandate/) | 16.0.1.0.0 | | Mandate in contracts and their invoices
[contract_payment_auto](contract_payment_auto/) | 16.0.1.0.1 | | Adds automatic payments to contracts.
Expand Down
2 changes: 1 addition & 1 deletion contract_forecast/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Contract Forecast
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:485e36727381fcffd25b1afc873b3552a07c050ad85769998e5478dd18739da6
!! source digest: sha256:61fb7688c4a04a96bccb8a20eff5db0de1b4b837a7f39e6a2dc3d376b307c710
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
Expand Down
2 changes: 1 addition & 1 deletion contract_forecast/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"name": "Contract Forecast",
"summary": """
Contract forecast""",
"version": "16.0.1.0.0",
"version": "16.0.1.1.0",
"license": "AGPL-3",
"author": "ACSONE SA/NV," "Odoo Community Association (OCA)",
"website": "https://github.com/OCA/contract",
Expand Down
3 changes: 0 additions & 3 deletions contract_forecast/models/res_config_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,15 @@ class ResConfigSettings(models.TransientModel):

enable_contract_forecast = fields.Boolean(
string="Enable contract forecast",
default=True,
readonly=False,
related="company_id.enable_contract_forecast",
)
contract_forecast_interval = fields.Integer(
string="Number of contract forecast Periods",
default=12,
related="company_id.contract_forecast_interval",
readonly=False,
)
contract_forecast_rule_type = fields.Selection(
default="monthly",
related="company_id.contract_forecast_rule_type",
readonly=False,
)
2 changes: 1 addition & 1 deletion contract_forecast/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ <h1>Contract Forecast</h1>
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:485e36727381fcffd25b1afc873b3552a07c050ad85769998e5478dd18739da6
!! source digest: sha256:61fb7688c4a04a96bccb8a20eff5db0de1b4b837a7f39e6a2dc3d376b307c710
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.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/16.0/contract_forecast"><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-16-0/contract-16-0-contract_forecast"><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=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
<p>This module add the possibility to analyse contract forecast.</p>
Expand Down
Loading