AsusgBuildAndStartProjectModel.php 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789
  1. <?php
  2. namespace app\models;
  3. use Yii;
  4. use yii\base\Model;
  5. use app\models\TasksModel;
  6. use app\models\entity\Accounts;
  7. use app\models\entity\Projecttypes;
  8. use app\models\entity\AsusgProject;
  9. use app\models\entity\ProjectsLocotech;
  10. /*
  11. build_project: BEGIN
  12. declare projectId integer;
  13. declare locoserie varchar(255);
  14. declare loconumber int;
  15. declare projecttypeId integer;
  16. declare projectcomment varchar(255);
  17. declare tmpText varchar(255);
  18. declare taskGuid varchar(255);
  19. declare parentId integer;
  20. declare taskId integer;
  21. declare commandId integer;
  22. declare counter integer;
  23. declare jobId integer;
  24. declare projecttype integer;
  25. declare companyId integer;
  26. declare s1 varchar(1);
  27. declare s2 varchar(1);
  28. declare s3 varchar(1);
  29. declare tmps varchar(1);
  30. declare s1v integer;
  31. declare s2v integer;
  32. declare s3v integer;
  33. declare tmpsv integer;
  34. declare e1 integer;
  35. declare e2 integer;
  36. declare e3 integer;
  37. declare done integer;
  38. declare cur_job cursor for
  39. select aj2l.id, coalesce(aj2l.asusg_employee_id1, 0), coalesce(aj2l.asusg_employee_id2, 0), coalesce(aj2l.asusg_employee_id3, 0)
  40. from asusg_job2launch aj2l
  41. where aj2l.asusg_project_id = project_id;
  42. declare cur_task cursor for
  43. select id
  44. from tasks
  45. where parent_id = 0
  46. and input_id = projectId;
  47. declare cur_command cursor for
  48. select t.id
  49. from tasks t
  50. where t.input_id = projectId
  51. and t.parent_id = taskId
  52. order by t.project_id, t.priority;
  53. declare continue handler for not found set done = 1;
  54. 1 Определяем ид компании ( companyId )
  55. select company into companyId
  56. from accounts
  57. where id = initiator;
  58. 1.1 если нет то крах
  59. if companyId is null then leave build_project; end if;
  60. 2 Определяем тип роекта ( projecttype )
  61. select id into projecttype
  62. from projecttypes
  63. where name = 'Проект из мэппинга'
  64. and company = companyId;
  65. 3. Определяем ид проекта из asusg_project ( projectId )
  66. set projectId = (select id from asusg_project where id = project_id and status = 1);
  67. 3.1 если не то крах
  68. if (projectId is null) then leave build_project; end if;
  69. 4. Определяем ид типа проекта ( projecttypeId )
  70. select ap.asusg_projecttype_id into projecttypeId
  71. from asusg_project ap
  72. where ap.id = projectId;
  73. 4.1 если нет джойним asusg_project и asusg_projecttype ( projecttypeId )
  74. if (projecttypeId is null) then
  75. select apt.id into projecttypeId
  76. from asusg_project ap
  77. left join asusg_projecttype apt on apt.loco_serie_id = ap.loco_serie_id and apt.repair_type = ap.repair_type
  78. where ap.id = project_id;
  79. 4.2 если нет то крах
  80. if (projecttypeId is null) then leave build_project; end if;
  81. end if;
  82. 5 определяем переменные locoserie, loconumber, tmpText
  83. select ls.name, ap.loco_number, rt.name into locoserie, loconumber, tmpText
  84. from asusg_project ap left join locomotive_series ls on ap.loco_serie_id = ls.id left join repairtypes rt on rt.id = ap.repair_type
  85. where ap.id = project_id;
  86. 6 получаем строку коммента
  87. set projectcomment = concat('Проект АСУ СГ №', convert(project_id, char), ': ', tmpText, ', ', locoserie);
  88. 7 собираем все переменные initiator, projecttype, projectId, locoserie, loconumber, projectcomment и фигачим проект магия
  89. call start_project_for_loco(initiator, projecttype, projectId, locoserie, loconumber, projectcomment);
  90. 7.1 если projectId нет то крах
  91. if (projectId is null) then leave build_project; end if;
  92. 8 прикручиваем к созданному проекту asusg_project_id
  93. update projects_locotech
  94. set asusg_project_id = project_id
  95. where id = projectId;
  96. set s1 = 'А';
  97. set s2 = 'Б';
  98. set s3 = 'В';
  99. 9
  100. select coalesce(section_a, 0), coalesce(section_b, 0), coalesce(section_c, 0)
  101. into s1v, s2v, s3v
  102. from asusg_project
  103. where id = project_id;
  104. if (s2v < s1v) then
  105. set tmpsv = s1v;
  106. set s1v = s2v;
  107. set s2v = tmpsv;
  108. set tmps = s1;
  109. set s1 = s2;
  110. set s2 = tmps;
  111. end if;
  112. if (s3v < s2v) then
  113. set tmpsv = s2v;
  114. set s2v = s3v;
  115. set s3v = tmpsv;
  116. set tmps = s2;
  117. set s2 = s3;
  118. set s3 = tmps;
  119. end if;
  120. if (s2v < s1v) then
  121. set tmpsv = s1v;
  122. set s1v = s2v;
  123. set s2v = tmpsv;
  124. set tmps = s1;
  125. set s1 = s2;
  126. set s2 = tmps;
  127. end if;
  128. 10
  129. if s1v > 0 then
  130. open cur_job;
  131. cj_loop1: loop
  132. set done = 0;
  133. fetch cur_job into jobId, e1, e2, e3;
  134. if done = 1 then leave cj_loop1; end if;
  135. if (e1 <> 0) or (e2 <> 0) or (e3 <> 0) then
  136. call asusg_add_job_to_project_for_section_by_employee(initiator, project_id, jobId, s1);
  137. else
  138. call asusg_add_job_to_project_for_section(initiator, project_id, jobId, s1);
  139. end if;
  140. end loop;
  141. close cur_job;
  142. end if;
  143. if s2v > 0 then
  144. open cur_job;
  145. cj_loop2: loop
  146. set done = 0;
  147. fetch cur_job into jobId, e1, e2, e3;
  148. if done = 1 then leave cj_loop2; end if;
  149. if (e1 <> 0) or (e2 <> 0) or (e3 <> 0) then
  150. call asusg_add_job_to_project_for_section_by_employee(initiator, project_id, jobId, s2);
  151. else
  152. call asusg_add_job_to_project_for_section(initiator, project_id, jobId, s2);
  153. end if;
  154. end loop;
  155. close cur_job;
  156. end if;
  157. if s3v > 0 then
  158. open cur_job;
  159. cj_loop3: loop
  160. set done = 0;
  161. fetch cur_job into jobId, e1, e2, e3;
  162. if done = 1 then leave cj_loop3; end if;
  163. if (e1 <> 0) or (e2 <> 0) or (e3 <> 0) then
  164. call asusg_add_job_to_project_for_section_by_employee(initiator, project_id, jobId, s3);
  165. else
  166. call asusg_add_job_to_project_for_section(initiator, project_id, jobId, s3);
  167. end if;
  168. end loop;
  169. close cur_job;
  170. end if;
  171. 11 // установка статуса проект в работе
  172. update asusg_project
  173. set status = 2,
  174. started = NOW()
  175. where id = project_id;
  176. 12 // установка работ для проекта
  177. update projects_locotech
  178. set tasks = coalesce(right(tasks, length(tasks) - 1), '')
  179. where id = projectId;
  180. insert into text_log (msg) values (concat(cast(initiator as char), ': Проект ', cast(project_id as char), '/', cast(projectId as char), ' подготовлен. Упорядочиваю команды.'));
  181. 13 // Упорядочить команды в задачах по project_id, установить project_id = 0.
  182. open cur_task;
  183. ct_loop: loop
  184. set done = 0;
  185. fetch cur_task into taskId;
  186. if done = 1 then leave ct_loop; end if;
  187. set counter = 0;
  188. open cur_command;
  189. cc_loop: loop
  190. set done = 0;
  191. fetch cur_command into commandId;
  192. if done = 1 then leave cc_loop; end if;
  193. set counter = counter + 1;
  194. update tasks
  195. #set project_id = 0, priority = counter
  196. set priority = counter, project_id = 0
  197. where id = commandId;
  198. end loop;
  199. close cur_command;
  200. end loop;
  201. close cur_task;
  202. insert into text_log (msg) values (concat(cast(initiator as char), ': Проект ', cast(project_id as char), '/', cast(projectId as char), ' запущен в работу.'));
  203. END
  204. */
  205. class AsusgBuildAndStartProjectModel extends Model
  206. {
  207. private $e1;
  208. private $e2;
  209. private $e3;
  210. private $s1v;
  211. private $s2v;
  212. private $s3v;
  213. private $done;
  214. private $tmps;
  215. private $tmpsv;
  216. private $jobId;
  217. private $taskId;
  218. private $cur_job;
  219. private $counter;
  220. private $tmpText;
  221. private $taskGuid;
  222. private $parentId;
  223. private $s1 = 'А';
  224. private $s2 = 'Б';
  225. private $s3 = 'В';
  226. private $cur_task;
  227. private $commandId;
  228. private $companyId;
  229. private $projectId;
  230. private $locoserie;
  231. private $initiator;
  232. private $project_id;
  233. private $loconumber;
  234. private $projecttype;
  235. private $cur_command;
  236. private $projecttypeId;
  237. private $projectcomment;
  238. private $asusgProjectId;
  239. public function asusg_build_and_start_project_auto($initiator,$project_id)
  240. {
  241. $initiator = '27';
  242. //$project_id = '27';
  243. $this->initiator = $initiator;
  244. $this->project_id = $project_id;
  245. // 1 Определяем ид компании ( companyId )
  246. // 1.1 если нет то крах
  247. $this->getCompanyId();
  248. // 2 Определяем тип роекта ( projecttype )
  249. $this->GetProjecttype();
  250. // 3. Определяем ид проекта из asusg_project ( projectId )
  251. $this->GetProjectId();
  252. // 4. Определяем ид типа проекта ( projecttypeId )
  253. // 4.1 если нет джойним asusg_project и asusg_projecttype ( projecttypeId )
  254. $this->GetProjecttypeId();
  255. // 5 определяем переменные locoserie, loconumber, tmpText
  256. $this->GetLocoProperties();
  257. // 6 получаем строку коммента
  258. $this->projectcomment = 'Проект АСУ СГ №' . $hit->project_id . ': ' . $this->tmpText . ', ' . $this->locoserie);
  259. // 7 собираем все переменные initiator, projecttype, projectId, locoserie, loconumber, projectcomment и фигачим проект магия !!!! ВЫЗОВ ДРУГОЙ ПРОЦЕДУРЫ
  260. $this->CallProcedureStartProject();
  261. // 8 прикручиваем к созданному проекту asusg_project_id
  262. $this->addAsusgProjectId();
  263. // 9
  264. $this->daclareProperties();
  265. // 10
  266. // 11 установка статуса проект в работе
  267. if(!$this->SetStatusProject()) {
  268. return false;
  269. }
  270. // 12 установка работ для проекта
  271. if(!$this->SetTasksToProject()) {
  272. return false;
  273. }
  274. // 13 Упорядочить команды в задачах по project_id, установить project_id = 0.
  275. if(!$this->RegularizeTasks()) {
  276. return false;
  277. }
  278. echo "<pre>";
  279. var_dump($this->CallProcedureStartProject());
  280. echo "</pre>";
  281. exit;
  282. $result = $this->AsusgCurJob();
  283. //$this->AsusgCurCommand();
  284. //var_dump($this->cur_command);
  285. //$this->startProjectForLoco();
  286. $asusgProjectEntity = AsusgProject::find()->where(['id' => $this->project_id , 'status' => 1])->one();
  287. if ( null == $asusgProjectEntity) {
  288. return true;
  289. }
  290. $this->projectId = $asusgProjectEntity->id;//select id from asusg_project where id = project_id and status = 1
  291. $this->setUpdateProjects();
  292. $this->organizeСommands(); // протестил работает!
  293. //var_dump($this->companyId); exit;
  294. }
  295. // получение cur_job !!!!!!!!
  296. public function AsusgCurJob()
  297. {
  298. //declare cur_job cursor for
  299. $result = [];
  300. $query = "select aj2l.id, coalesce(aj2l.asusg_employee_id1, 0), coalesce(aj2l.asusg_employee_id2, 0), coalesce(aj2l.asusg_employee_id3, 0)
  301. from asusg_job2launch aj2l
  302. where aj2l.asusg_project_id =" . $this->project_id;
  303. $this->cur_job = Yii::$app->db->createCommand($query)->queryAll();
  304. if ( count($result) ) {
  305. //$this->logger->setLog();
  306. }
  307. return $result;
  308. }
  309. public function AsusgCurTask(){
  310. $result = [];
  311. $query = 'select id from tasks where parent_id = 0 and input_id = '. $this->project_id;
  312. $result = Yii::$app->db->createCommand($query)->queryAll();
  313. if ( count($result) ) {
  314. //$this->logger->setLog();
  315. }
  316. return $result;
  317. }
  318. public function AsusgCurCommand($taskId){
  319. $result = [];
  320. $query = "select t.id from tasks t
  321. where t.input_id = " . $this->project_id . "
  322. and t.parent_id = " . $taskId . "
  323. order by t.project_id, t.priority";
  324. $result = Yii::$app->db->createCommand($query)->queryAll();
  325. if ( count($result) ) {
  326. //$this->logger->setLog();
  327. }
  328. $this->cur_command = $result;
  329. return $result;
  330. }
  331. // 1. ========================================================================================================================================
  332. private function getCompanyId()
  333. {
  334. $result = [];
  335. $accountsEntity = Accounts::findOne($this->initiator);
  336. $this->companyId = $accountsEntity->company;
  337. if( null == $this->companyId ) {
  338. return false;
  339. }
  340. if ( count($result) ) {
  341. //$this->logger->setLog();
  342. }
  343. }
  344. // 2. ========================================================================================================================================
  345. private function GetProjecttype(){
  346. // part #8
  347. //$query = "select id from projecttypes where name = 'Проект из мэппинга' and company = " . $this->companyId;
  348. $this->projecttype = Projecttypes::find()->select(['id'])->where(['name' => 'Проект из мэппинга','company' => $this->companyId])->all();
  349. //$this->projecttype = Yii::$app->db->createCommand($query)->queryAll();
  350. }
  351. // 3. ========================================================================================================================================
  352. private function GetProjectId(){
  353. $asusgProjectEntity = AsusgProject::find()->where(['id' => $this->project_id , 'status' => 1])->one();
  354. if ( null == $asusgProjectEntity) {
  355. return false;
  356. }
  357. $this->projectId = $asusgProjectEntity->id;
  358. }
  359. // 4. ========================================================================================================================================
  360. private function GetProjecttypeId(){
  361. $asusgProjectEntity = AsusgProject::find()->select(['asusg_projecttype_id'])->where(['id' => $this->projectId])->one();
  362. $this->projecttypeId = $asusgProjectEntity->asusg_projecttype_id;
  363. if ( null == $this->projecttypeId) {
  364. $asusgProjectJoinEntity = AsusgProject::find()
  365. ->leftJoin('asusg_projecttype', 'asusg_project.loco_serie_id = asusg_projecttype.id and asusg_projecttype.repair_type = asusg_project.repair_type')
  366. ->select(['asusg_projecttype.id'])
  367. ->where(['asusg_project.id' => $this->project_id])
  368. ->one();
  369. $this->projecttypeId = $asusgProjectJoinEntity->id;
  370. }
  371. if ( null == $this->projecttypeId) {
  372. return false;
  373. }
  374. }
  375. // 5. ========================================================================================================================================
  376. private function GetLocoProperties(){
  377. $asusgProjectJoinEntity = AsusgProject::find()
  378. ->leftJoin('locomotive_series', 'asusg_project.loco_serie_id = locomotive_series.id')
  379. ->leftJoin('repairtypes', 'repairtypes.id = asusg_project.repair_type')
  380. ->select(['locomotive_series.name as lsname', 'asusg_project.loco_number', 'repairtypes.name as rtname'])
  381. ->where(['asusg_project.id' => $this->project_id])
  382. ->asArray()
  383. ->one();
  384. $this->locoserie = $asusgProjectJoinEntity['lsname'];
  385. $this->loconumber = $asusgProjectJoinEntity['loco_number'];
  386. $this->tmpText = $asusgProjectJoinEntity['rtname'];
  387. }
  388. // 7 . ========================================================================================================================================
  389. private function CallProcedureStartProject() {
  390. $startProjectForLocoModel = new StartProjectForLocoModel();
  391. $this->asusgProjectId = $startProjectForLocoModel->execute($this->initiator, $this->projecttype, $this->locoserie, $this->loconumber, $this->projectcomment);
  392. if ( null == $this->asusgProjectId) {
  393. return false;
  394. }
  395. return true;;
  396. /*
  397. $result = \Yii::$app->db->createCommand('CALL coverage_dis_prof(:initiator, :projecttype , @projectId , :loconumber ,:projectcomment);')
  398. ->bindValue(':initiator' , $this->initiator)
  399. ->bindValue(':projecttype', $this->projecttype)
  400. ->bindValue(':loconumber', $this->loconumber)
  401. ->bindValue(':projectcomment', $this->projectcomment)
  402. ->execute();
  403. $rez=Yii::$app->db->createCommand("SELECT @projectId;")->queryScalar();
  404. */
  405. }
  406. // 8 . =========================================================================================================================================
  407. private function addAsusgProjectId(){
  408. $projectsLocotechEntity = ProjectsLocotech::findOne($this->asusgProjectId);
  409. $projectsLocotechEntity->asusg_project_id = $this->project_id;
  410. $projectsLocotechEntity->save();
  411. }
  412. // 9 . =========================================================================================================================================
  413. public function daclareProperties() {
  414. $asusgProjectEntity = AsusgProject::findOne()
  415. ->select(['coalesce(section_a, 0) as section_a', 'coalesce(section_b, 0) as section_b', 'coalesce(section_c, 0) as section_c'])
  416. ->where(['id' => 116])
  417. ->asArray()
  418. ->one();
  419. $this->s1v = $asusgProjectEntity['section_a'];
  420. $this->s2v = $asusgProjectEntity['section_b'];
  421. $this->s3v = $asusgProjectEntity['section_c'];
  422. if ($this->s2v < $this->s1v) {
  423. $this->tmpsv = $this->s1v;
  424. $this->s1v = $this->s2v;
  425. $this->s2v = $this->tmpsv;
  426. $this->tmps = $this->s1;
  427. $this->s1 = $this->s2;
  428. $this->s2 = $this->tmps;
  429. }
  430. if ($this->s3v < $this->s2v) {
  431. $this->tmpsv = $this->s2v;
  432. $this->s2v = $this->s3v;
  433. $this->s3v = $this->tmpsv;
  434. $this->tmps = $this->s2;
  435. $this->s2 = $this->s3;
  436. $this->s3 = $this->tmps;
  437. }
  438. if ($this->s2v < $this->s1v) {
  439. $this->tmpsv = $this->s1v;
  440. $this->s1v = $this->s2v;
  441. $this->s2v = $this->tmpsv;
  442. $this->tmps = $this->s1;
  443. $this->s1 = $this->s2;
  444. $this->s2 = $this->tmps;
  445. }
  446. }
  447. // 10. =========================================================================================================================================
  448. public function wwwer() {
  449. if ($this->s1v > 0 ) {
  450. $done = 0;
  451. foreach ( $this->cur_job as $jobId) {
  452. if ( $done = 1 ) {
  453. break;
  454. }
  455. if ( $jobId->asusg_employee_id1 != 0 || $jobId->asusg_employee_id2 != 0 || $jobId->asusg_employee_id3 != 0) {
  456. $asusgAddJobToProjectForSectionByEmployeeModel = new AsusgAddJobToProjectForSectionByEmployeeModel();
  457. $asusgAddJobToProjectForSectionByEmployeeModel->execute($this->initiator, $this->project_id, $this->id, $this->asusg_employee_id1);
  458. } else {
  459. AsusgAddJobToProjectForSectionModel::execute($this->initiator, $this->project_id, $this->id, $this->asusg_employee_id1);
  460. }
  461. }
  462. }
  463. if ( $this->s2v > 0 ) {
  464. $done = 0;
  465. foreach( $this->cur_job as $jobId) {
  466. if ( $done = 1 ) {
  467. break;
  468. }
  469. if ( $jobId->asusg_employee_id1 != 0 || $jobId->asusg_employee_id2 != 0 || $jobId->asusg_employee_id3 != 0) {
  470. $asusgAddJobToProjectForSectionByEmployeeModel = new AsusgAddJobToProjectForSectionByEmployeeModel();
  471. $asusgAddJobToProjectForSectionByEmployeeModel->execute($this->initiator,$this->project_id,$jobId->id,$jobId->asusg_employee_id2);
  472. } else {
  473. AsusgAddJobToProjectForSectionModel::execute($this->initiator,$this->project_id,$jobId->id,$jobId->asusg_employee_id2);
  474. }
  475. }
  476. }
  477. if ( $this->s3v > 0 ) {
  478. $done = 0;
  479. foreach( $this->cur_job as $jobId) {
  480. if ( $done = 1 ) {
  481. break;
  482. }
  483. if ( $jobId->asusg_employee_id1 != 0 || $jobId->asusg_employee_id2 != 0 || $jobId->asusg_employee_id3 != 0) {
  484. $query = "call asusg_add_job_to_project_for_section_by_employee(" . $this->initiator . ", " . $this->project_id . ", " . $jobId->id . ", " . $jobId->asusg_employee_id3 .")";
  485. $asusgAddJobToProjectForSectionByEmployeeModel = new AsusgAddJobToProjectForSectionByEmployeeModel();
  486. $asusgAddJobToProjectForSectionByEmployeeModel->execute($this->initiator,$this->project_id,$jobId->id,$jobId->asusg_employee_id3);
  487. } else {
  488. AsusgAddJobToProjectForSectionModel::execute($this->initiator,$this->project_id,$jobId->id,$jobId->asusg_employee_id3);
  489. }
  490. }
  491. }
  492. }
  493. private function SetStatusProject() {
  494. $AsusgProject = AsusgProject::findOne($this->project_id);
  495. $AsusgProject->status = 2;
  496. $AsusgProject->started = date('Y-m-d H:i:s');
  497. if($AsusgProject->save()) {
  498. return false;
  499. }
  500. return true;
  501. }
  502. private function SetTasksToProject() {
  503. ProjectsLocotech::findOne($this->project_id);
  504. update projects_locotech
  505. set tasks = coalesce(right(tasks, length(tasks) - 1), '')
  506. where id = projectId;
  507. insert into text_log (msg) values (concat(cast(initiator as char), ': Проект ', cast(project_id as char), '/', cast(projectId as char), ' подготовлен. Упорядочиваю команды.'));
  508. }
  509. private function RegularizeTasks() {
  510. open cur_task;
  511. ct_loop: loop
  512. set done = 0;
  513. fetch cur_task into taskId;
  514. if done = 1 then leave ct_loop; end if;
  515. set counter = 0;
  516. open cur_command;
  517. cc_loop: loop
  518. set done = 0;
  519. fetch cur_command into commandId;
  520. if done = 1 then leave cc_loop; end if;
  521. set counter = counter + 1;
  522. update tasks
  523. #set project_id = 0, priority = counter
  524. set priority = counter, project_id = 0
  525. where id = commandId;
  526. end loop;
  527. close cur_command;
  528. end loop;
  529. close cur_task;
  530. }
  531. public function startProjectForLoco() {
  532. /*
  533. call start_project_for_loco(initiator, projecttype, projectId, locoserie, loconumber, projectcomment);
  534. if ( null == $projectId) {
  535. return false;
  536. }
  537. if (projectId is null) then leave build_project; end if;
  538. update projects_locotech
  539. set asusg_project_id = project_id
  540. where id = projectId;
  541. */
  542. }
  543. public function setUpdateProjects() {
  544. $result = [];
  545. $query = "UPDATE asusg_project SET status = 2, started = NOW()
  546. WHERE id = " . $this->project_id;
  547. $query2 = "UPDATE projects_locotech SET tasks = coalesce(right(tasks, length(tasks) - 1), '')
  548. WHERE id = " . $this->projectId;
  549. $query3 = "INSERT INTO text_log (msg) VALUES (concat(cast(initiator as char), ': Проект ', cast(project_id as char), '/', cast(projectId as char), ' подготовлен. Упорядочиваю команды.'))";
  550. var_dump($query,'<br>');
  551. var_dump($query2,'<br>');
  552. var_dump($query3,'<br>');
  553. //Yii::$app->db->createCommand($query)->queryAll();
  554. //Yii::$app->db->createCommand($query2)->queryAll();
  555. //Yii::$app->db->createCommand($query3)->queryAll();
  556. return $result;
  557. }
  558. public function organizeСommands(){
  559. #Упорядочить команды в задачах по project_id, установить project_id = 0.
  560. foreach ($this->AsusgCurTask() as $taskId) {
  561. $counter = 0;
  562. foreach ($this->AsusgCurCommand($taskId["id"]) as $commandId) {
  563. $query = "UPDATE tasks
  564. SET priority = " . $counter . ", project_id = 0
  565. WHERE id = " . $commandId['id'];
  566. var_dump($query,'<br>');
  567. //$res = Yii::$app->db->createCommand($query)->queryAll();
  568. $counter++;
  569. }
  570. }
  571. $query = "INSERT INTO text_log (msg) VALUES (concat(cast(initiator as char), ': Проект ', cast(project_id as char), '/', cast(projectId as char), ' запущен в работу.'))";
  572. /*
  573. Yii::$app->db->createCommand($query)->queryAll();
  574. open cur_task;
  575. ct_loop: loop
  576. set done = 0;
  577. fetch cur_task into taskId;
  578. if done = 1 then leave ct_loop; end if;
  579. set counter = 0;
  580. open cur_command;
  581. cc_loop: loop
  582. set done = 0;
  583. fetch cur_command into commandId;
  584. if done = 1 then leave cc_loop; end if;
  585. set counter = counter + 1;
  586. update tasks
  587. #set project_id = 0, priority = counter
  588. set priority = counter, project_id = 0
  589. where id = commandId;
  590. end loop;
  591. close cur_command;
  592. end loop;
  593. close cur_task;
  594. */
  595. }
  596. public function text_log(){
  597. // part #12
  598. $query = "insert into text_log (msg) values (concat(cast(initiator as char), ': Проект ', cast(project_id as char), '/', cast(projectId as char), ' запущен в работу.'))";
  599. $result = Yii::$app->db->createCommand($query)->queryAll();
  600. }
  601. }
  602. ?>