From c6082617ec857c02fed2281e4628b4e8ba148d29 Mon Sep 17 00:00:00 2001 From: Shllokkk <140623894+Shllokkk@users.noreply.github.com> Date: Sat, 29 Aug 2026 13:03:59 +0530 Subject: [PATCH] chore: resolving conflicts --- erpnext/crm/utils.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/erpnext/crm/utils.py b/erpnext/crm/utils.py index 7be10e647d8..d78ebc7e11e 100644 --- a/erpnext/crm/utils.py +++ b/erpnext/crm/utils.py @@ -255,14 +255,10 @@ class CRMNote(Document): notify_mentions(self.doctype, self.name, note) @frappe.whitelist() -<<<<<<< HEAD - def edit_note(self, note, row_id): -======= def edit_note(self, note: str, row_id: str): # db_update() skips the write check that save() does in add_note/delete_note self.check_permission("write") ->>>>>>> eb49f51 (fix(crm): check write permission in edit_note) for d in self.notes: if cstr(d.name) == row_id: d.note = note