Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
3454 Lượt xem

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:

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
2
thg 10 25
680
1
thg 9 25
1534
2
thg 9 25
1662
1
thg 8 25
1389
1
thg 7 25
1649