|
@@ -119,40 +119,40 @@ class Approveinfo extends Base
|
|
|
$way = input('way') ?: '';
|
|
|
$id = input('id') ?: 0;
|
|
|
$module = input('module') ?: 0;
|
|
|
- $apply_user_id = input('apply_user_id')?: '';
|
|
|
+ $apply_user_id = input('apply_user_id') ?: '';
|
|
|
$reason = input('reason') ?: '';
|
|
|
$type = input('type') ?: 0;
|
|
|
$desc = input('desc') ?: '';
|
|
|
$start_time = input('start_time');
|
|
|
$end_time = input('end_time');
|
|
|
- $document = input('document')?: '';
|
|
|
- $images = input('images')?: '';
|
|
|
- $remark = input('remark')?: '';
|
|
|
- $total_amount = input('total_amount')?: 0;
|
|
|
- $pay_type = input('pay_type')?: 0;
|
|
|
- $word_size = input('word_size');
|
|
|
- $apply_id = input('apply_id')?: 0;
|
|
|
- $number = input('number')?: 0;
|
|
|
- $is_who = input('is_who')?: 0;
|
|
|
- $start_am = input('start_am');
|
|
|
- $end_am = input('end_am');
|
|
|
- $time = input('time');
|
|
|
- $reach_address = input('reach_address');
|
|
|
- $end_address = input('end_address');
|
|
|
- $scope = input('scope');
|
|
|
- $legal_opinion = input('legal_opinion');
|
|
|
- $founder = input('founder');
|
|
|
- $serial_number = input('serial_number');
|
|
|
+ $document = input('document') ?: '';
|
|
|
+ $images = input('images') ?: '';
|
|
|
+ $remark = input('remark') ?: '';
|
|
|
+ $total_amount = input('total_amount') ?: 0;
|
|
|
+ $pay_type = input('pay_type') ?: 0;
|
|
|
+ $word_size = input('word_size') ?: 0;
|
|
|
+ $apply_id = input('apply_id') ?: 0;
|
|
|
+ $number = input('number') ?: 0;
|
|
|
+ $is_who = input('is_who') ?: 0;
|
|
|
+ $start_am = input('start_am') ?: '';
|
|
|
+ $end_am = input('end_am') ?: '';
|
|
|
+ $time = input('time') ?: 0;
|
|
|
+ $reach_address = input('reach_address') ?: '';
|
|
|
+ $end_address = input('end_address') ?: '';
|
|
|
+ $scope = input('scope') ?: '';
|
|
|
+ $legal_opinion = input('legal_opinion') ?: '';
|
|
|
+ $founder = input('founder') ?: '';
|
|
|
+ $serial_number = input('serial_number') ?: '';
|
|
|
$apply_date = input('apply_date');
|
|
|
- $degree = input('degree');
|
|
|
- $department = input('department');
|
|
|
- $department_sign = input('department_sign');
|
|
|
- $approve_user = input('approve_user');
|
|
|
- $copy_user = input('copy_user');
|
|
|
- $apply_goods = input('apply_goods');
|
|
|
- $stock_goods = input('stock_goods');
|
|
|
- $use_goods = input('use_goods');
|
|
|
- $peer_user = input('peer_user');
|
|
|
+ $degree = input('degree') ?: 0;
|
|
|
+ $department = input('department') ?: '';
|
|
|
+ $department_sign = input('department_sign') ?: '';
|
|
|
+ $approve_user = input('approve_user') ?: '';
|
|
|
+ $copy_user = input('copy_user') ?: '';
|
|
|
+ $apply_goods = input('apply_goods') ?: [];
|
|
|
+ $stock_goods = input('stock_goods') ?: [];
|
|
|
+ $use_goods = input('use_goods') ?: [];
|
|
|
+ $peer_user = input('peer_user') ?: [];
|
|
|
$params = compact("way", "id", "module", "apply_user_id", "reason", "type", "desc", "start_time", "end_time", "document", "images", "remark", "total_amount", "pay_type", "word_size", "apply_id", "number", "is_who", "start_am", "end_am", "time", "reach_address", "end_address", "scope", "legal_opinion", "founder", "serial_number", "apply_date", "degree", "department", "department_sign", "approve_user", "copy_user", "apply_goods", "stock_goods", "use_goods", "peer_user");
|
|
|
$user = $this->user;
|
|
|
if ($way == CommonConstant::edit) {
|