From c5727fdeb324c45a3df3e308735e64071401ade0 Mon Sep 17 00:00:00 2001 From: Suherdy Yacob Date: Sat, 20 Jun 2026 13:05:52 +0700 Subject: [PATCH] refactor: process order line notes through getStrNotes utility in POS kitchen printer service --- static/src/app/services/pos_store.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/src/app/services/pos_store.js b/static/src/app/services/pos_store.js index c0af2b6..224e296 100644 --- a/static/src/app/services/pos_store.js +++ b/static/src/app/services/pos_store.js @@ -44,7 +44,7 @@ patch(PosStore.prototype, { noteParts.push(customerNote); } if (c.note) { - noteParts.push(c.note); + noteParts.push(this.getStrNotes(c.note)); } return { name: c.name,