mirror of
https://github.com/frappe/erpnext.git
synced 2026-09-01 07:37:04 +00:00
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)
|