diff --git a/src/main.jpg b/src/main.jpg index 63fad23..4889994 100644 Binary files a/src/main.jpg and b/src/main.jpg differ diff --git a/src/production/case.go b/src/production/case.go index b94672a..8578aeb 100644 --- a/src/production/case.go +++ b/src/production/case.go @@ -13,8 +13,8 @@ type Case struct { order string `data:"5"` role string `data:"leader,worker"` fields string `data:"title,content,status,space,index,begin_time,end_time,process_time,finish_time,task_uid,issue_uid,plan_uid,story_uid,user_uid"` - create string `name:"create task_uid* title* content* space index begin_time:select@date end_time:select@date" role:"worker"` - modify string `name:"modify title* content* space index begin_time*:select@date end_time*:select@date" role:"worker"` + create string `name:"create task_uid*:select title* content* space:select index:select begin_time:select@date end_time:select@date" role:"worker"` + modify string `name:"modify title* content* space:select index:select begin_time*:select@date end_time*:select@date" role:"worker"` finish string `name:"finish" role:"worker"` } diff --git a/src/production/task.go b/src/production/task.go index 98daae1..ba0b822 100644 --- a/src/production/task.go +++ b/src/production/task.go @@ -12,10 +12,10 @@ type Task struct { order string `data:"4"` role string `data:"leader,worker"` fields string `data:"title,content,status,space,path,case_count,begin_time,end_time,process_time,finish_time,issue_uid,plan_uid,story_uid,user_uid"` - create string `name:"create issue_uid* title* content* space path begin_time:select@date end_time:select@date" role:"worker"` - modify string `name:"modify title* content* space path begin_time*:select@date end_time*:select@date" role:"worker"` + create string `name:"create issue_uid*:select title* content* space:select path:select begin_time:select@date end_time:select@date" role:"worker"` + modify string `name:"modify title* content* space:select path:select begin_time*:select@date end_time*:select@date" role:"worker"` finish string `name:"finish" role:"worker"` - caseCreate string `name:"caseCreate title* content* space index" role:"worker"` + caseCreate string `name:"caseCreate title* content* space:select index:select" role:"worker"` } func (s Task) Create(m *ice.Message, arg ...string) {