HANYANG_REACT/www/ksvc/prod/reg_plan/reg_plan.php

127 lines
4.0 KiB
PHP

<?php
/*
* @Overview 생산계획등록
* @History 2024-03-07 / 최승연 / 최초작성
*/
$cate_id = "REG_PLAN";
include_once "{$_SERVER['DOCUMENT_ROOT']}/common.inc.php";
include_once _SVC_INC_PATH_ . "/header.php";
?>
<style>
.ui-autocomplete {
background-color: white; /* 배경색을 하얀색으로 설정 */
border: 1px solid #ccc; /* 테두리를 설정하여 구분 */
z-index: 1000; /* 다른 요소 위에 표시되도록 z-index 설정 */
min-width: 50px; /* 최소 너비 설정 */
max-width: 100px; /* 최대 너비 설정 */
width: auto; /* 너비를 자동으로 설정 */
}
</style>
<div class="container">
<!-- 사이드바 불러오기 -->
<?php include_once _SVC_INC_PATH_ . "/sidebar.php"; ?>
<!-- 사이드바 불러오기 종료 // -->
<!-- 검색 조회 및 저장 -->
<div class="table-header">
<div class="inner-container">
<!-- 검색 조건 (인풋) -->
<div class="search-container">
<!-- 인풋 시작 -->
<div class="input-box">
<select name="FACLT_GRP_P" id="team_pop">
<?= getSelectOptions($GLOBALS['_FACLT_GRP'], $emptv = "- " . cUtil\Mlang::getText("설비그룹") . " -") ?>
</select>
</div>
<!-- 인풋 종료 // -->
<!-- 인풋 시작 -->
<div class="input-container flexrow">
<label for="product_pop" style="display:flex; align-items:center; text-wrap: nowrap;">기간:&nbsp</label>
<div>
<div class="input-box">
<input type="date" value="<?php echo $today; ?>" max="9999-12-31" id="plan_date">
</div>
</div>
</div>
<!-- 인풋 종료 // -->
</div>
<!-- 검색 조건 종료 // -->
<!-- 조회 및 저장 버튼 -->
<div class="button-container">
<div class="button-box">
<button class="point-btn" id="excel_data">엑셀 다운로드</button>
<button class="point-btn" id="filter_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 flexcol gap20"> <!-- 테이블 컨텐츠 나오는 부분 vh로 높이 가로 맞춰놓기 -->
<!-- 테이블 헤더 (제목, 추가, 삭제, 저장) -->
<div class="table-box main-table flex-1 " id="main_table">
<div class="table-title">
<p class="title">주간 생산 계획</p>
<!-- 버튼 -->
<div class="button-box">
<!-- <button class="add-btn reverse-btn">-->
<!-- --><?php //include _SVC_INC_PATH_ . '/img/add.php' ?>
<!-- 추가-->
<!-- </button>-->
<!-- <button class="remove-btn reverse-btn">-->
<!-- --><?php //include _SVC_INC_PATH_ . '/img/delete.php' ?>
<!-- 삭제-->
<!-- </button>-->
</div>
<!-- 버튼 종료 // -->
</div>
<!-- 테이블 헤더 종료 // -->
<!-- 테이블 -->
<div class="tb-height-full">
<div class="hy-table group-table groupby .tabulator rowspan-3"></div>
</div>
</div>
<!-- 테이블 종료 // -->
</div>
</div>
<!-- 테이블 컨테이너 종료 // -->
</div>
<!-- 컨텐츠 컨테이너 종료 // -->
</div>
<!-- 메인 섹션 종료 // -->
</div>
<?php include_once _SVC_INC_PATH_ . "/footer_common.php"; ?>
<script src="./reg_plan.js"></script>
<?php
include_once _SVC_INC_PATH_ . "/footer.php";
include_once _SVC_INC_PATH_ . "/menualBtn.php";