Files
sam-kd/estimate/EsDetail_screen.php
hskwon aca1767eb9 초기 커밋: 5130 레거시 시스템
- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경
- DB 연결 하드코딩 → .env 기반으로 변경
- MySQL strict mode DATE 오류 수정
2025-12-10 20:14:31 +09:00

26 lines
985 B
PHP

<?php
// 새로운 단가 매칭 시스템 도임 BDmodels 테이블 도입
require_once($_SERVER['DOCUMENT_ROOT'] . "/session.php");
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
$title_message = '(스크린) 견적 산출내역서 ';
$title_message_sub = '견 적 서 (스크린)' ;
$tablename = 'estimate';
$item ='(스크린) 견적 산출내역서 ';
$emailTitle ='견적서';
$subTitle = '자동방화셔터 스크린인정제품';
?>
<?php include $_SERVER['DOCUMENT_ROOT'] . '/' . $tablename . '/common/estimate_head.php'; ?> <!-- head 정보 불러오기 -->
<?php include $_SERVER['DOCUMENT_ROOT'] . '/' . $tablename . '/screen_view_original.php'; ?>
<div class="container mb-5 mt-2">
<div class="d-flex align-items-center justify-content-center mb-5">
</div>
</div>
<?php include $_SERVER['DOCUMENT_ROOT'] . '/estimate/common/lastJS.php'; ?> <!--마지막에 추가되는 견적관련 JS -->
</body>
</html>