Merge pull request #10251 from rohitwaghchaure/permlevel_1_write_permission

Set write permission to sales manger for permlevel 1 in Quotation doctype
This commit is contained in:
Nabin Hait
2017-08-03 10:45:17 +05:30
committed by GitHub
3 changed files with 15 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
# Copyright (c) 2017, Frappe and Contributors
# License: GNU General Public License v3. See license.txt
from __future__ import unicode_literals
import frappe
def execute():
# Set write permission to permlevel 1 for sales manager role in Quotation doctype
frappe.db.sql(""" update `tabCustom DocPerm` set `tabCustom DocPerm`.write = 1
where `tabCustom DocPerm`.parent = 'Quotation' and `tabCustom DocPerm`.role = 'Sales Manager'
and `tabCustom DocPerm`.permlevel = 1 """)