From 45f6b3b174aed86bc5f62f29ef24cb0dcfde9cd5 Mon Sep 17 00:00:00 2001 From: king Date: Sat, 30 May 2026 04:21:48 +0900 Subject: [PATCH] =?UTF-8?q?ui(cupang):=20=EC=A0=9C=ED=92=88=EB=AA=85=20?= =?UTF-8?q?=EB=AA=A9=EB=A1=9D/=EB=93=9C=EB=A1=AD=EB=8B=A4=EC=9A=B4=20?= =?UTF-8?q?=EC=A0=95=EB=A0=AC=EC=9D=84=20=EC=A0=9C=ED=92=88=EC=BD=94?= =?UTF-8?q?=EB=93=9C=20=EC=98=A4=EB=A6=84=EC=B0=A8=EC=88=9C=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 폼 제품명 드롭다운 + 설정 등록목록 모두 list_products 사용 → ORDER BY product_code ASC Co-Authored-By: Claude Opus 4.8 --- app/modules/cupang/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/modules/cupang/db.py b/app/modules/cupang/db.py index a5aa4f6..bb98e18 100644 --- a/app/modules/cupang/db.py +++ b/app/modules/cupang/db.py @@ -211,7 +211,7 @@ class CupangDBStore: with self._pool.connection() as conn: rows = conn.execute( f"SELECT * FROM cupang_products {where} " - "ORDER BY active DESC, sort_order ASC, product_name ASC" + "ORDER BY product_code ASC" ).fetchall() return [self._product_serialize(r) for r in rows]