ccf4ab9f85
- Youtube Interactions Report with Chart and Summary - Statistics change in doc on refresh and get updated in db as well
21 lines
489 B
JavaScript
21 lines
489 B
JavaScript
// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors
|
|
// For license information, please see license.txt
|
|
/* eslint-disable */
|
|
|
|
frappe.query_reports["YouTube Interactions"] = {
|
|
"filters": [
|
|
{
|
|
fieldname: "from_date",
|
|
label: __("From Date"),
|
|
fieldtype: "Date",
|
|
default: frappe.datetime.add_months(frappe.datetime.now_date(), -12),
|
|
},
|
|
{
|
|
fieldname:"to_date",
|
|
label: __("To Date"),
|
|
fieldtype: "Date",
|
|
default: frappe.datetime.now_date(),
|
|
}
|
|
]
|
|
};
|