From f4133ad61d118402215d3acff8eaf871971aaca5 Mon Sep 17 00:00:00 2001 From: king Date: Sun, 14 Jun 2026 17:41:31 +0900 Subject: [PATCH] =?UTF-8?q?style(malaysia):=20=EC=9E=AC=EA=B3=A0=ED=98=84?= =?UTF-8?q?=ED=99=A9=C2=B7=EC=B5=9C=EC=A2=85=EA=B3=84=EC=82=B0=20=EC=88=AB?= =?UTF-8?q?=EC=9E=90=20=EC=B2=9C=EB=8B=A8=EC=9C=84=20=EC=BD=A4=EB=A7=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 재고현황: 전산재고/조사수량/차이(부호+콤마)/콤보 Qty - 재고조사 상세 최종계산: direct/from_set/total Co-Authored-By: Claude Opus 4.8 --- app/modules/malaysia/templates/malaysia/index.html | 8 ++++---- .../malaysia/templates/malaysia/stocktake_detail.html | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/app/modules/malaysia/templates/malaysia/index.html b/app/modules/malaysia/templates/malaysia/index.html index 78432a2..557ad52 100644 --- a/app/modules/malaysia/templates/malaysia/index.html +++ b/app/modules/malaysia/templates/malaysia/index.html @@ -39,11 +39,11 @@ {{ r.item_code }} {{ r.item_name }} - {{ r.current_qty }} + {{ "{:,}".format(r.current_qty) }} {{ r.last_stocktake_date or '—' }} - {{ r.last_qty if r.last_qty is not none else '—' }} + {{ "{:,}".format(r.last_qty) if r.last_qty is not none else '—' }} - {% if r.diff is not none %}{{ '%+d'|format(r.diff) }}{% else %}—{% endif %} + {% if r.diff is not none %}{{ "{:+,}".format(r.diff) }}{% else %}—{% endif %} {% endfor %} @@ -69,7 +69,7 @@ {{ s.set_code }} {{ s.set_name }} - {{ s.qty }} + {{ "{:,}".format(s.qty) }} {% endfor %} {% if not set_rows %} diff --git a/app/modules/malaysia/templates/malaysia/stocktake_detail.html b/app/modules/malaysia/templates/malaysia/stocktake_detail.html index b6dc36e..bffb6c8 100644 --- a/app/modules/malaysia/templates/malaysia/stocktake_detail.html +++ b/app/modules/malaysia/templates/malaysia/stocktake_detail.html @@ -180,9 +180,9 @@ {{ r.item_code }} {{ r.item_name }} - {{ r.direct_qty }} - {{ r.from_set_qty }} - {{ r.total_qty }} + {{ "{:,}".format(r.direct_qty) }} + {{ "{:,}".format(r.from_set_qty) }} + {{ "{:,}".format(r.total_qty) }} {% endfor %} {% if not result_rows %}