From 0992ca40b041fb64dfba367fd5720206a0bc2e27 Mon Sep 17 00:00:00 2001 From: Raffael Meyer <14891507+barredterra@users.noreply.github.com> Date: Thu, 15 Dec 2022 00:13:13 +0100 Subject: [PATCH] chore: resolve merge conflict (2) --- erpnext/controllers/status_updater.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/erpnext/controllers/status_updater.py b/erpnext/controllers/status_updater.py index 5991bff4bea..62e90ae747d 100644 --- a/erpnext/controllers/status_updater.py +++ b/erpnext/controllers/status_updater.py @@ -333,16 +333,6 @@ class StatusUpdater(Document): ) def warn_about_bypassing_with_role(self, item, qty_or_amount, role): -<<<<<<< HEAD - action = _("Over Receipt/Delivery") if qty_or_amount == "qty" else _("Overbilling") - - msg = _("{} of {} {} ignored for item {} because you have {} role.").format( - action, - _(item["target_ref_field"].title()), - frappe.bold(item["reduce_by"]), - frappe.bold(item.get("item_code")), - role, -======= if qty_or_amount == "qty": msg = _("Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role.") else: @@ -357,7 +347,6 @@ class StatusUpdater(Document): ), indicator="orange", alert=True, ->>>>>>> 36997d9788 (fix: translation for warning on Overbilling/-receipt/-delivery) ) def update_qty(self, update_modified=True):