52 lines
2.7 KiB
PHP
52 lines
2.7 KiB
PHP
|
|
<?php
|
||
|
|
$num = $_REQUEST["num"] ?? '';
|
||
|
|
$e_num = $_REQUEST["e_num"] ?? 0; // int(11)
|
||
|
|
$is_deleted = $_REQUEST["is_deleted"] ?? NULL; // tinyint(1)
|
||
|
|
$e_viewexcept_id = $_REQUEST["e_viewexcept_id"] ?? ''; // text
|
||
|
|
$eworks_item = $_REQUEST["eworks_item"] ?? ''; // text
|
||
|
|
$e_title = $_REQUEST["e_title"] ?? ''; // text
|
||
|
|
$contents = $_REQUEST["contents"] ?? ''; // text
|
||
|
|
$registdate = $_REQUEST["registdate"] ?? ''; // datetime
|
||
|
|
$status = $_REQUEST["status"] ?? ''; // text
|
||
|
|
$e_line = $_REQUEST["e_line"] ?? ''; // text
|
||
|
|
$e_line_id = $_REQUEST["e_line_id"] ?? ''; // text
|
||
|
|
$e_confirm = $_REQUEST["e_confirm"] ?? ''; // text
|
||
|
|
$e_confirm_id = $_REQUEST["e_confirm_id"] ?? ''; // text
|
||
|
|
$r_line = $_REQUEST["r_line"] ?? ''; // text
|
||
|
|
$r_line_id = $_REQUEST["r_line_id"] ?? ''; // text
|
||
|
|
$recordtime = $_REQUEST["recordtime"] ?? ''; // datetime
|
||
|
|
$author = $_REQUEST["author"] ?? $user_name; // text
|
||
|
|
$author_id = $_REQUEST["author_id"] ?? $user_id; // text
|
||
|
|
$done = $_REQUEST["done"] ?? ''; // text
|
||
|
|
$al_askdatefrom = $_REQUEST["al_askdatefrom"] ?? ''; // date
|
||
|
|
$al_askdateto = $_REQUEST["al_askdateto"] ?? ''; // date
|
||
|
|
$al_item = $_REQUEST["al_item"] ?? ''; // text
|
||
|
|
$al_part = $_REQUEST["al_part"] ?? ''; // text
|
||
|
|
$al_usedday = $_REQUEST["al_usedday"] ?? ''; // text
|
||
|
|
$al_content = $_REQUEST["al_content"] ?? ''; // text
|
||
|
|
$which = $_REQUEST["which"] ?? ''; // text
|
||
|
|
$outdate = $_REQUEST["outdate"] ?? ''; // date
|
||
|
|
$requestdate = $_REQUEST["requestdate"] ?? ''; // date
|
||
|
|
$indate = $_REQUEST["indate"] ?? ''; // date
|
||
|
|
$outworkplace = $_REQUEST["outworkplace"] ?? ''; // text
|
||
|
|
$steel_item = $_REQUEST["steel_item"] ?? ''; // text
|
||
|
|
$spec = $_REQUEST["spec"] ?? ''; // text
|
||
|
|
$steelnum = $_REQUEST["steelnum"] ?? ''; // text
|
||
|
|
$company = $_REQUEST["company"] ?? ''; // text
|
||
|
|
$request_comment = $_REQUEST["request_comment"] ?? ''; // text
|
||
|
|
$model = $_REQUEST["model"] ?? ''; // text
|
||
|
|
$first_writer = $_REQUEST["first_writer"] ?? ''; // text
|
||
|
|
$update_log = $_REQUEST["update_log"] ?? ''; // text
|
||
|
|
$supplier = $_REQUEST["supplier"] ?? ''; // text
|
||
|
|
$suppliercost = $_REQUEST["suppliercost"] ?? ''; // text
|
||
|
|
$inventory = $_REQUEST["inventory"] ?? ''; // text
|
||
|
|
$payment = $_REQUEST["payment"] ?? ''; // text
|
||
|
|
$store = $_REQUEST["store"] ?? ''; // 구매처
|
||
|
|
$al_company = $_REQUEST["al_company"] ?? ''; // 경동,주일 부서
|
||
|
|
$paymentdate = $_REQUEST["paymentdate"] ?? ''; // 결재일자
|
||
|
|
$requestpaymentdate = $_REQUEST["requestpaymentdate"] ?? ''; // 지출요청일자
|
||
|
|
$expense_data = $_REQUEST["expense_data"] ?? ''; // 지출결의서 내역(JSON)
|
||
|
|
$companyCard = $_REQUEST["companyCard"] ?? ''; // 회사법인카드번호
|
||
|
|
$secondordpaydate = $_REQUEST["secondordpaydate"] ?? ''; // 구매처 결재일자
|
||
|
|
$secondordnum = $_REQUEST["secondordnum"] ?? ''; // 구매처 코드
|
||
|
|
?>
|