问题修复

Signed-off-by: vilson <545522390@qq.com>
This commit is contained in:
vilson 2019-07-03 17:18:23 +08:00
parent 60dd4be97e
commit d72f3e3685
3 changed files with 0 additions and 3 deletions

View File

@ -27,7 +27,6 @@ class Project
*/ */
public function run($data) public function run($data)
{ {
Log::init(['path' => 'log/project']);
$logData = ['member_code' => $data['memberCode'], 'source_code' => $data['sourceCode'], 'remark' => $data['remark'], 'type' => $data['type'], 'content' => $data['content'], 'is_comment' => $data['isComment'], 'to_member_code' => $data['toMemberCode'], 'create_time' => nowTime(), 'code' => createUniqueCode('projectLog'), 'action_type' => 'project']; $logData = ['member_code' => $data['memberCode'], 'source_code' => $data['sourceCode'], 'remark' => $data['remark'], 'type' => $data['type'], 'content' => $data['content'], 'is_comment' => $data['isComment'], 'to_member_code' => $data['toMemberCode'], 'create_time' => nowTime(), 'code' => createUniqueCode('projectLog'), 'action_type' => 'project'];
$project = \app\common\Model\Project::where(['code' => $data['sourceCode']])->find(); $project = \app\common\Model\Project::where(['code' => $data['sourceCode']])->find();
$logData['project_code'] = $project['code']; $logData['project_code'] = $project['code'];

View File

@ -35,7 +35,6 @@ class Task
*/ */
public function run($data) public function run($data)
{ {
Log::init(['path' => 'log/task']);
$isRobot = (isset($data['data']) && isset($data['data']['is_robot']) && $data['data']['is_robot']) ? 1 : 0; $isRobot = (isset($data['data']) && isset($data['data']['is_robot']) && $data['data']['is_robot']) ? 1 : 0;
$logData = ['member_code' => $data['memberCode'], 'source_code' => $data['taskCode'], 'remark' => $data['remark'], 'type' => $data['type'], 'content' => $data['content'], 'is_comment' => $data['isComment'], 'to_member_code' => $data['toMemberCode'], 'create_time' => nowTime(), 'code' => createUniqueCode('projectLog'), 'action_type' => 'task', 'is_robot' => $isRobot]; $logData = ['member_code' => $data['memberCode'], 'source_code' => $data['taskCode'], 'remark' => $data['remark'], 'type' => $data['type'], 'content' => $data['content'], 'is_comment' => $data['isComment'], 'to_member_code' => $data['toMemberCode'], 'create_time' => nowTime(), 'code' => createUniqueCode('projectLog'), 'action_type' => 'task', 'is_robot' => $isRobot];
$task = \app\common\Model\Task::where(['code' => $data['taskCode']])->find(); $task = \app\common\Model\Task::where(['code' => $data['taskCode']])->find();

View File

@ -34,7 +34,6 @@ class Version
*/ */
public function run($data) public function run($data)
{ {
Log::init(['path' => 'log/version']);
$logData = ['member_code' => $data['memberCode'], 'source_code' => $data['versionCode'], 'remark' => $data['remark'], 'type' => $data['type'], 'content' => $data['content'], 'create_time' => nowTime(), 'code' => createUniqueCode('projectVersionLog')]; $logData = ['member_code' => $data['memberCode'], 'source_code' => $data['versionCode'], 'remark' => $data['remark'], 'type' => $data['type'], 'content' => $data['content'], 'create_time' => nowTime(), 'code' => createUniqueCode('projectVersionLog')];
$version = ProjectVersion::where(['code' => $data['versionCode']])->find(); $version = ProjectVersion::where(['code' => $data['versionCode']])->find();
$logData['features_code'] = $version['features_code']; $logData['features_code'] = $version['features_code'];