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

I'm working on these files to add a custom autoincrement value to each pos ticket generated in odoo v10:

Point_of_sale es el modulo 

.. \addons\point_of_sale\static\src\js\ models.js

.. \addons\pos_ticket\static\src\xml\pos_ticket_view.xml
odoo code:

Model.js
order_id_ : function (){
                var x = 1;        
                if(this.pos.order.id)
                    {
                        x = this.pos.order.id++;
                    }
                else
                    {
                        x = x++;
                    }
            function sequense(num)
                {
                    var s = ""+ num;
                    while (s.length < 8)
                    {
                        s = "0" + s;
                    }
                    return s;
                }
            return sequense(x);
        },
pos_ticket_view.xml
<t t-esc="order.order_id_()" / >



odooSo far I get this error because the variable isn't yet created:

アバター
破棄
関連投稿 返信 ビュー 活動
2
10月 25
680
1
9月 25
1534
2
9月 25
1662
1
8月 25
1389
1
7月 25
1649