pms_pos_link: OCA/pms manifest url

This commit is contained in:
Darío Lodeiros
2023-03-21 16:59:12 +01:00
parent 137fda461e
commit efcad295c6

44
pos_pms_link/__manifest__.py Executable file → Normal file
View File

@@ -19,30 +19,30 @@
############################################################################## ##############################################################################
{ {
'name': 'POS PMS link', "name": "POS PMS link",
'summary': 'Allows to use PMS reservations on the POS interface', "summary": "Allows to use PMS reservations on the POS interface",
'version': "14.0.1.0.0", "version": "14.0.1.0.0",
'author': 'Comunitea Servicios Tecnológicos S.L.', "author": "Comunitea Servicios Tecnológicos S.L., Odoo Community Association (OCA)",
'website': "http://www.comunitea.com", "website": "https://github.com/OCA/pms",
'license': 'AGPL-3', "license": "AGPL-3",
"category": "Point of Sale", "category": "Point of Sale",
'depends': [ "depends": [
'point_of_sale', "point_of_sale",
'pms', "pms",
], ],
'data': [ "data": [
'views/assets_common.xml', "views/assets_common.xml",
'views/pms_service_line.xml', "views/pms_service_line.xml",
'views/pos_order.xml', "views/pos_order.xml",
'views/pos_config.xml', "views/pos_config.xml",
], ],
'demo': [], "demo": [],
'qweb': [ "qweb": [
'static/src/xml/ReservationSelectionButton.xml', "static/src/xml/ReservationSelectionButton.xml",
'static/src/xml/Screens/ReservationListScreen/ReservationDetailsEdit.xml', "static/src/xml/Screens/ReservationListScreen/ReservationDetailsEdit.xml",
'static/src/xml/Screens/ReservationListScreen/ReservationLine.xml', "static/src/xml/Screens/ReservationListScreen/ReservationLine.xml",
'static/src/xml/Screens/ReservationListScreen/ReservationListScreen.xml', "static/src/xml/Screens/ReservationListScreen/ReservationListScreen.xml",
'static/src/xml/Screens/PaymentScreen/PaymentScreen.xml', "static/src/xml/Screens/PaymentScreen/PaymentScreen.xml",
], ],
'installable': True, "installable": True,
} }