Commit Graph

15 Commits

Author SHA1 Message Date
angelmoya
b3bf3b2a54 FIX variable quantity view 2021-01-31 19:09:43 +01:00
Víctor Martínez
d8dd093ee7 [IMP] contract_variable_quantity: Add qty_type field in portal 2021-01-04 09:03:59 +01:00
Carlos Roca
e103a1fa54 [MIG] contract_variable_quantity: Migration to v13 2020-10-28 12:48:42 +01:00
Carlos Roca
03f82ac325 [IMP] contract_variable_quantity: black, isort, prettier 2020-10-27 13:35:26 +01:00
Ernesto Tejeda
796b319dbe [IMP] contract: add section and notes in contract line 2020-10-27 13:33:07 +01:00
Pedro M. Baeza
63cdbd67a9 [FIX] contract_variable_quantity: Allow to propagate variable qty fields from template
**Steps to reproduce the problem**

- Define a contract template with one line with variable quantity and formula.
- Use that template in a new contract.
- Variable quantity type and formula are not transferred from template to contract.

This is due to the lack of that fields in the tree view that prevents web client to fetch
and store them.

We solve it adding those fields to the contract line tree view, also providing some
visibility logic for not showing the corresponding fields according the type.

No regression tests is provided, as this is only reproducible with web client, not through
code.
2020-10-27 13:33:07 +01:00
sbejaoui
25c40cb217 [FIX] - redundant fields in contract line form view 2020-10-27 13:33:07 +01:00
sbejaoui
af5433dcf2 [12.0][REF] - Contract Variable quantity: split from analytic accoun 2020-10-27 13:33:07 +01:00
sbejaoui
e18f1f04da [IMP] - Adapt contract_variable_quantity to contract new views 2020-10-27 13:33:07 +01:00
sbejaoui
3d27d9daa2 [IMP] - Add ace-widget with python mode 2020-10-27 13:33:07 +01:00
Carlos Dauden
295c7c1ee7 [IMP] contract_variable_quantity: Add option to don't create zero qty invoice lines 2020-10-27 13:33:07 +01:00
Dave Lasley
b471266ab1 [10.0][IMP] Add variable qty to contract template view (#66)
* [IMP] Add variable qty to contract template view

* Bump minor version
2020-10-27 13:33:07 +01:00
Dave Lasley
8b4849c6db [IMP][10.0] contract: Add templating (#42)
Add template functionality for contracts
2020-10-27 13:33:07 +01:00
Dave Lasley
04ea45a067 [MIG] contract_variable_quantity: Migrate to v10
* Bump version
* Change openerp references to odoo
* Installable to True
* Change permissions & views to accounting dependency
2020-10-27 13:33:07 +01:00
Pedro M. Baeza
e026e60fb8 [ADD] contract_variable_quantity:
=================================================
Variable quantity in contract recurrent invoicing
=================================================

With this module, you will be able to define in recurring contracts some
lines with variable quantity according a provided formula.

Configuration
=============

* Go to Sales > Configuration > Contracts > Formulas (quantity).
* Define any formula based on Python code that stores at some moment a
  float/integer value of the quantity to invoice in the variable 'result'.

  You can use these variables to compute your formula:

  * *env*: Environment variable for getting other models.
  * *context*: Current context dictionary.
  * *user*: Current user.
  * *line*: Contract recurring invoice line that triggers this formula.
  * *contract*: Contract whose line belongs to.
  * *invoice*: Invoice (header) being created.

Usage
=====

To use this module, you need to:

* Go to Sales -> Contracts and select or create a new contract.
* Check *Generate recurring invoices automatically*.
* Add a new recurring invoicing line.
* Select "Variable quantity" in column "Qty. type".
* Select one of the possible formulas to use (previously created).
2020-10-27 13:30:08 +01:00