瀏覽代碼

[fix] Auto email report not working

version-14
Rohit Waghchaure 8 年之前
父節點
當前提交
99d39ea0a9
共有 1 個檔案被更改,包括 3 行新增1 行删除
  1. +3
    -1
      frappe/email/doctype/auto_email_report/auto_email_report.js

+ 3
- 1
frappe/email/doctype/auto_email_report/auto_email_report.js 查看文件

@@ -66,7 +66,9 @@ frappe.ui.form.on('Auto Email Report', {

var filters = JSON.parse(frm.doc.filters || '{}');
var report_filters = frappe.query_reports[frm.doc.report].filters;
frm.set_value('filter_meta', JSON.stringify(report_filters));
if(report_filters.length > 0) {
frm.set_value('filter_meta', JSON.stringify(report_filters));
}

report_filters_list = []
$.each(report_filters, function(key, val){


Loading…
取消
儲存