odoo8.0条形码改为js方式处理

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了odoo8.0条形码改为js方式处理相关的知识,希望对你有一定的参考价值。

群里网友@上海-gavin 提供的odoo条形码处理,将原来的图片生成方式改为js处理方式。

<div class="row text-center">  
        <div class="col-xs-10 pull-right" style="padding:0px -14px;">  
            <!-- <img t-att-src="‘/report/barcode/?type=%s&value=%s&width=%s&height=%s‘ % (‘Code128‘,o.name,390,60)"/> -->  
            <div t-att-id="‘barcode_%s‘ % (o.id)" style="margin-left:-20px;"></div>  
            <script type="text/javascript">  
                $(function(){  
                    $("#barcode_<t t-esc="o.id"/>").barcode(<t t-esc="o.name"/>,"code128",{barWidth:"2",barHeight:"50",fontSize:"16"});  
                });  
            </script>  
        </div>  
        <!--<div class="col-xs-2 pull-left">  
            <div t-field="o.sequence" style="font-size:35px;padding:5px;border:1px solid #000;width:60px;height:60px;"></div>  
        </div> -->  
    </div>

以上是关于odoo8.0条形码改为js方式处理的主要内容,如果未能解决你的问题,请参考以下文章

Debian8.3.0下安装Odoo8.0步骤

将分组条形图中每个条形的颜色更改为自定义颜色

d3.js化工管条形图

(01)odoo8.0_Ubuntu14.04源码安装

Chart.js:将标题/图例位置更改为右侧

odoo8.0下selection_add的使用