Odoo中如何实现第三方JS库
how to implement third party JS library in Odoo
嗨,我想在 odoo pos 中实现这个 qr code generator
但我不知道该怎么做,甚至在 Javascript reference in odoo 12
中我也看不到任何教程
我想生成一个带有收据参考(this.uid)的二维码作为输出(扫描时)并将其显示在 PosTicket
我试过在我的 static/src/js 文件夹中添加 qrcode.min.js 和 qrcode.js 并添加
<script src="/tw_pos_inherit/static/src/js/qrcode.min.js" type="text/javascript"></script>
<script src="/tw_pos_inherit/static/src/js/qrcode.js" type="text/javascript"></script>
我认为并尝试了上述示例,但它总是给我一个错误
任何知道如何在 odoo12 中使用第三方 javascript 库的人请给我一个例子
谢谢
好的,所以我只需要将 js 和 min.js 文件移动到我的 static/src/js 文件夹中并添加代码
<script src="/tw_pos_inherit/static/src/js/qrcode.js" type="text/javascript"></script>
<script src="/tw_pos_inherit/static/src/js/qrcode.min.js" type="text/javascript"></script>
到我的资产文件和
我又试了一遍这些例子,比如
this.qrcode = new QRCode('qrcode');
this.qrcode.makeCode(this.pos.get_order().uid);
我的 initialized
函数并且它工作正常
嗨,我想在 odoo pos 中实现这个 qr code generator 但我不知道该怎么做,甚至在 Javascript reference in odoo 12
中我也看不到任何教程我想生成一个带有收据参考(this.uid)的二维码作为输出(扫描时)并将其显示在 PosTicket
我试过在我的 static/src/js 文件夹中添加 qrcode.min.js 和 qrcode.js 并添加
<script src="/tw_pos_inherit/static/src/js/qrcode.min.js" type="text/javascript"></script>
<script src="/tw_pos_inherit/static/src/js/qrcode.js" type="text/javascript"></script>
我认为并尝试了上述示例,但它总是给我一个错误
任何知道如何在 odoo12 中使用第三方 javascript 库的人请给我一个例子
谢谢
好的,所以我只需要将 js 和 min.js 文件移动到我的 static/src/js 文件夹中并添加代码
<script src="/tw_pos_inherit/static/src/js/qrcode.js" type="text/javascript"></script>
<script src="/tw_pos_inherit/static/src/js/qrcode.min.js" type="text/javascript"></script>
到我的资产文件和
我又试了一遍这些例子,比如
this.qrcode = new QRCode('qrcode');
this.qrcode.makeCode(this.pos.get_order().uid);
我的 initialized
函数并且它工作正常