Initial commit: Odoo 18.0-20251222 extra-addons
Some checks failed
pre-commit / pre-commit (push) Has been cancelled
tests / Detect unreleased dependencies (push) Has been cancelled
tests / test with OCB (push) Has been cancelled
tests / test with Odoo (push) Has been cancelled

This commit is contained in:
tocmo0nlord
2026-03-13 20:43:25 +00:00
parent 36e847a7df
commit adbe430761
9472 changed files with 1265727 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
- Telmo Santos \<telmo.santos@camptocamp.com\>
- Matthieu Méquignon \<matthieu.mequignon@camptocamp.com\>
- Simone Orsi \<simahawk@gmail.com\>
- Thierry Ducrest \<thierry.ducrest@camptocamp.com\>
- Sébastien Alix \<sebastien.alix@camptocamp.com\>
- [Trobz](https://trobz.com):
- Hai Lang \<hailn@trobz.com\>

View File

@@ -0,0 +1,4 @@
**Financial support**
- Cosanum
- Camptocamp R&D

View File

@@ -0,0 +1,14 @@
Provides a cron task who caches prices for all products and all
pricelists. The goal is to be able to generate a whole catalog of prices
and products for a given customer in a decent time.
Everyday, the cron task will trash the previous day's cache, and rebuild
it from scratch. It means that at any moment, the prices stored in the
cache are those of the current day, and will not be recomputed before
the next day.
However, new prices will be cached in the following cases:
- new product is created
- new pricelist is created
- new pricelist item is created

View File

@@ -0,0 +1,3 @@
- Use job dependencies. If pricelist a is based on b, then job a should
depend on job b.
- In tests do not depend on odoo demo data which might change anytime and break the tests