fix: auto reorder material request mail issue (#43066)

fix: auto reorder matreial request mail issue
This commit is contained in:
rohitwaghchaure
2024-09-05 15:39:03 +05:30
committed by GitHub
parent 5f25cde788
commit a8055a6da9

View File

@@ -354,9 +354,14 @@ def get_email_list(company):
def get_comapny_wise_users(company):
companies = [company]
if parent_company := frappe.db.get_value("Company", company, "parent_company"):
companies.append(parent_company)
users = frappe.get_all(
"User Permission",
filters={"allow": "Company", "for_value": company, "apply_to_all_doctypes": 1},
filters={"allow": "Company", "for_value": ("in", companies), "apply_to_all_doctypes": 1},
fields=["user"],
)