feat: 添加命令复核逻辑; 添加命令复核工单;

This commit is contained in:
Bai
2021-04-26 17:56:06 +08:00
committed by Jiangjie.Bai
parent e9b174f342
commit 50918a3dd2
12 changed files with 248 additions and 34 deletions

View File

@@ -0,0 +1,30 @@
from django.utils.translation import ugettext as _
from .base import BaseHandler
class Handler(BaseHandler):
# body
def _construct_meta_body_of_open(self):
apply_run_user = self.ticket.meta.get('apply_run_user')
apply_run_asset = self.ticket.meta.get('apply_run_asset')
apply_run_system_user = self.ticket.meta.get('apply_run_system_user')
apply_run_command = self.ticket.meta.get('apply_run_command')
apply_from_session = self.ticket.meta.get('apply_from_session')
apply_from_cmd_filter_rule = self.ticket.meta.get('apply_from_cmd_filter_rule')
applied_body = '''{}: {},
{}: {},
{}: {},
{}: {},
{}: {},
{}: {},
'''.format(
_("Applied run user"), apply_run_user,
_("Applied run asset"), apply_run_asset,
_("Applied run system user"), apply_run_system_user,
_("Applied run command"), apply_run_command,
_("Applied from session"), apply_from_session,
_("Applied from command filter rules"), apply_from_cmd_filter_rule,
)
return applied_body