问题标签 [qweb]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
odoo - qweb模板odoo中的字符串函数
我想在 qweb 模板中显示具有特定长度的数据,更多数据将被替换为 ...
如果我只想显示前五个字符,
我有关于这个主题的谷歌,但没有运气,也没有与此相关的此类文档。
任何帮助,将不胜感激。
python - 预期单身:hr.employee(1, 2)
再会!kanban
大家加载视图时遇到错误。我继承了hr.employee
Kanban
xml,如果某个文档过期,只需添加一个条件,它会在kanban
视图中添加过期文档通知,这是 xml 代码:
和documents_status
字段模型
和加载时
员工中的kanban
视图发生错误
预期单身:hr.employee(1, 2)。
有人会帮我解决这个问题,并提前致谢。
odoo - qweb 报告中无法访问变量?
我正在尝试创建一个 qweb 报告,并使用了以下代码段,但是在评估时出现“未定义全局名称‘合作伙伴’”的错误
report - 问:Odoo QWeb 报表页面计数器在页面上
如何在页脚之外显示页数?
嘿,
我正在为客户构建报告。一切都很好,只是他想在页面上(地址字段附近)显示页码而不是页脚,这根本不起作用。
到目前为止,据我了解,报告模块中使用的 subst.js 负责将page
和topage
类替换为页码。
subst.js 在 report/minimal_layout 模板中被调用,如果subst is True
. 布尔值在 report.pyget_pdf
方法中的页眉和页脚设置为True
,而对于reportcontent
. 如果我应用不好的做法并编辑 Odoo 核心并设置subst=True
为reportcontent
,则报告引擎不再呈现报告的正文部分并返回未定义。
有没有人找到适合这个问题的解决方案?
xml - 如何在 Odoo8 报告的页脚显示公司的银行?
我试图在 Odoo 8 报告的页脚显示公司的一些数据(电话、增值税、银行......)。为此,我创建了一个从外部布局页脚继承的视图并进行修改。我可以看到我在报告页脚中所做的所有修改,除了公司的银行。
这是我的代码:
除了银行,一切都在修改。它们根本没有显示(并且主要公司分配了两家银行)。事实上,它并没有进入循环for
,因为我什至看不到HELLO这个词。
谁能帮我?先感谢您。
javascript - Data Tables are not loading when i redirect my page using self.do_action in odoo(openERP7) qweb screen
When i redirect my page using self.do_action
in odoo(openERP7)
it is not loading Data Tables in the new page.
In other pages it was working fine. But in a particular page if i redirect using this self.do_action
is not working. But self.act_window
is working fine in the same page.
If any one faced this same issue please let me know.
Update:I found a similarity of problems in my code. I have a model like performance.review and some other models also. All the self.do_action
used in this model is not loading Data tables properly. But other model screens does perfectly.
Is there any relation between model extension and using self.do_action
?
Here is my code,
menu - Odoo 8 - 自定义主题:显示从管理界面创建的菜单
我正在为 Odoo 在线商店创建自定义主题。我需要有一个主菜单,它是网站模块默认提供的主菜单,还有一个我想在所有页面上显示的二级菜单,位于主菜单下方。我在后端创建了二级菜单,它看起来像这样:
“顶部菜单”是默认菜单,它正确显示在网站页面的右上角。我只是不知道如何在我的模板中显示“导航”菜单。
从我的模板中的任何地方的网站模块复制这段代码会显示“顶部菜单”:
所以我猜这个“顶级菜单”以某种方式与网站模块相关联,对吧?那么我需要将“导航”菜单与我的主题“关联”吗?我该怎么做?还是我做错了一切?我习惯了 Wordpress 的wp_nav_menu
功能,您可以简单地通过其 ID 获取菜单,但也许这不是 Odoo 的方式?我很难在文档或论坛中找到有关此问题的帮助。
report - Odoo - 在 qweb 报告中导入数据
我使用模型 event.event 创建了一个报告。
任何问题,我的报告正在运行。
现在我想将外部数据导入另一个模型(例如:res.partner)
class SportReport(models.AbstractModel):
_name = ‘report.sport_event.report_company_sport’</p>
@api.multi
def render_html(self, data=None):
report_obj = self.env['report']
report = report_obj._get_report_from_name('sport_event.report_company_sport')
docargs = {
'doc_ids': self._ids,
'doc_model': report.model,
'docs': self,
'get_company': self._get_company,
}
return report_obj.render(‘sport_event.report_company_sport', docargs)
鉴于:
错误 :
我的错误在哪里?谢谢 :)
xml - 如何在 Odoo 的自定义 QWeb 报告中打印图像?
我想在我的自定义 Qweb 报告中显示用户上传的图像。
最好的方法是什么?
odoo-8 - ODOO8 - 在每个产品线下添加包含产品详细描述的行
我不是 QWEB 专家,我尝试通过在每个产品线下添加包含长产品描述(精确描述)的行来更改标准采购订单。
有人可以帮助我吗?
提前致谢
L.亚当