-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__manifest__.py
More file actions
25 lines (25 loc) · 835 Bytes
/
__manifest__.py
File metadata and controls
25 lines (25 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright 2024 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "PoS Product packaging container deposit",
"summary": "Add the container deposit fees in a POS order",
"version": "16.0.1.0.0",
"category": "Point of Sale",
"website": "https://github.com/OCA/pos",
"author": "Camptocamp, Odoo Community Association (OCA)",
"license": "AGPL-3",
"application": False,
"installable": True,
"depends": [
"point_of_sale",
"product_packaging_container_deposit",
],
"assets": {
"point_of_sale.assets": [
"pos_product_packaging_container_deposit/static/src/js/**/*",
],
"web.assets_tests": [
"pos_product_packaging_container_deposit/tests/tours/TestDepostit.tour.js",
],
},
}