[MIG] pos_pax: to Odoo 15.0

This commit is contained in:
Jared Kipe
2021-10-27 09:00:45 -07:00
parent 1ba51e0105
commit 7d8fae7968
3 changed files with 19 additions and 26 deletions

View File

@@ -3,7 +3,7 @@
{
'name': 'POS PAX Terminal Credit Card',
'author': 'Hibou Corp. <hello@hibou.io>',
'version': '14.0.1.0.0',
'version': '15.0.1.0.0',
'category': 'Point of Sale',
'sequence': 6,
'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': [
'web',
'pos_sale',
'hibou_professional',
],
'website': 'https://hibou.io',
'data': [
'views/pos_config_setting_views.xml',
'views/pos_pax_templates.xml',
'views/pos_pax_views.xml',
],
'demo': [
],
'qweb': [
'static/src/xml/OrderReceipt.xml',
'static/src/xml/PAXPaymentTransactionPopup.xml',
'static/src/xml/PAXPaymentScreenPaymentLines.xml',
],
'assets': {
'web.assets_qweb': [
'pos_pax/static/src/xml/OrderReceipt.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,
'auto_install': False,
'license': 'OPL-1',

View File

@@ -10,9 +10,9 @@
cursor: pointer !important;
border: 1px solid rgba(255, 255, 255, 0.5);
background-color: rgba(255,255,255, 0.2);
display: inline-block;
display: block;
text-align: center;
margin: 6px 5px 0 0;
padding: 2px 5px;
min-width: 100px;
min-width: 50px;
}

View File

@@ -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>