我正在尝试使用此处记录的 DB API获得在给定月份结束的订阅。
我可以在某个日期之前获得:
end_period = datetime.date(2020, 12, 31)
frappe.db.get_list('Subscription', filters={
'current_invoice_end': ['<', end_period]
})
但是我将如何指定之前end_period
和之后start_period
?
当我尝试
frappe.db.get_list('Subscription', filters={
'current_invoice_end': ['<', end_period],
'current_invoice_end': ['>', start_period]
})
它将其视为“或”并列出了范围之外的内容。
在讨论.erpnext.com上交叉发布