diff --git a/agents/stock/workspace/scripts/behive_web.py b/agents/stock/workspace/scripts/behive_web.py index e7bce2d..86e886b 100644 --- a/agents/stock/workspace/scripts/behive_web.py +++ b/agents/stock/workspace/scripts/behive_web.py @@ -6290,6 +6290,29 @@ def _render_pin_modal() -> str: ) +def _render_sell_choice_modal() -> str: + """매도 시 같은 소유자 그룹의 다른 계좌에도 같은 종목 보유 중일 때 띄우는 선택 팝업. + + [두 계좌 모두 매도] / [선택 계좌만 매도] / [취소] 3버튼. order-modal 위에 겹침(modal-top). + """ + return ( + '' + ) + + def _render_interests_modal() -> str: """shell HTML 직속에 두는 종목 추가 모달. panels API의 swap 영역(section.tab-content) 밖이라 자동 갱신 중에도 DOM·입력값이 보존된다.""" @@ -7676,6 +7699,7 @@ def render_html() -> str: info_desc_modal_html = _render_info_desc_modal() order_modal_html = _render_order_modal() pin_modal_html = _render_pin_modal() + sell_choice_modal_html = _render_sell_choice_modal() open_orders_modal_html = _render_open_orders_modal() stock_name_modal_html = _render_stock_name_modal() @@ -8485,6 +8509,7 @@ def render_html() -> str: order_modal_script = r'''