Files
Odoo-18.0-20251222/pricelist_cache/__manifest__.py
tocmo0nlord adbe430761
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
Initial commit: Odoo 18.0-20251222 extra-addons
2026-03-13 20:43:25 +00:00

36 lines
1.0 KiB
Python
Executable File

# 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",
}