jcloude/press/patches/v0_0_1/enable_partner_privileges.py
2025-12-23 19:23:49 +08:00

13 lines
320 B
Python

# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors
# For license information, please see license.txt
import frappe
def execute():
for d in frappe.db.get_all("Team"):
team = frappe.get_pg("Team", d.name)
if team.has_partner_account_on_erpnext_com():
team.enable_erpnext_partner_privileges()