초기 커밋: 5130 레거시 시스템
- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
This commit is contained in:
21
instock/_row.php
Normal file
21
instock/_row.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
$num = isset($row['num']) ? $row['num'] : '';
|
||||
$is_deleted = isset($row['is_deleted']) ? $row['is_deleted'] : null;
|
||||
$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'] : '';
|
||||
$lotDone = isset($row['lotDone']) ? $row['lotDone'] : null;
|
||||
$iList = isset($row['iList']) ? $row['iList'] : '{}'; // 수입검사서 Json
|
||||
$prodcode = isset($row['prodcode']) ? $row['prodcode'] : ''; // 품목코드 모터,샤프트 등 입고물품에 대한 검색기능 코드
|
||||
?>
|
||||
Reference in New Issue
Block a user