diff --git a/erpnext/patches/v4_4/make_email_accounts.py b/erpnext/patches/v4_4/make_email_accounts.py index cf94107097..3ca5fe93eb 100644 --- a/erpnext/patches/v4_4/make_email_accounts.py +++ b/erpnext/patches/v4_4/make_email_accounts.py @@ -51,7 +51,6 @@ def execute(): # sales, jobs for doctype in ("Sales Email Settings", "Jobs Email Settings"): source = dict(frappe.db.sql("select field, value from tabSingles where doctype=%s", doctype)) - print source if source and source.get('host'): account = frappe.new_doc("Email Account") mapping = { diff --git a/erpnext/utilities/doctype/contact/contact.js b/erpnext/utilities/doctype/contact/contact.js index 6d27fcdf01..659630ba4d 100644 --- a/erpnext/utilities/doctype/contact/contact.js +++ b/erpnext/utilities/doctype/contact/contact.js @@ -3,9 +3,7 @@ {% include 'controllers/js/contact_address_common.js' %}; -<<<<<<< HEAD cur_frm.email_field = "email_id"; -======= frappe.ui.form.on("Contact", "validate", function(frm) { // clear linked customer / supplier / sales partner on saving... $.each(["Customer", "Supplier", "Sales Partner"], function(i, doctype) { @@ -14,18 +12,3 @@ frappe.ui.form.on("Contact", "validate", function(frm) { frappe.model.remove_from_locals(doctype, name); }); }); - -cur_frm.cscript.refresh = function(doc) { - cur_frm.communication_view = new frappe.views.CommunicationList({ - list: frappe.get_list("Communication", {"parent": doc.name, "parenttype": "Contact"}), - parent: cur_frm.fields_dict.communication_html.wrapper, - doc: doc, - recipients: doc.email_id - }); -} - ->>>>>>> upstream/develop -cur_frm.cscript.hide_dialog = function() { - if(cur_frm.contact_list) - cur_frm.contact_list.run(); -} diff --git a/setup.py b/setup.py index bd4adc64dd..be7f892925 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,6 @@ from setuptools import setup, find_packages -<<<<<<< HEAD version = "5.0.0-alpha" -======= -version = "4.12.0" ->>>>>>> upstream/develop with open("requirements.txt", "r") as f: install_requires = f.readlines()