Commit Graph

15 Commits

Author SHA1 Message Date
Pedro M. Baeza
a49f838a63 [IMP] contract_variable_quantity: Recompute price when changing qty
If you have contract lines with automatic price and your pricelist
contains different prices per quantity, the price is not changed
when computing quantity.

This PR fixes this.
2024-07-22 11:49:58 +02:00
Pedro M. Baeza
c529980e42 [IMP] contract_variable_quantity: Make name translatable 2024-07-22 11:49:58 +02:00
Carlos Dauden
aea6200f7e [IMP] contract_variable_quantity: Add option to don't create zero qty invoice lines 2024-07-22 11:49:58 +02:00
Pedro M. Baeza
50a67bb705 [FIX] contract_variable_quantity: Correct README menus references 2024-07-22 11:49:58 +02:00
Carlos Dauden
e4e2b9f82a [MIG] contract_variable_quantity: Migration to 11.0 2024-07-22 11:49:58 +02:00
Moisés López
588cc569ac [FIX] contract_payment_auto: Fix freze wkhtmltopdf freezed 2024-07-22 11:49:58 +02:00
Dave Lasley
decc1607de [10.0][IMP] Add variable qty to contract template view (#66)
* [IMP] Add variable qty to contract template view

* Bump minor version
2024-07-22 11:49:58 +02:00
Dave Lasley
bb4963c28f [IMP][10.0] contract: Add templating (#42)
Add template functionality for contracts
2024-07-22 11:49:58 +02:00
Dave Lasley
c6d41ae421 [MIG] contract_variable_quantity: Migrate to v10
* Bump version
* Change openerp references to odoo
* Installable to True
* Change permissions & views to accounting dependency
2024-07-22 11:49:58 +02:00
Pedro M. Baeza
53069fa4bb [MIG] Rename manifest files 2024-07-22 11:49:58 +02:00
Pedro M. Baeza
a10cbb0f43 [MIG] Make modules uninstallable 2024-07-22 11:49:58 +02:00
Carlos Dauden
4724f401ab [IMP] contract: Add past receipt type. Fix yearly. Add month last day 2024-07-22 11:49:58 +02:00
Pedro M. Baeza
4500201153 [IMP] contract_variable_quantity: Spanish translation 2024-07-22 11:49:58 +02:00
Pedro M. Baeza
f15bc98aee [IMP] contract_variable_quantity: Screenshot 2024-07-22 11:49:58 +02:00
Pedro M. Baeza
32143d8ef7 [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).
2024-07-22 11:49:58 +02:00