mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
[MIG] pos_pax: to Odoo 15.0
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
{
|
{
|
||||||
'name': 'POS PAX Terminal Credit Card',
|
'name': 'POS PAX Terminal Credit Card',
|
||||||
'author': 'Hibou Corp. <hello@hibou.io>',
|
'author': 'Hibou Corp. <hello@hibou.io>',
|
||||||
'version': '14.0.1.0.0',
|
'version': '15.0.1.0.0',
|
||||||
'category': 'Point of Sale',
|
'category': 'Point of Sale',
|
||||||
'sequence': 6,
|
'sequence': 6,
|
||||||
'summary': 'PAX Terminal Credit card support for Point Of Sale',
|
'summary': 'PAX Terminal Credit card support for Point Of Sale',
|
||||||
@@ -23,23 +23,32 @@ Depending on Device and processor support, this integration can handle:
|
|||||||
|
|
||||||
""",
|
""",
|
||||||
'depends': [
|
'depends': [
|
||||||
'web',
|
|
||||||
'pos_sale',
|
'pos_sale',
|
||||||
'hibou_professional',
|
'hibou_professional',
|
||||||
],
|
],
|
||||||
'website': 'https://hibou.io',
|
'website': 'https://hibou.io',
|
||||||
'data': [
|
'data': [
|
||||||
'views/pos_config_setting_views.xml',
|
'views/pos_config_setting_views.xml',
|
||||||
'views/pos_pax_templates.xml',
|
|
||||||
'views/pos_pax_views.xml',
|
'views/pos_pax_views.xml',
|
||||||
],
|
],
|
||||||
'demo': [
|
'demo': [
|
||||||
],
|
],
|
||||||
'qweb': [
|
'assets': {
|
||||||
'static/src/xml/OrderReceipt.xml',
|
'web.assets_qweb': [
|
||||||
'static/src/xml/PAXPaymentTransactionPopup.xml',
|
'pos_pax/static/src/xml/OrderReceipt.xml',
|
||||||
'static/src/xml/PAXPaymentScreenPaymentLines.xml',
|
'pos_pax/static/src/xml/PAXPaymentTransactionPopup.xml',
|
||||||
],
|
'pos_pax/static/src/xml/PAXPaymentScreenPaymentLines.xml',
|
||||||
|
],
|
||||||
|
'point_of_sale.assets': [
|
||||||
|
'pos_pax/static/src/js/jquery_base64.js',
|
||||||
|
'pos_pax/static/src/js/pax_device.js',
|
||||||
|
'pos_pax/static/src/js/pos_pax.js',
|
||||||
|
'pos_pax/static/src/js/PAXPaymentTransactionPopup.js',
|
||||||
|
'pos_pax/static/src/js/PAXPaymentScreen.js',
|
||||||
|
'pos_pax/static/src/js/PAXPaymentScreenPaymentLines.js',
|
||||||
|
'pos_pax/static/src/css/pos_pax.css',
|
||||||
|
],
|
||||||
|
},
|
||||||
'installable': True,
|
'installable': True,
|
||||||
'auto_install': False,
|
'auto_install': False,
|
||||||
'license': 'OPL-1',
|
'license': 'OPL-1',
|
||||||
|
|||||||
@@ -10,9 +10,9 @@
|
|||||||
cursor: pointer !important;
|
cursor: pointer !important;
|
||||||
border: 1px solid rgba(255, 255, 255, 0.5);
|
border: 1px solid rgba(255, 255, 255, 0.5);
|
||||||
background-color: rgba(255,255,255, 0.2);
|
background-color: rgba(255,255,255, 0.2);
|
||||||
display: inline-block;
|
display: block;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin: 6px 5px 0 0;
|
margin: 6px 5px 0 0;
|
||||||
padding: 2px 5px;
|
padding: 2px 5px;
|
||||||
min-width: 100px;
|
min-width: 50px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,16 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<odoo>
|
|
||||||
|
|
||||||
<template id="assets" inherit_id="point_of_sale.assets">
|
|
||||||
<xpath expr="." position="inside">
|
|
||||||
<script type="text/javascript" src="/pos_pax/static/src/js/jquery_base64.js"></script>
|
|
||||||
<script type="text/javascript" src="/pos_pax/static/src/js/pax_device.js"></script>
|
|
||||||
<script type="text/javascript" src="/pos_pax/static/src/js/pos_pax.js"></script>
|
|
||||||
<script type="text/javascript" src="/pos_pax/static/src/js/PAXPaymentTransactionPopup.js"></script>
|
|
||||||
<script type="text/javascript" src="/pos_pax/static/src/js/PAXPaymentScreen.js"></script>
|
|
||||||
<script type="text/javascript" src="/pos_pax/static/src/js/PAXPaymentScreenPaymentLines.js"></script>
|
|
||||||
<link rel="stylesheet" href="/pos_pax/static/src/css/pos_pax.css" />
|
|
||||||
</xpath>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
</odoo>
|
|
||||||
Reference in New Issue
Block a user