From 1e275d2ac753508d74a6bcf6099e72389e90fa96 Mon Sep 17 00:00:00 2001 From: KWON Date: Mon, 28 Jul 2025 16:16:45 +0900 Subject: [PATCH] =?UTF-8?q?gui=20=EC=8B=A4=ED=96=89=EB=B6=80=EB=B6=84=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/pos_update_gui.py | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/lib/pos_update_gui.py b/lib/pos_update_gui.py index b60dae6..d7e1e5b 100644 --- a/lib/pos_update_gui.py +++ b/lib/pos_update_gui.py @@ -154,18 +154,19 @@ def main(): batch_done = batch_process_files(table, engine) if not batch_done: - # GUI 시작 - root = tk.Tk() - root.title("POS 데이터 업데이트") - root.geometry("300x150") - - lbl = tk.Label(root, text="POS 데이터 업데이트") - lbl.pack(pady=20) - - btn = tk.Button(root, text="데이터 선택 및 업데이트", command=run_pos_update) - btn.pack() - - root.mainloop() + print("[ERROR] batch_process_files 실행 실패") +# # GUI 시작 +# root = tk.Tk() +# root.title("POS 데이터 업데이트") +# root.geometry("300x150") +# +# lbl = tk.Label(root, text="POS 데이터 업데이트") +# lbl.pack(pady=20) +# +# btn = tk.Button(root, text="데이터 선택 및 업데이트", command=run_pos_update) +# btn.pack() +# +# root.mainloop() if __name__ == "__main__": main()