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

35
pricelist_cache/__manifest__.py Executable file
View File

@@ -0,0 +1,35 @@
# Copyright 2021 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Pricelist Cache",
"summary": """
Provide a new model to cache price lists and update it,
to make it easier to retrieve them.
""",
"version": "18.0.1.0.0",
"category": "Hidden",
"author": "Camptocamp, Odoo Community Association (OCA)",
"license": "AGPL-3",
"depends": [
"partner_pricelist_search",
"product",
"sale",
"queue_job",
],
"website": "https://github.com/OCA/sale-workflow",
"data": [
"security/ir.model.access.csv",
"data/ir_cron.xml",
"data/ir_filters_data.xml",
"data/queue_job.xml",
"views/res_partner.xml",
"views/product_pricelist.xml",
"views/product_pricelist_cache.xml",
"wizards/pricelist_cache_wizard.xml",
],
"demo": [
"data/demo.xml",
],
"installable": True,
"post_init_hook": "set_default_partner_product_filter",
}