mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-05 22:48:27 +00:00
6 lines
222 B
Python
6 lines
222 B
Python
import webnotes
|
|
|
|
def execute():
|
|
webnotes.reload_doc("projects", "doctype", "project")
|
|
for p in webnotes.conn.sql_list("""select name from tabProject"""):
|
|
webnotes.bean("Project", p).controller.update_percent_complete() |