초기 커밋: 5130 레거시 시스템
- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
This commit is contained in:
19
account_plan/_row.php
Normal file
19
account_plan/_row.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
$num = isset($row['num']) ? $row['num'] : '';
|
||||
$is_deleted = isset($row['is_deleted']) ? $row['is_deleted'] : 0;
|
||||
$searchtag = isset($row['searchtag']) ? $row['searchtag'] : '';
|
||||
$registDate = isset($row['registDate']) ? $row['registDate'] : '';
|
||||
$inoutsep = isset($row['inoutsep']) ? $row['inoutsep'] : '';
|
||||
$content = isset($row['content']) ? $row['content'] : '';
|
||||
$amount = isset($row['amount']) ? $row['amount'] : '';
|
||||
$memo = isset($row['memo']) ? $row['memo'] : '';
|
||||
$first_writer = isset($row['first_writer']) ? $row['first_writer'] : '';
|
||||
$update_log = isset($row['update_log']) ? $row['update_log'] : '';
|
||||
$content_detail = isset($row['content_detail']) ? $row['content_detail'] : '';
|
||||
$bankbook = isset($row['bankbook']) ? $row['bankbook'] : '';
|
||||
$secondordnum = isset($row['secondordnum']) ? $row['secondordnum'] : '';
|
||||
$ForeDate = isset($row['ForeDate']) ? $row['ForeDate'] : '';
|
||||
$approvalRequest = isset($row['approvalRequest']) ? $row['approvalRequest'] : '';
|
||||
$eworksNum = isset($row['eworksNum']) ? $row['eworksNum'] : '';
|
||||
$workDone = isset($row['workDone']) ? $row['workDone'] : '';
|
||||
?>
|
||||
Reference in New Issue
Block a user