6 lines
191 B
Python
6 lines
191 B
Python
|
from __future__ import unicode_literals
|
||
|
import frappe
|
||
|
|
||
|
def execute():
|
||
|
frappe.reload_doc("hr", "doctype", "hr_settings")
|
||
|
frappe.db.set_value("HR Settings", None, "payroll_based_on", "Leave")
|