本来是打算重写网站website_sale模块中controllers文件夹中的类方法,但是继承始终不生效,下面重写的方法始终进不去,
有能看出异常的大神吗?
# -- coding: utf-8 --
import dotop
from dotop import http
from dotop.http import request
import dotop.addons.website_sale.controllers.main
class website_sale(dotop.addons.website_sale.controllers.main.website_sale):
def checkout_values(self, data=None):
cr, uid, context, registry = request.cr, request.uid, request.context, request.registry
orm_partner = registry.get('res.partner')
orm_user = registry.get('res.users')
orm_country = registry.get('res.country')
state_orm = registry.get('res.country.state')
orm_res_branch = registry.get('res.branch')
X
xudalinzhou163.com
@xudalinzhou163.com
-
Odoo 继承website_sale模块下controllers中的main,重写方法始终掉不起来 -
报表行高或者是单元格高度自动调整现在想做一个报表,报表中一个单元格可能会存入多行数据,如何设置格式或者是通过其他方式实现单元格所在行自动调整高度,求各位大神帮忙解答
下面是代码,附件有打印出报表的格式
<tr>
<td>产品名称</td>
<td>
<span t-foreach="o.move_lines" t-as="line"><t t-esc="line.product_id.name"/>,<t t-esc="line.product_uom_qty"/>吨; </span>
</td>
<td >车号</td>
<td></td>
</tr>