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.
我有一个“包裹”文档类型,其中有一个“包裹内容”文档类型作为子表。
如果我做:
frappe.get_doc('Parcel', 'NAME')
我得到了包含子表的对象,它适用于单个对象。
但我需要用他的子表字段获取多个对象。
所以我无法呈现自定义 jinja 模板。
例如:
frappe.get_all('Parcel', fields=['fields_of_parent', 'content'], filters=[])
所以这会让我得到带有子表的过滤对象。
您必须查询子表:
frappe.get_all("Parcel Content", filters = dict(parent=parcel_name), fields = [fields of child table])`