AddTaskIntoProjectModel.php 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. <?php
  2. namespace app\models\procedure;
  3. use Yii;
  4. use yii\base\Model;
  5. use app\models\entity\Tasks;
  6. use app\models\entity\Accounts;
  7. use app\models\entity\Tasktypes;
  8. use app\models\entity\ProjectsLocotech;
  9. class AddTaskIntoProjectModel extends Model
  10. {
  11. private $taskId;
  12. private $tmptype;
  13. private $tmptask;
  14. private $tasktype;
  15. private $companyId;
  16. private $projectId;
  17. private $initiator;
  18. private $taskMainId;
  19. private $taskGuid = '';
  20. private $listTasktypes;
  21. public function execute($initiator, $projectId, $tasktype)
  22. {
  23. $this->initiator = $initiator;
  24. $this->tasktype = $tasktype;
  25. $this->projectId = $projectId;
  26. // Проверяем возможность добавления задачи указанного типа в указанный проект.
  27. // 1 Для начала выбираем ID компании, в которую входит инициатор добавления задачи. У инициатора cmdlevel > 1.
  28. if( !$this->getCompanyId() ) {
  29. return false;
  30. }
  31. // 2 Затем проверяем, есть ли затребованный тип задач в указанной компании.
  32. if( !$this->checkTasktype() ) {
  33. return false;
  34. }
  35. // 3 Затем проверяем, существует ли затребованный проект в указанной компании.
  36. if( !$this->isIssetProject() ) {
  37. return false;
  38. }
  39. // 4 Метка в поле text для созданной главной задачи.
  40. if( !$this->setLabel() ) {
  41. return false;
  42. }
  43. // 5 Добавляем задачу указанного типа.
  44. $this->addTask();
  45. // 6 Запоминаем ID главной задачи.
  46. if( !$this->getMainTaskId() ) {
  47. return false;
  48. }
  49. // 7 Для каждого типа задач добавляем новую задачу и привязываем её к родительской.
  50. $this->getlistTasktypes();
  51. $this->setParentTask();
  52. }
  53. // 1 Для начала выбираем ID компании, в которую входит инициатор добавления задачи. У инициатора cmdlevel > 1.
  54. private function getCompanyId()
  55. {
  56. $accountsEntity = Accounts::findOne(['id' => $this->initiator, 'cmdlevel' > 1]);
  57. $this->companyId = $accountsEntity->company;
  58. if( null == $this->companyId ) {
  59. return false;
  60. }
  61. return true;
  62. }
  63. // 2 Затем проверяем, есть ли затребованный тип задач в указанной компании.
  64. private function checkTasktype()
  65. {
  66. $tasktypesEntity = Tasktypes::findOne(['id' => $this->tasktype , 'company' = $this->companyId,'main_task' => 1]);
  67. $this->taskId = $tasktypesEntity->id;
  68. if( null == $this->taskId ) {
  69. return false;
  70. }
  71. return true;
  72. }
  73. // 3 Затем проверяем, существует ли затребованный проект в указанной компании.
  74. private function isIssetProject()
  75. {
  76. $projectsLocotechEntity = ProjectsLocotech::findOne(['id' => $this->projectId, 'company' => $this->companyId]);
  77. $this->projectId = $projectsLocotechEntity->id;
  78. if (null == $this->projectId) {
  79. return false;
  80. }
  81. return true;
  82. }
  83. // 4 Метка в поле text для созданной главной задачи.
  84. private function setLabel($uuid = false)
  85. {
  86. $query = 'select UUID()';
  87. $uuid = Yii::$app->db->createCommand('select UUID() as uuid')->queryOne();
  88. if ( $uuid ) {
  89. return $uuid["uuid"];
  90. }
  91. $this->taskGuid = $uuid["uuid"];
  92. if ( null == $this->taskGuid){
  93. return false;
  94. }
  95. return true;
  96. }
  97. // 5 Добавляем задачу указанного типа.
  98. private function addTask()
  99. {
  100. $tasksEntity = new Tasks();
  101. $tasksEntity->status = 1;
  102. $tasksEntity->parent_id = 0;
  103. $tasksEntity->type = $this->tasktype;
  104. $tasksEntity->input_id = $this->projectId;
  105. $tasksEntity->text = $this->taskGuid;
  106. $tasksEntity->project_id = 0;
  107. $tasksEntity->assignees_arr = 0;
  108. $tasksEntity->priority = 1;
  109. $tasksEntity->assignedby = 0;
  110. $tasksEntity->created = date('Y-m-d H:i:S');
  111. $tasksEntity->save();
  112. }
  113. // 6 Запоминаем ID главной задачи.
  114. private function getMainTaskId()
  115. {
  116. $tasksEntity = Tasks::find()->where(['like','text', $this->taskGuid])->one();
  117. $this->taskMainId = $tasksEntity->id;
  118. if ( null == $this->taskMainId ){
  119. return false;
  120. }
  121. return true;
  122. }
  123. // 7 Для каждого типа задач добавляем новую задачу и привязываем её к родительской.
  124. private function getlistTasktypes()
  125. {
  126. $TasktypesEntity = Tasktypes::find()
  127. ->leftJoin('tasktypes as ttp', 'instr(ttp.subtasks, tasktypes.id) > 0')
  128. ->select(['tasktypes.id'])
  129. ->where(['ttp.id' => $this->tasktype])
  130. ->all();
  131. $this->listTasktypes = $TasktypesEntity;
  132. }
  133. private function setParentTask()
  134. {
  135. foreach ( $this->listTasktypes as $tasktype) {
  136. $uuid = $this->setLabel(true);
  137. $tasksEntity = new Tasks();
  138. $tasksEntity->status = 1
  139. $tasksEntity->parent_id = $this->taskMainId;
  140. $tasksEntity->type = $tasktype->id;
  141. $tasksEntity->input_id = $this->projectId;
  142. $tasksEntity->text = $uuid;
  143. $tasksEntity->project_id = 0;
  144. $tasksEntity->assignees_arr = 0;
  145. $tasksEntity->priority = 0;
  146. $tasksEntity->assignedby = 0;
  147. $tasksEntity->created = date('Y-m-d H:i:S');
  148. $tasksEntity->save();
  149. $projectsLocotechEntity = ProjectsLocotech::findOne($this->projectId);
  150. $projectsLocotechEntity->tasks = $tasktype->id . ',' . $tasksEntity->id;
  151. $projectsLocotechEntity->save();
  152. }
  153. }
  154. }
  155. /*
  156. add_task_whole_pack: BEGIN
  157. declare taskId integer;
  158. declare tmptype integer;
  159. declare tmptask integer;
  160. declare companyId integer;
  161. declare projectId integer;
  162. declare taskGuid varchar(255);
  163. declare done integer;
  164. declare cur cursor for select ttx.id from tasktypes ttx left join tasktypes ttp on instr(ttp.subtasks, ttx.id) > 0 where ttp.id = tt;
  165. declare continue handler for not found set done = true;
  166. set done = false;
  167. #Проверяем возможность добавления задачи указанного типа в указанный проект.
  168. #Для начала выбираем ID компании, в которую входит инициатор добавления задачи. У инициатора cmdlevel > 1.
  169. set companyId = (select company from accounts where id = initiator and cmdlevel > 1);
  170. if (companyId is null) then leave add_task_whole_pack;
  171. end if;
  172. #Затем проверяем, есть ли затребованный тип задач в указанной компании.
  173. set taskId = (select id from tasktypes where id = tt and company = companyId and main_task = 1);
  174. if (taskId is null) then leave add_task_whole_pack;
  175. end if;
  176. #Затем проверяем, существует ли затребованный проект в указанной компании.
  177. set projectId = (select id from projects_locotech where id = project and company = companyId);
  178. if (projectId is null) then leave add_task_whole_pack;
  179. end if;
  180. #Метка в поле text для созданной главной задачи.
  181. set taskGuid = (select UUID());
  182. insert into text_log (msg) values (taskGuid);
  183. #Добавляем задачу указанного типа.
  184. insert into tasks
  185. (status, parent_id, type, input_id, text, project_id, assignees_arr, priority, assignedby, created)
  186. values (1, 0, tt, projectId, taskGuid, 0, 0, 1, 0, NOW());
  187. #Запоминаем ID главной задачи.
  188. set taskId = (select id from tasks where text like taskGuid);
  189. #Для каждого типа задач добавляем новую задачу и привязываем её к родительской.
  190. open cur;
  191. task_loop: loop
  192. fetch cur into tmptype;
  193. if done then leave task_loop;
  194. end if;
  195. set taskGuid = (select UUID());
  196. insert into tasks
  197. (status, parent_id, type, input_id, text, project_id, assignees_arr, priority, assignedby, created)
  198. values (1, taskId, tmptype, projectId, taskGuid, 0, 0, 0, 0, NOW());
  199. set tmptask = (select id from tasks where text like taskGuid);
  200. update projects_locotech
  201. set tasks = concat(tasks, ',', cast(tmptask as char))
  202. where id = projectId;
  203. end loop;
  204. close cur;
  205. END
  206. */