bf8e331135
* [fix] unset default customer group * added __init__.py file for patch v8.9 directory
7 lines
174 B
Python
7 lines
174 B
Python
import frappe
|
|
|
|
def execute():
|
|
selling_settings = frappe.get_single('Selling Settings')
|
|
selling_settings.set_default_customer_group_and_territory()
|
|
selling_settings.save()
|