9d9fa74e6b
* remove email column * update controller methods * add patch to add value from email to email_id
20 lines
645 B
Python
20 lines
645 B
Python
# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors
|
|
# MIT License. See license.txt
|
|
|
|
from __future__ import unicode_literals
|
|
import frappe
|
|
|
|
def execute():
|
|
"""add value to email_id column from email"""
|
|
|
|
if frappe.db.has_column("Member", "email"):
|
|
# Get all members
|
|
for member in frappe.db.get_all("Member", pluck="name"):
|
|
# Check if email_id already exists
|
|
if not frappe.db.get_value("Member", member, "email_id"):
|
|
# fetch email id from the user linked field email
|
|
email = frappe.db.get_value("Member", member, "email")
|
|
|
|
# Set the value for it
|
|
frappe.db.set_value("Member", member, "email_id", email)
|