mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-30 18:34:48 +00:00
11 lines
214 B
Python
11 lines
214 B
Python
from __future__ import unicode_literals
|
|
import frappe
|
|
|
|
from frappe import _
|
|
|
|
def get_context(context):
|
|
context.no_cache = 1
|
|
|
|
timelog = frappe.get_doc('Time Log', frappe.form_dict.timelog)
|
|
|
|
context.doc = timelog |