1
0
Fork 0
HANYANG_MES/home_dir/www/ksvc/fieldworker/main/main.php

138 lines
4.2 KiB
PHP

<?php
/*
* @Overview 불량 실적 관리
* @History 2024-03-05 / 최승연 / 최초작성
*/
include_once "{$_SERVER['DOCUMENT_ROOT']}/common.inc.php";
include_once _SVC_INC_PATH_ . "/header.php";
?>
<div class="container">
<!-- 사이드바 불러오기 -->
<?php include_once _SVC_INC_PATH_ . "/sidebar.php"; ?>
<!-- 사이드바 불러오기 종료 // -->
<!-- 메인 섹션 -->
<div class="main-part">
<!-- 검색 조회 및 저장 -->
<div class="table-header">
<div class="inner-container">
<!-- 검색 조건 (인풋) -->
<div class="search-container">
<!-- 인풋 시작 -->
<div class="input-container flexcol gap06">
<label for="order_check_date_st">기간</label>
<div>
<div class="input-box">
<input type="date" value="<?php echo $today; ?>" max="9999-12-31" id="order_check_date_st">
</div>
<div class="input-box">
<input type="date" value="<?php echo $later; ?>" max="9999-12-31" id="order_check_date_ed">
</div>
</div>
</div>
<!-- 인풋 종료 // -->
<!-- 인풋 시작 -->
<div class="input-container flexcol gap06">
<label for="pr_order_pop">생산오더</label>
<div>
<div class="input-box">
<input type="text" id="pr_order_pop">
<?php include _SVC_INC_PATH_ . '/img/popupIcon.php' ?>
</div>
</div>
</div>
<!-- 인풋 종료 // -->
<!-- 인풋 시작 -->
<div class="input-container flexcol gap06">
<label for="order_item_pop">품목</label>
<div>
<div class="input-box">
<input type="text" id="order_item_pop">
<?php include _SVC_INC_PATH_ . '/img/popupIcon.php' ?>
</div>
<div class="input-box">
<label for="sub_order_item_pop"></label>
<input type="text" id="sub_order_item_pop">
<?php include _SVC_INC_PATH_ . '/img/popupIcon.php' ?>
</div>
</div>
</div>
<!-- 인풋 종료 // -->
</div>
<!-- 검색 조건 종료 // -->
<!-- 조회 및 저장 버튼 -->
<div class="button-container">
<div class="button-box">
<button class="point-btn" id="filter_btn">조회</button>
<button class="point-btn" id="put_btn">저장</button>
<button class="point-btn" id="put_btn">다가 올 공정 보기</button>
</div>
</div>
<!-- 조회 및 저장 버튼 종료 // -->
</div>
<!-- 검색 조회 및 저장 종료 // -->
</div>
<!-- 테이블 헤더 종료 // -->
<!-- 컨텐츠 컨테이너 -->
<div class="contents-container">
<!-- 테이블 컨테이너 -->
<div class="table-container">
<div class="inner-container flexrow gap20"> <!-- 테이블 컨텐츠 나오는 부분 vh로 높이 가로 맞춰놓기 -->
<!-- 테이블 헤더 (제목, 추가, 삭제, 저장) -->
<div class="table-box main-table flex-1 " id="main_table">
<div class="table-title">
<p class="title"></p>
</div>
<!-- 테이블 헤더 종료 // -->
<!-- 테이블 -->
<div class="hy-table"></div>
</div>
<!-- 테이블 종료 // -->
<!-- 테이블 헤더 (제목, 추가, 삭제, 저장) -->
<div class="table-box main-table flex-4 " id="sub_table">
<div class="table-title">
<p class="title"></p>
</div>
<!-- 테이블 헤더 종료 // -->
<!-- 테이블 -->
<div class="hy-table"></div>
</div>
<!-- 테이블 종료 // -->
</div>
</div>
<!-- 테이블 컨테이너 종료 // -->
</div>
<!-- 컨텐츠 컨테이너 종료 // -->
</div>
<!-- 메인 섹션 종료 // -->
</div>
<?php include_once _SVC_INC_PATH_ . "/footer_common.php"; ?>
<script src="./main.js"></script>
<?php
include_once _SVC_INC_PATH_ . "/footer.php";