From eaf86a6461438720fe941100d6feccefbfa3bfed Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Thu, 14 Dec 2023 15:53:57 +0530 Subject: [PATCH] fix: timezone aware SLA banner (#38745) --- erpnext/public/js/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/public/js/utils.js b/erpnext/public/js/utils.js index e9d06dfbec..b0ea56833b 100755 --- a/erpnext/public/js/utils.js +++ b/erpnext/public/js/utils.js @@ -1077,7 +1077,7 @@ function set_time_to_resolve_and_response(frm, apply_sla_for_resolution) { } function get_time_left(timestamp, agreement_status) { - const diff = moment(timestamp).diff(moment()); + const diff = moment(timestamp).diff(frappe.datetime.system_datetime(true)); const diff_display = diff >= 44500 ? moment.duration(diff).humanize() : 'Failed'; let indicator = (diff_display == 'Failed' && agreement_status != 'Fulfilled') ? 'red' : 'green'; return {'diff_display': diff_display, 'indicator': indicator};