forked from HANYANG/HANYANG_MES
67 lines
2.4 KiB
PHP
67 lines
2.4 KiB
PHP
<?php
|
|
$cate_id = "main"; //현재 메뉴 ID 필수!!!
|
|
include_once "{$_SERVER['DOCUMENT_ROOT']}/common.inc.php";
|
|
include_once _SVC_INC_PATH_ ."/auth_check.php";
|
|
|
|
include _SVC_INC_PATH_ ."/header.php";
|
|
|
|
include _SVC_INC_PATH_ ."/frame_header.php";
|
|
?>
|
|
<div id="mtop_title_block">
|
|
<div id="mtop_title">
|
|
<div class="title">수주등록</div>
|
|
<div class="top_breadcrumb">
|
|
<a href="/"><i class="fa-solid fa-house-chimney s_icon"></i> Home</a>
|
|
<i class="fa-solid fa-angle-right s_icon"></i> <a href="/t/?cate_id=mnu_cont">컨테이너 관리</a>
|
|
<i class="fa-solid fa-angle-right s_icon"></i> <a href="/container/estimate.php">견적 작성/승인</a>
|
|
</div>
|
|
</div>
|
|
<div id="mtop_btn_group">
|
|
<button type="button" class="btn btn_main">조회</button>
|
|
</div>
|
|
</div>
|
|
<div id="mtop_search" class="form-inline">
|
|
<div class="search_item">
|
|
<span class="label_title">거래처</span>
|
|
<select class="form-select form-control-sm">
|
|
<option>(주)쿨스</option>
|
|
<option>쿨스NC</option>
|
|
<option>쿨스 종합건설</option>
|
|
</select>
|
|
</div>
|
|
<div class="search_item">
|
|
<span class="label_title">수주번호</span>
|
|
<input type="text" name="" class="form-control form-control-sm w100">
|
|
</div>
|
|
<div class="search_item">
|
|
<span class="label_title">수주일</span>
|
|
<input type="date" max="9999-12-31" name="" class="form-control form-control-sm w100">
|
|
~
|
|
<input type="date" max="9999-12-31" name="" class="form-control form-control-sm w100">
|
|
</div>
|
|
<div class="search_item">
|
|
<span class="label_title">내수/수출</span>
|
|
<input type="radio" name="">내수,
|
|
<input type="radio" name="">수출
|
|
</div>
|
|
</div>
|
|
<div id="main_content">
|
|
<div class="ctop_title">
|
|
<div class="content_title">수주내역</div>
|
|
<div class="content_btn_group">
|
|
<button id="btnAddRow" class="btn btn-nobd"><i class="fa-solid fa-plus"></i> 추가</button>
|
|
</div>
|
|
</div>
|
|
<div class="tbl_block cont_hfix">
|
|
<div id="tblList"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
include _SVC_INC_PATH_ ."/frame_footer.php";
|
|
|
|
include _SVC_INC_PATH_ ."/footer.php";
|
|
?>
|
|
|
|
<script src="./frame.js"></script>
|