AsusgChangeParentTask.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. <?php
  2. namespace app\models\procedure;
  3. use Yii;
  4. use yii\base\Model;
  5. use app\models\entity\Accounts;
  6. use app\models\entity\Projecttypes;
  7. use app\models\entity\ProjectsLocotech;
  8. use app\models\entity\ProjecttypesTasktypes;
  9. use app\models\entity\JobtypesTasktypes;
  10. /*
  11. cptask: BEGIN
  12. declare tasktype integer;
  13. declare jobtype_old integer;
  14. declare jobtype_new integer;
  15. declare pt_old integer;
  16. declare toptasktype integer;
  17. declare jobtype_tmp integer;
  18. #declare taskpriority integer;
  19. declare tmptxt varchar(255);
  20. declare taskname varchar(255);
  21. declare taskdescription varchar(255);
  22. declare taskcompany integer;
  23. declare taskconfirmtype integer;
  24. declare tasktime2complete integer;
  25. 1. Запись в лог
  26. insert into text_log
  27. (msg)
  28. values
  29. (concat(cast(initiator as char), ': перенос команды ', cast(task_id as char), ' в задачу ', cast(parent_task as char), '.'));
  30. 2. Получаем инфо по задаче
  31. select t.type, t.parent_id into tasktype, pt_old
  32. from tasks t
  33. where t.id = task_id;
  34. 2.1 если задача родитель то выпадаем.
  35. if pt_old = parent_task then leave cptask; end if;
  36. 3 получение приоритетной задачи
  37. select min(type) into toptasktype
  38. from tasks
  39. where parent_id = parent_task
  40. and priority > 0;
  41. if toptasktype is null then leave cptask; end if;
  42. 4 получение типа задачи
  43. select max(jttt.jobtype_id) into jobtype_old
  44. from jobtypes_tasktypes jttt
  45. where jttt.tasktype_id = tasktype;
  46. select max(jttt.jobtype_id) into jobtype_new
  47. from jobtypes_tasktypes jttt
  48. where jttt.tasktype_id = toptasktype;
  49. 5 обновление родительской задачи
  50. if jobtype_old = jobtype_new then
  51. update tasks
  52. set parent_id = parent_task
  53. #, priority = taskpriority
  54. where id = task_id;
  55. insert into text_log (msg) values (concat(cast(initiator as char), ': команда ', cast(task_id as char), ' перенесена.'));
  56. leave cptask;
  57. end if;
  58. 6 получение типов тасков
  59. select name, description, company, confirmtype, time_to_complete_minutes
  60. into taskname, taskdescription, taskcompany, taskconfirmtype, tasktime2complete
  61. from tasktypes
  62. where id = tasktype;
  63. set toptasktype = null;
  64. 7 переопределение приоритетной задачи
  65. select tt.id into toptasktype
  66. from tasktypes tt
  67. left join jobtypes_tasktypes jttt on tt.id = jttt.tasktype_id
  68. where tt.name = taskname
  69. and tt.description = taskdescription
  70. and tt.company = taskcompany
  71. and tt.main_task = 0
  72. and tt.confirmtype = taskconfirmtype
  73. and tt.time_to_complete_minutes = tasktime2complete
  74. and jttt.jobtype_id = jobtype_new;
  75. if toptasktype is null then
  76. set tmptxt = uuid();
  77. insert into tasktypes
  78. (creator_id, name, description, company, main_task, confirmtype, time_to_complete_minutes, control_map)
  79. values
  80. (initiator, tmptxt, taskdescription, taskcompany, 0, taskconfirmtype, tasktime2complete, 0);
  81. select id into toptasktype
  82. from tasktypes
  83. where name = tmptxt;
  84. update tasktypes
  85. set name = taskname
  86. where id = toptasktype;
  87. insert into text_log (msg) values (concat('Создан новый тип задач: ', cast(toptasktype as char)));
  88. else
  89. insert into text_log (msg) values (concat('Найден тип задачи: ', cast(toptasktype as char)));
  90. end if;
  91. 8
  92. set jobtype_tmp = null;
  93. select max(jobtype_id) into jobtype_tmp
  94. from jobtypes_tasktypes
  95. where tasktype_id = toptasktype;
  96. if (jobtype_tmp is null) or (jobtype_tmp <> jobtype_new) then
  97. insert into jobtypes_tasktypes
  98. (jobtype_id, tasktype_id)
  99. values
  100. (jobtype_new, toptasktype);
  101. end if;
  102. 9
  103. update tasks
  104. set parent_id = parent_task,
  105. #priority = taskpriority,
  106. type = toptasktype
  107. where id = task_id;
  108. insert into text_log (msg) values (concat(cast(initiator as char), ': команда ', cast(task_id as char), ' перенесена с новым типом задачи.'));
  109. END
  110. */
  111. class AsusgChangeParentTaskModel extends Model
  112. {
  113. private $tasktype;
  114. private $jobtype_old;
  115. private $jobtype_new;
  116. private $pt_old;
  117. private $initiator;
  118. private $parent_task;
  119. private $task_id;
  120. private $toptasktype;
  121. private $jobtype_tmp;
  122. private $tmptxt;
  123. private $taskname;
  124. private $taskdescription;
  125. private $taskcompany;
  126. private $taskconfirmtype;
  127. private $tasktime2complete;
  128. public function execute($initiator, $task_id, $parent_task)
  129. {
  130. $this->initiator = $initiator;
  131. $this->task_id = $task_id;
  132. $this->parent_task = $parent_task;
  133. //1. Запись в лог
  134. $this->insertLog($this->initiator. ': перенос команды ' . $this->task_id . ' в задачу '. $this->parent_task . '.');
  135. //2. Получаем инфо по задаче
  136. if(!$this->GetTaskInfo()) {
  137. return false;
  138. }
  139. // 3 получение приоритетной задачи
  140. if(!$this->GetTopTask()) {
  141. return false;
  142. }
  143. // 4 получение типа задачи
  144. if(!$this->GetTaskTypes()) {
  145. return false;
  146. }
  147. //5 обновление родительской задачи
  148. if(!$this->ParentUpdate()) {
  149. return false;
  150. }
  151. //6 получение типов тасков
  152. if(!$this->GetListTasktypes()) {
  153. return false;
  154. }
  155. $this->toptasktype = null;
  156. // 7 переопределение приоритетной задачи
  157. if(!$this->RedefineTopTask()) {
  158. return false;
  159. }
  160. // 8 переопределение приоритетной задачи
  161. if(!$this->TempTaskType()) {
  162. return false;
  163. }
  164. // 9 переопределение родителя задачи
  165. if(!$this->SetParent()) {
  166. return false;
  167. }
  168. return false;
  169. }
  170. private function insertLog($mgs) {
  171. $textlogEntity = new Textlog();
  172. $textlogEntity->msg = $mgs;
  173. $textlogEntity->save();
  174. }
  175. private function GetTaskInfo()
  176. {
  177. $tasksEntity = Tasks::findOne($this->task_id);
  178. if ( null == $tasksEntity){
  179. return false;
  180. }
  181. $this->tasktype = $tasksEntity->type;
  182. $this->pt_old = $tasksEntity->parent_id;
  183. if ( null == $this->pt_old){
  184. return false;
  185. }
  186. if pt_old = parent_task then leave cptask; end if;
  187. return true;
  188. }
  189. private function GetTopTask()
  190. {
  191. $tasksEntity = Tasks::find()->where(['parent_id' => $this->parent_task])->andWhere(['>', 'priority', 0])->min('type');
  192. $this->toptasktype = $tasksEntity->type;
  193. if ( null == $this->toptasktype){
  194. return false;
  195. }
  196. return true;
  197. }
  198. private function GetTaskTypes() {
  199. $jobtypesTasktypes = JobtypesTasktypes::find()->where(['tasktype_id' => $this->tasktype])->max('jobtype_id');
  200. $this->jobtype_old = $jobtypesTasktypes->jobtype_id;
  201. $jobtypesTasktypes = JobtypesTasktypes::find()->where(['tasktype_id' => $this->toptasktype])->max('jobtype_id');
  202. $this->jobtype_new = $jobtypesTasktypes->jobtype_id;
  203. if ( (null == $this->jobtype_new) or ( null == $this->jobtype_old) ){
  204. return false;
  205. }
  206. return true;
  207. }
  208. private function ParentUpdate() {
  209. if ( $this->jobtype_old == $this->jobtype_new ){
  210. $tasksEntity = Tasks::findOne($this->task_id);
  211. $tasksEntity->parent_id = $this->parent_task;
  212. $tasksEntity->save();
  213. $textlogEntity = new Textlog();
  214. $textlogEntity->msg = $this->initiator . ': команда ' . $this->task_id . ' перенесена.';
  215. $textlogEntity->save();
  216. return false;
  217. }
  218. return true;
  219. }
  220. private function GetListTasktypes(){
  221. $tasktypesEntity = Tasktypes::findOne($this->tasktype);
  222. if ( null != $tasktypesEntity) {
  223. $this->taskname = $tasktypesEntity->name;
  224. $this->taskdescription = $tasktypesEntity->description;
  225. $this->taskcompany = $tasktypesEntity->company;
  226. $this->taskconfirmtype = $tasktypesEntity->confirmtype;
  227. $this->tasktime2complete = $tasktypesEntity->time_to_complete_minutes;
  228. return true;
  229. }
  230. return false;
  231. }
  232. private function RedefineTopTask(){
  233. $tasktypesEntity = Tasktypes::find()->select('tt.id')
  234. ->leftJoin('jobtypes_tasktypes', '`tasktypes`.`id` = `jobtypes_tasktypes`.`tasktype_id`')
  235. ->where([
  236. 'tasktypes.name' => $this->taskname,
  237. 'tasktypes.description' => $this->taskdescription,
  238. 'tasktypes.company' => $this->taskcompany,
  239. 'tasktypes.main_task' => 0,
  240. 'tasktypes.confirmtype' => $this->taskconfirmtype,
  241. 'tasktypes.time_to_complete_minutes' => $this->tasktime2complete,
  242. 'jobtypes_tasktypes.jobtype_id' => $this->jobtype_new
  243. ])
  244. ->all();
  245. $this->toptasktype = $tasktypesEntity->id;
  246. if ( null == $this->toptasktype ) {
  247. $this->tmptxt = Yii::$app->db->createCommand('select UUID() as uuid')->queryOne();
  248. $tasktypesEntity = new Tasktypes();
  249. $tasktypesEntity->creator_id = $this->initiator;
  250. $tasktypesEntity->name = $this->tmptxt;
  251. $tasktypesEntity->description = $this->taskdescription
  252. $tasktypesEntity->company = $this->taskcompany
  253. $tasktypesEntity->main_task = 0;
  254. $tasktypesEntity->confirmtype = $this->taskconfirmtype
  255. $tasktypesEntity->time_to_complete_minutes = $this->tasktime2complete;
  256. $tasktypesEntity->control_map = 0;
  257. $tasktypesEntity->save();
  258. $tasktypesEnt = Tasktypes::find()->where(['name' => $this->tmptxt])->one();
  259. $this->toptasktype = $tasktypesEnt->id; // !!
  260. if ( null == $this->toptasktype ) {
  261. return false;
  262. }
  263. $tasktypes = Tasktypes::find()->where(['id' => $this->toptasktype])->one();
  264. $tasktypes->name = $this->taskname;
  265. $tasktypes->save(); // !!
  266. $this->insertLog('Создан новый тип задач: ' . $this->toptasktype);
  267. } else {
  268. $this->insertLog('Найден тип задачи: ' . $this->toptasktype);
  269. }
  270. return true;
  271. }
  272. private function TempTaskType() {
  273. $this->jobtype_tmp = null;
  274. $jobtypesTasktypes = JobtypesTasktypes::find()->where(['tasktype_id' => $this->toptasktype])->max('jobtype_id');
  275. $this->jobtype_tmp = $jobtypesTasktypes->jobtype_id;
  276. if (( null == $this->jobtype_tmp) or ($this->jobtype_tmp <> $this->jobtype_new)) {
  277. $jobtypesTasktypesEntity = new JobtypesTasktypes();
  278. $jobtypesTasktypesEntity->jobtype_id = $this->jobtype_new;
  279. $jobtypesTasktypesEntity->tasktype_id = $this->toptasktype;
  280. if (!$jobtypesTasktypesEntity->save()){
  281. return false;
  282. }
  283. }
  284. return true;
  285. }
  286. private function SetParent() {
  287. $tasksEntity = Tasks::findOne($this->task_id);
  288. $tasksEntity->parent_id = $this->parent_task;
  289. $tasksEntity->type = $this->toptasktype;
  290. if ( !$tasksEntity->save() ) {
  291. return false;
  292. }
  293. $this->insertLog($this->initiator . ': команда ' . $this->task_id . ' перенесена с новым типом задачи.');
  294. return true;
  295. }
  296. }