13 lines
324 B
Python
13 lines
324 B
Python
# Copyright (c) 2020, Jingrow Technologies Pvt. Ltd. and Contributors
|
|
# For license information, please see license.txt
|
|
|
|
|
|
import jingrow
|
|
|
|
|
|
def execute():
|
|
for d in jingrow.db.get_all("Team"):
|
|
team = jingrow.get_pg("Team", d.name)
|
|
if team.has_partner_account_on_erpnext_com():
|
|
team.enable_erpnext_partner_privileges()
|