초기 커밋: 5130 레거시 시스템
- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
This commit is contained in:
25
pb_juil/_row.php
Normal file
25
pb_juil/_row.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?
|
||||
$num = isset($row['num']) ? $row['num'] : '';
|
||||
$vendor_code = isset($row['vendor_code']) ? $row['vendor_code'] : '';
|
||||
$vendor_name = isset($row['vendor_name']) ? $row['vendor_name'] : '';
|
||||
$representative_name = isset($row['representative_name']) ? $row['representative_name'] : '';
|
||||
$address = isset($row['address']) ? $row['address'] : '';
|
||||
$business_type = isset($row['business_type']) ? $row['business_type'] : '';
|
||||
$item_type = isset($row['item_type']) ? $row['item_type'] : '';
|
||||
$phone = isset($row['phone']) ? $row['phone'] : '';
|
||||
$mobile = isset($row['mobile']) ? $row['mobile'] : '';
|
||||
$email = isset($row['email']) ? $row['email'] : '';
|
||||
$fax = isset($row['fax']) ? $row['fax'] : '';
|
||||
$manager_name = isset($row['manager_name']) ? $row['manager_name'] : '';
|
||||
$contact_info = isset($row['contact_info']) ? $row['contact_info'] : '';
|
||||
$note = isset($row['note']) ? $row['note'] : '';
|
||||
$is_deleted = isset($row['is_deleted']) ? $row['is_deleted'] : '';
|
||||
|
||||
// 5/8 추가내용
|
||||
$represent = isset($row['represent']) ? $row['represent'] : '';
|
||||
$searchtag = isset($row['searchtag']) ? $row['searchtag'] : '';
|
||||
$update_log = isset($row['update_log']) ? $row['update_log'] : '';
|
||||
$parentnum = isset($row['parentnum']) ? $row['parentnum'] : '';
|
||||
$secondordnum = isset($row['secondordnum']) ? $row['secondordnum'] : '';
|
||||
$registdate = isset($row['registdate']) ? $row['registdate'] : '';
|
||||
?>
|
||||
Reference in New Issue
Block a user