forked from OCA/pos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
28 lines (28 loc) · 925 Bytes
/
__manifest__.py
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
26
27
28
# Copyright 2024 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "POS Receipt Replace User By Trigram",
"summary": "Replace User by Trigram in POS receipt.",
"author": "Camptocamp, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/pos",
"category": "Point of Sale",
"license": "AGPL-3",
"application": False,
"installable": True,
"version": "16.0.1.0.0",
"depends": [
"point_of_sale",
"partner_firstname",
],
"assets": {
"point_of_sale.assets": [
"pos_receipt_replace_user_by_trigram/static/src/js/models.js",
"pos_receipt_replace_user_by_trigram/static/src/js/order_receipt.js",
"pos_receipt_replace_user_by_trigram/static/src/xml/**/*",
],
},
"data": [
"views/res_config_settings.xml",
"views/res_users.xml",
],
}