From 618885fb40fb8390e2456f9aba90323367989f77 Mon Sep 17 00:00:00 2001 From: setthawutttty Date: Fri, 8 Mar 2024 13:37:01 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88=E0=B8=A1?= =?UTF-8?q?=E0=B8=A7=E0=B8=87=20=E0=B9=80=E0=B8=A5=E0=B9=87=E0=B8=9A?= =?UTF-8?q?=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88=E0=B8=A1=20=E0=B8=AB?= =?UTF-8?q?=E0=B8=A5=E0=B8=B1=E0=B8=87=E0=B9=80=E0=B8=87=E0=B8=B4=E0=B8=99?= =?UTF-8?q?=E0=B9=80=E0=B8=94=E0=B8=B7=E0=B8=AD=E0=B8=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../13_salary/components/SalaryLists/TableTypeOther.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/modules/13_salary/components/SalaryLists/TableTypeOther.vue b/src/modules/13_salary/components/SalaryLists/TableTypeOther.vue index f131a39ca..7e0f3a6db 100644 --- a/src/modules/13_salary/components/SalaryLists/TableTypeOther.vue +++ b/src/modules/13_salary/components/SalaryLists/TableTypeOther.vue @@ -361,6 +361,11 @@ watch( ? props.row.amountUse.toLocaleString() : "" }} + {{ + props.row.amountSpecial > 0 + ? `(${props.row.amountSpecial.toLocaleString()})` + : "" + }}
{{