Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
任何人都知道在 ERPNext 中加入多个数据库表的 ORM 函数是什么?我需要使用脚本报告连接来自 2 个数据库表的查询结果
*我不需要查询报告答案,因为我已经有了它。我只是在寻找一个使用脚本报告的例子
Frappe 目前不支持加入表的 ORM。您可能需要frappe.db.sql暂时使用。
frappe.db.sql
data = frappe.db.sql(""" select tb1.name from tabTable1as tb1 left join tabTable2as tb2 on tb1.name = tb2.employee_name; """ ); 返回数据
tabTable1
tabTable2