forked from HANYANG/HANYANG_MES
86 lines
4.3 KiB
PHP
86 lines
4.3 KiB
PHP
<?php
|
|
include_once "{$_SERVER['DOCUMENT_ROOT']}/common.inc.php";
|
|
?>
|
|
|
|
<!-- 거래처 선택 팝업 -->
|
|
<div id="pop_draw_search">
|
|
|
|
<style>
|
|
#awn-popup-wrapper .awn-popup-body { max-width: initial; }
|
|
#awn-popup-wrapper .awn-popup-confirm.awn-plan-route { max-width: 880px; min-width: 780px; align-items: center; display: flex; flex-direction: column; }
|
|
#awn-popup-wrapper .awn-plan-route .awn-popup-title {font-size: 1.2em; text-align: left; width:100%; margin-top:0; margin-bottom:5px;}
|
|
#awn-popup-wrapper .awn-plan-route .awn-popup-search {width: 100%; margin-bottom: 5px;}
|
|
#awn-popup-wrapper .awn-plan-route .awn-popup-info {width: 100%; overflow: auto;}
|
|
#awn-popup-wrapper .awn-plan-route .awn-popup-info .table { border-bottom: 1px solid var(--color_border_table_bottom); }
|
|
#awn-popup-wrapper .awn-plan-route .awn-popup-info .table th {text-align: center; border-top: 1px solid var(--color_border_table_top); background-color: var(--color_bg_table_title); border-bottom: 1px solid var(--color_border_table_hbottom); border-right: 1px solid var(--color_border_table_hright); color: var(--color_text_dsub); font-weight: normal;}
|
|
#awn-popup-wrapper .awn-plan-route .awn-popup-info .table td { white-space: nowrap; text-align: center; border-bottom: 1px solid var(--color_border_table_bline); border-right: 1px solid var(--color_border_table_rline);}
|
|
#awn-popup-wrapper .awn-plan-route .awn-popup-content {width: 100%; height: 300px; overflow: auto;}
|
|
#awn-popup-wrapper .awn-plan-route .md-block { display: flex; justify-content: space-between; }
|
|
#awn-popup-wrapper .awn-plan-route .md-line { display: flex; align-items: center; }
|
|
#awn-popup-wrapper .awn-plan-route .s_exp { color: darkcyan; }
|
|
#awn-popup-wrapper .awn-plan-route .s_fld { text-align: right; }
|
|
#awn-popup-wrapper #drawfilepond {position: absolute; top: -10000px; left: -10000px;}
|
|
</style>
|
|
<div class="awn-popup-confirm awn-plan-route">
|
|
<div class="awn-popup-title"><i class="bi bi-card-heading"></i> 도면 정보</div>
|
|
<div class="awn-popup-info">
|
|
<table class="table">
|
|
<colgroup>
|
|
<col width="*">
|
|
<col width="12%">
|
|
<col width="16%">
|
|
<col width="5%">
|
|
<col width="5%">
|
|
<col width="5%">
|
|
<col width="5%">
|
|
<col width="5%">
|
|
<col width="15%">
|
|
<col width="7%">
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th align="center" class="align-middle" rowspan="2">수주번호</th>
|
|
<th align="center" class="align-middle" rowspan="2">형상</th>
|
|
<th align="center" class="align-middle" rowspan="2">수주품명</th>
|
|
<th align="center" class="align-middle" colspan="5">규격</th>
|
|
<th align="center" class="align-middle" rowspan="2">납기요청일</th>
|
|
<th align="center" class="align-middle" rowspan="2">수량</th>
|
|
</tr>
|
|
<tr>
|
|
<th align="center">OD</th>
|
|
<th align="center">ID</th>
|
|
<th align="center">TH</th>
|
|
<th align="center">W</th>
|
|
<th align="center">L</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td id="pop_MNG_NO"></td>
|
|
<td id="pop_SHAPE_TYPE"></td>
|
|
<td id="pop_ITEM_CD"></td>
|
|
<td id="pop_OUT_DIA"></td>
|
|
<td id="pop_IN_DIA"></td>
|
|
<td id="pop_THICK"></td>
|
|
<td id="pop_WIDTH"></td>
|
|
<td id="pop_LENGTH"></td>
|
|
<td id="pop_REQ_DLVY_DT"></td>
|
|
<td id="pop_SO_QTY"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="awn-popup-search mb-block btn-ksmain-inject-block">
|
|
<div class="s_exp"></div>
|
|
<div class="s_fld">
|
|
<button id="btnAddDraw" class="btn btn-nobd btn-sm"><i class="fa-solid fa-plus"></i></button>
|
|
<button id="btnDelDraw" class="btn btn-nobd2 btn-sm"><i class="fa-solid fa-minus"></i></button>
|
|
</div>
|
|
</div>
|
|
<div class="awn-popup-content"><div id="pop_draw"><!-- Grid Api 또는 테이블 --></div></div>
|
|
</div>
|
|
<div class="mt-3 text-center"><button class="btn btn_prim">저 장</button> <button type="button" class="btn btn_main btn_close">닫 기</button></div>
|
|
<!--<code>※ 실제 저장/삭제는 수주상세 항목의 [저장] 버튼을 클릭해야 합니다. </code>-->
|
|
<input type="hidden" name="BP_CD_OLD">
|
|
<div id="drawfilepond"></div>
|
|
</div>
|