AsusgBuildProjectModel.php 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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\Companies;
  7. use app\models\entity\Projecttypes;
  8. use app\models\entity\ProjectsLocotech;
  9. use app\models\entity\ProjecttypesTasktypes;
  10. use app\models\entity\JobtypesTasktypes;
  11. /*
  12. build_project: BEGIN
  13. declare companyId integer default 0;
  14. declare tmpGuid varchar(255);
  15. declare current_task integer;
  16. declare current_jobtype integer;
  17. declare jobtype integer;
  18. declare taskPriority integer;
  19. declare taskName varchar(255);
  20. declare command integer;
  21. declare done integer;
  22. declare cur cursor for select a.smopp_cmd_id from asusg_job2command a where a.asusg_job_id = asusg_job order by a.cmd_order;
  23. declare continue handler for not found set done = true;
  24. 1 //получяю ид компании
  25. set companyId = (select company from accounts where id = initiator and cmdlevel > 1);
  26. if (companyId is null) then leave build_project; end if;
  27. 2 // генерю ууид
  28. set tmpGuid = (select UUID());
  29. 3 // генерю проект
  30. insert into projects_locotech
  31. (action, tasks, company, status, loco_type, loco_number, urgent, created, uuid)
  32. values
  33. (projecttype, tmpGuid, companyId, 1, locoserie, loconumber, 0, NOW(), 'Задача из АСУ СГ');
  34. 4 //переопределяю ид компании
  35. set companyId = (select id from projects_locotech where tasks = tmpGuid);
  36. if (companyId is null) then leave build_project; end if;
  37. 5 // прикрепляю команды к проекту
  38. update projects_locotech
  39. set tasks = ''
  40. where id = companyId;
  41. #Проект создан, можно добавлять задачи.
  42. set current_task = 0;
  43. set current_jobtype = 0;
  44. set taskPriority = 1;
  45. 6 // генерю таски к проекту
  46. open cur;
  47. task_loop: loop
  48. fetch cur into command;
  49. if done then leave task_loop;
  50. end if;
  51. set jobtype = (select jobtype_id from jobtypes_tasktypes where tasktype_id = command);
  52. if (jobtype is null) or (jobtype <> current_jobtype) then
  53. set current_jobtype = coalesce(jobtype, 0);
  54. set taskName = (select name from jobtypes where id = current_jobtype);
  55. set taskName = concat('Должность: ', coalesce(taskName, '(не задано)'));
  56. set tmpGuid = (select UUID());
  57. insert into tasks
  58. (status, parent_id, type, input_id, text, project_id, assignees_arr, priority, assignedby, created)
  59. values (1, 0, tasktype, companyId, tmpGuid, 0, 0, 0, 0, NOW());
  60. set current_task = (select id from tasks where text like tmpGuid);
  61. update projects_locotech
  62. set tasks = concat(tasks, ',', cast(current_task as char))
  63. where id = companyId;
  64. set taskPriority = 1;
  65. update tasks
  66. set text = taskName
  67. where id = current_task;
  68. end if;
  69. #set tmpGuid = (select UUID());
  70. insert into tasks
  71. (status, parent_id, type, input_id, text, project_id, assignees_arr, priority, assignedby, created)
  72. values (1, current_task, command, companyId, taskName, 0, 0, taskPriority, 0, NOW());
  73. #values (1, current_task, command, companyId, tmpGuid, 0, 0, taskPriority, 0, NOW());
  74. set taskPriority = taskPriority + 1;
  75. end loop;
  76. close cur;
  77. END
  78. */
  79. class AsusgBuildProjectModel extends Model
  80. {
  81. private $companyId = 0;
  82. private $tmpGuid;
  83. private $current_task;
  84. private $current_jobtype;
  85. private $jobtype;
  86. private $taskPriority;
  87. private $taskNameprivate;
  88. private $command;
  89. private $done;
  90. private $initiator;
  91. private $projecttype;
  92. private $tasktype;
  93. private $locoserie;
  94. private $loconumber;
  95. private $asusg_job;
  96. //declare cur cursor for select a.smopp_cmd_id from asusg_job2command a where a.asusg_job_id = asusg_job order by a.cmd_order;
  97. //declare continue handler for not found set done = true;
  98. public static function execute($initiator, $projecttype, $tasktype, $locoserie, $loconumber, $asusg_job) {
  99. $this->initiator = $initiator,
  100. $this->projecttype = $projecttype,
  101. $this->tasktype = $tasktype,
  102. $this->locoserie = $locoserie,
  103. $this->loconumber = $loconumber,
  104. $this->asusg_job = $asusg_job
  105. // 1. получяю ид компании
  106. if(!$this->GetCompanyId()) {
  107. return false;
  108. }
  109. // 2. генерю ууид
  110. if(!$this->GetUuid()) {
  111. return false;
  112. }
  113. // 3. генерю проект
  114. if(!$this->GenerateProject()) {
  115. return false;
  116. }
  117. // 4. переопределяю ид компании
  118. if(!$this->RedefineCompanyId()) {
  119. return false;
  120. }
  121. // 5. прикрепляю команды к проекту
  122. if(!$this->attachCommands()) {
  123. return false;
  124. }
  125. // 6. генерю таски к проекту
  126. if(!$this->attachCommandsToProj()) {
  127. return false;
  128. }
  129. }
  130. private function GetCompanyId(){
  131. $companiesEntity = Companies::find()->where(['id' => $this->initiator])->andWhere(['>','cmdlevel',1])->one();
  132. $this->companyId = $companiesEntity->id;
  133. if ( null == $this->companyId) {
  134. return false;
  135. }
  136. return true;
  137. }
  138. private function GetUuid()
  139. {
  140. $uuid = Yii::$app->db->createCommand('select UUID() as uuid')->queryOne();
  141. $this->tmpGuid = $uuid["uuid"];
  142. if ( $this->tmpGuid ) {
  143. return true;
  144. }
  145. true false;
  146. }
  147. private function GenerateProject(){
  148. $projectsLocotech = new ProjectsLocotech();
  149. $projectsLocotech->action = $this->projecttype;
  150. $projectsLocotech->tasks = $this->tmpGuid;
  151. $projectsLocotech->company = $this->companyId;
  152. $projectsLocotech->status = 1;
  153. $projectsLocotech->loco_type = $this->locoserie;
  154. $projectsLocotech->loco_number = $this->loconumber;
  155. $projectsLocotech->urgent = 0;
  156. $projectsLocotech->created = date("Y-m-d H:i:s");
  157. $projectsLocotech->uuid = 'Задача из АСУ СГ';
  158. $projectsLocotech->save();
  159. }
  160. private function RedefineCompanyId(){
  161. $ProjectsLocotech = ProjectsLocotech::find()->where(['tasks' => $this->tmpGuid])->one();
  162. $rhis->companyId = $ProjectsLocotech->id;
  163. if ( null == $rhis->companyId ) {
  164. return false;
  165. }
  166. return true;
  167. }
  168. private function attachCommands() {
  169. ProjectsLocotech::updateAll(['tasks' = ''],['id' => $this->companyId]);
  170. $this->current_task = 0;
  171. $this->current_jobtype = 0;
  172. $this->taskPriority = 1;
  173. return true;
  174. }
  175. private function attachCommandsToProj() {
  176. $AsusgJob2CommandEntity = AsusgJob2Command::find()->where(['asusg_job_id' = $tgis->asusg_job])->orderBy(['cmd_order'=> SORT_ASC])->all();
  177. foreach( $AsusgJob2CommandEntity as $comand) {
  178. $JobtypesTasktypes = JobtypesTasktypes::find()->where(['tasktype_id' => $comand])->all();
  179. $this->jobtype = $JobtypesTasktypes->jobtype_id;
  180. if ( (null == $this->jobtype) || ($this->jobtype <> $this->current_jobtype) ) {
  181. //...
  182. }
  183. }
  184. }
  185. }