Commit 5604124a by hcy001

1

parent 8d66aa17
......@@ -117,7 +117,7 @@ class InquiryItemsModel extends Model
$data['create_uid'] = $input['user_id'];
$data['create_name'] = $UserModel->FinduserInfoName($input['user_id']);
OplogModel::log($data);
\App\Model\OpLogModel::log($data);
} catch (Exception $e) {
return [-1, $e->getMessage()];
}
......@@ -239,7 +239,7 @@ class InquiryItemsModel extends Model
#日志
OplogModel::log([
\App\Model\OpLogModel::log([
'types'=>1,
'relation_id'=>$b["inquiry_id"],
'relation_sn'=>(new InquiryModel())->FindInquirySn($b["inquiry_id"]),
......@@ -392,7 +392,7 @@ class InquiryItemsModel extends Model
}
#日志
OplogModel::log([
\App\Model\OpLogModel::log([
'types'=>1,
'relation_id'=>$inquiry_id,
'relation_sn'=>$inquiry_sn,
......
......@@ -482,7 +482,7 @@ class QuoteModel extends Model
$data['create_uid'] = $input['user_id'];
$data['create_name'] = $UserModel->FinduserInfoName($input['user_id']);
OplogModel::log($data);
OplogModel::log($data);
} catch (Exception $e) {
return [1, $e->getMessage()];
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment