40 lines
1.4 KiB
PHP
40 lines
1.4 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
$num=$_REQUEST["num"] ?? '';
|
||
|
|
$outdate=$_REQUEST["outdate"] ?? '';
|
||
|
|
$registdate = $_REQUEST["registdate"] ?? '';
|
||
|
|
$requestdate=$_REQUEST["requestdate"] ?? '';
|
||
|
|
|
||
|
|
$indate=$_REQUEST["indate"] ?? '';
|
||
|
|
$outworkplace=$_REQUEST["outworkplace"] ?? '';
|
||
|
|
|
||
|
|
$steel_item=$_REQUEST["steel_item"] ?? '';
|
||
|
|
$spec=$_REQUEST["spec"] ?? '';
|
||
|
|
$steelnum=$_REQUEST["steelnum"] ?? '';
|
||
|
|
$company=$_REQUEST["company"] ?? '';
|
||
|
|
$supplier=$_REQUEST["supplier"] ?? '';
|
||
|
|
$payment=$_REQUEST["payment"] ?? '';
|
||
|
|
|
||
|
|
$request_comment=$_REQUEST["request_comment"] ?? '';
|
||
|
|
$which=$_REQUEST["which"] ?? '';
|
||
|
|
$model=$_REQUEST["model"] ?? '';
|
||
|
|
$first_writer=$_REQUEST["first_writer"] ?? '';
|
||
|
|
$update_log=$_REQUEST["update_log"] ?? '';
|
||
|
|
$suppliercost=$_REQUEST["suppliercost"] ?? '';
|
||
|
|
$inventory=$_REQUEST["inventory"] ?? '';
|
||
|
|
$status=$_REQUEST["status"] ?? '';
|
||
|
|
|
||
|
|
$author_id = $_REQUEST["author_id"] ?? ''; // Corrected to match the key in $_REQUEST array
|
||
|
|
$author = $_REQUEST["author"] ?? '';
|
||
|
|
$al_part = $_REQUEST["al_part"] ?? '';
|
||
|
|
$al_item = $_REQUEST["al_item"] ?? '';
|
||
|
|
$al_askdatefrom = $_REQUEST["al_askdatefrom"] ?? '';
|
||
|
|
$al_askdateto = $_REQUEST["al_askdateto"] ?? '';
|
||
|
|
$al_usedday = $_REQUEST["al_usedday"] ?? '';
|
||
|
|
$al_content = $_REQUEST["al_content"] ?? '';
|
||
|
|
$status = $_REQUEST["status"] ?? '';
|
||
|
|
$e_confirm = $_REQUEST["e_confirm"] ?? '';
|
||
|
|
$e_confirm_id = $_REQUEST["e_confirm_id"] ?? '';
|
||
|
|
$al_company = $_REQUEST["al_company"] ?? '';
|
||
|
|
$done = $_REQUEST["done"] ?? ''; // 결재완료 여부
|
||
|
|
?>
|