17d4fc4fa7
Depends on frappe/frappe#1532
8 lines
254 B
Python
8 lines
254 B
Python
from __future__ import unicode_literals
|
|
import frappe
|
|
from frappe.patches.v6_19.comment_feed_communication import update_timeline_doc_for
|
|
|
|
def execute():
|
|
for doctype in ("Customer", "Supplier", "Employee", "Project"):
|
|
update_timeline_doc_for(doctype)
|