4_0 patch dir renamed to v4_0
This commit is contained in:
13
erpnext/patches/v4_0/move_warehouse_user_to_restrictions.py
Normal file
13
erpnext/patches/v4_0/move_warehouse_user_to_restrictions.py
Normal file
@@ -0,0 +1,13 @@
|
||||
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
||||
# License: GNU General Public License v3. See license.txt
|
||||
|
||||
from __future__ import unicode_literals
|
||||
import frappe
|
||||
|
||||
def execute():
|
||||
from frappe.core.page.user_properties import user_properties
|
||||
for warehouse, user in frappe.db.sql("""select parent, user from `tabWarehouse User`"""):
|
||||
user_properties.add(user, "Warehouse", warehouse)
|
||||
|
||||
frappe.delete_doc("DocType", "Warehouse User")
|
||||
frappe.reload_doc("stock", "doctype", "warehouse")
|
||||
Reference in New Issue
Block a user