-
-
Notifications
You must be signed in to change notification settings - Fork 617
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIG] pos_receipt_hide_price: Migration to 16.0
- Loading branch information
1 parent
8debf3a
commit 3ee48db
Showing
12 changed files
with
47 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
# Copyright 2021 Akretion - Florian Mounier | ||
# Copyright 2022 FactorLibre - Daniel Duque | ||
{ | ||
"name": "POS Receipt Hide Price", | ||
"summary": "Add button to remove price from receipt.", | ||
"author": "Akretion, Odoo Community Association (OCA)", | ||
"author": "Akretion, FactorLibre, Odoo Community Association (OCA)", | ||
"website": "https://github.com/OCA/pos", | ||
"category": "Point of Sale", | ||
"version": "14.0.1.0.1", | ||
"version": "16.0.1.0.0", | ||
"license": "LGPL-3", | ||
"depends": ["point_of_sale"], | ||
"data": ["views/assets.xml"], | ||
"qweb": [ | ||
"static/src/xml/OrderReceipt.xml", | ||
"static/src/xml/HidePrice.xml", | ||
"static/src/xml/ReceiptScreen.xml", | ||
"static/src/xml/ReprintReceiptScreen.xml", | ||
], | ||
"assets": { | ||
"point_of_sale.assets": [ | ||
"pos_receipt_hide_price/static/src/js/ReceiptScreen.js", | ||
"pos_receipt_hide_price/static/src/js/ReprintReceiptScreen.js", | ||
"pos_receipt_hide_price/static/src/js/OrderReceipt.js", | ||
"pos_receipt_hide_price/static/src/xml/**/*", | ||
], | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
* `Akretion <https://www.akretion.com>`_: | ||
|
||
* Florian Mounier | ||
|
||
* `FactorLibre <https://factorlibre.com/>`_: | ||
|
||
* Daniel Duque |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
setup/pos_receipt_hide_price/odoo/addons/pos_receipt_hide_price
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../../pos_receipt_hide_price |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import setuptools | ||
|
||
setuptools.setup( | ||
setup_requires=['setuptools-odoo'], | ||
odoo_addon=True, | ||
) |