コンテンツへスキップ
メニュー
この質問にフラグが付けられました
4 返信
5062 ビュー

Hello all,

I would want to create 3 or 4 different Pos Ticket in my multi company installation of Odoo 8. 

I thought I could define more than one file in the 'qweb' section, but it doesn't work... 

{

    [...]

    'qweb': [

        'static/src/xml/pos_cie_1.xml',

        'static/src/xml/pos_cie_2.xml',     <-----  Could we declare a second file here? It doesn't seem to be possible!!!

    ],

    [...]

}

アバター
破棄
最善の回答

Hi pascal,


For multiple files you can use this.


'qweb': ['static/src/xml/*.xml']

This load your all xml files.

Hope this would work for you.

Rgds,

Anil.


アバター
破棄
著作者

Ho wow. very very interesting. Will try it tomorrow. Thanks 1000 times.

welcome buddy

最善の回答

Hello Pascal,

Loading several QWeb templates is possible with both options, please see:

https://github.com/odoo/odoo/blob/8.0/addons/mail/__openerp__.py#L74

https://github.com/odoo/odoo/blob/8.0/addons/board/__openerp__.py#L41

But I don't think it's possible to load different templates for the same Widget and have them available at the same time.

Widgets declare its template only once, the 'PosWidget' declares its template here:

* https://github.com/odoo/odoo/blob/8.0/addons/point_of_sale/static/src/js/widgets.js#L935

For other widgets, as the form widgets, one can create new widgets by inheriting existing ones and overriding their definition (template reference included), and then it can reference the new widgets to be used instead of the existing/default ones.

Even though you can create new PosWidgets, based in the original one, I don't think there is a way to switch widget implementations at runtime.

If someone else knows a way, please let us know.

Regards.

アバター
破棄
関連投稿 返信 ビュー 活動
1
4月 25
1587
0
2月 25
1651
0
9月 17
3227
1
3月 15
6853
4
11月 24
3622