refactor: process order line notes through getStrNotes utility in POS kitchen printer service

This commit is contained in:
Suherdy Yacob 2026-06-20 13:05:52 +07:00
parent be9a402e4f
commit c5727fdeb3

View File

@ -44,7 +44,7 @@ patch(PosStore.prototype, {
noteParts.push(customerNote); noteParts.push(customerNote);
} }
if (c.note) { if (c.note) {
noteParts.push(c.note); noteParts.push(this.getStrNotes(c.note));
} }
return { return {
name: c.name, name: c.name,