问题修复
Signed-off-by: vilson <545522390@qq.com>
This commit is contained in:
parent
60dd4be97e
commit
d72f3e3685
@ -27,7 +27,6 @@ class Project
|
||||
*/
|
||||
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'];
|
||||
$project = \app\common\Model\Project::where(['code' => $data['sourceCode']])->find();
|
||||
$logData['project_code'] = $project['code'];
|
||||
|
@ -35,7 +35,6 @@ class Task
|
||||
*/
|
||||
public function run($data)
|
||||
{
|
||||
Log::init(['path' => 'log/task']);
|
||||
$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];
|
||||
$task = \app\common\Model\Task::where(['code' => $data['taskCode']])->find();
|
||||
|
@ -34,7 +34,6 @@ class Version
|
||||
*/
|
||||
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')];
|
||||
$version = ProjectVersion::where(['code' => $data['versionCode']])->find();
|
||||
$logData['features_code'] = $version['features_code'];
|
||||
|
Loading…
x
Reference in New Issue
Block a user