- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
19 lines
1.1 KiB
PHP
19 lines
1.1 KiB
PHP
<?php
|
|
$num = isset($row['num']) ? $row['num'] : '';
|
|
$is_deleted = isset($row['is_deleted']) ? $row['is_deleted'] : '';
|
|
$lot_no = isset($row['lot_no']) ? $row['lot_no'] : '';
|
|
$inspection_date = isset($row['inspection_date']) ? $row['inspection_date'] : '';
|
|
$supplier = isset($row['supplier']) ? $row['supplier'] : '';
|
|
$item_name = isset($row['item_name']) ? $row['item_name'] : '';
|
|
$specification = isset($row['specification']) ? $row['specification'] : '';
|
|
$unit = isset($row['unit']) ? $row['unit'] : '';
|
|
$received_qty = isset($row['received_qty']) ? $row['received_qty'] : '';
|
|
$material_no = isset($row['material_no']) ? $row['material_no'] : '';
|
|
$manufacturer = isset($row['manufacturer']) ? $row['manufacturer'] : '';
|
|
$remarks = isset($row['remarks']) ? $row['remarks'] : '';
|
|
$purchase_price_excl_vat = isset($row['purchase_price_excl_vat']) ? $row['purchase_price_excl_vat'] : '';
|
|
$weight_kg = isset($row['weight_kg']) ? $row['weight_kg'] : '';
|
|
$searchtag = isset($row['searchtag']) ? $row['searchtag'] : '';
|
|
$update_log = isset($row['update_log']) ? $row['update_log'] : '';
|
|
?>
|