AsusgAddJobToProjectForSectionByEmployeeModel.php 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589
  1. <?php
  2. namespace app\models\procedure;
  3. use Yii;
  4. use yii\base\Model;
  5. use yii\db\Expression;
  6. //use app\models\entity\Tasks;
  7. use app\models\entity\AsusgJobplan;
  8. use app\models\entity\AsusgProject;
  9. //use app\models\entity\Accounts;
  10. //use app\models\entity\Tasktypes;
  11. //use app\models\entity\Projecttypes;
  12. //use app\models\entity\ProjectsLocotech;
  13. //use app\models\entity\ProjecttypesTasktypes;
  14. class AsusgAddJobToProjectForSectionByEmployeeModel extends Model
  15. {
  16. private $aid1;
  17. private $aid2;
  18. private $aid3;
  19. private $jid1;
  20. private $jid2;
  21. private $jid3;
  22. private $taskId;
  23. private $tmpjtId;
  24. private $cur_aid;
  25. private $cur_jid;
  26. private $section;
  27. private $tasktype;
  28. private $jobcount;
  29. private $initiator;
  30. private $projectId;
  31. private $jobtypeId;
  32. private $companyId;
  33. private $origorder;
  34. private $tasktypeId;
  35. private $cur_status;
  36. private $whilecount;
  37. private $project_id;
  38. private $taskCreated;
  39. private $cur_priority;
  40. private $tmpText = '';
  41. private $tmpUuid = '';
  42. private $projecttypeId;
  43. private $job2launch_id;
  44. private $jobtypeName = '';
  45. private $additionalText = '';
  46. private $assignedTime = ;
  47. public function execute( $initiator, $project_id, $job2launch_id, $section )
  48. {
  49. $this->initiator = $initiator;
  50. $this->project_id = $project_id;
  51. $this->job2launch_id = $job2launch_id;
  52. $this->section = $section;
  53. // 1,
  54. if( !$this->getCompanyId() ) {
  55. return false;
  56. }
  57. // 2,
  58. if( !$this->getMappingTasktype() ) {
  59. return false;
  60. }
  61. // 3,
  62. if( !$this->getJobTypeId() ) {
  63. return false;
  64. }
  65. // 4,
  66. if( !$this->getProjectId() ) {
  67. return false;
  68. }
  69. // 5,
  70. if( !$this->getAsusgProgecttypeId() ) {
  71. return false;
  72. }
  73. // 6,
  74. if( !$this->getAdditionalText() ) {
  75. return false;
  76. }
  77. // 7,
  78. if( !$this->declareProperies() ) {
  79. return false;
  80. }
  81. // 8,
  82. if( !$this->createTasks() ) {
  83. return false;
  84. }
  85. return true;
  86. }
  87. private function getListJobTypes( $projecttypeId )
  88. {
  89. $result = [];
  90. $query = 'select aj2c.smopp_cmd_id AS tasktypeId, aj2c.jobtype_id AS jobtypeId, aj2c.cnt AS jobcount, aj2c.original_order AS origorder
  91. from
  92. (select distinct max(id) maxid, asusg_job_id, smopp_cmd_id, jobtype_id, count(jobtype_id) cnt, original_order
  93. from asusg_job2command
  94. where asusg_projecttype_id = ' . $projecttypeId . '
  95. group by asusg_job_id, smopp_cmd_id, jobtype_id, job_order
  96. order by jobtype_id, id, job_order) aj2c
  97. left join asusg_job2launch ajl
  98. on aj2c.asusg_job_id = ajl.asusg_jobplan_id
  99. where ajl.id = '.$this->job2launch_id.'
  100. order by aj2c.maxid, aj2c.jobtype_id, ajl.id';
  101. $resultQuery = Yii::$app->db->createCommand($query )->queryAll();
  102. if ( is_array($resultQuery) and !empty($resultQuery)){
  103. $result = $resultQuery;
  104. }
  105. return $result;
  106. }
  107. // 1.
  108. private function getCompanyId()
  109. {
  110. $accountsEntity = Accounts::find(['id' => $this->initiator]):
  111. $this->companyId = $accountsEntity->id;
  112. if ( null == $this->companyId) {
  113. return false;
  114. }
  115. return true;
  116. }
  117. // 2.
  118. private function getMappingTasktype()
  119. {
  120. $tasktypesEntity = Tasktypes::find()->select('max(id) as id')->where(['description' => 'Мэппинг.', 'company' => $this->companyId , 'letter' => $this->section])->asArray()->one();
  121. $this->tasktype = $tasktypesEntity['id'];
  122. if ( null == $this->tasktype) {
  123. return false;
  124. }
  125. return true;
  126. }
  127. // 3.
  128. private function getJobTypeId()
  129. {
  130. $asusgProjectJoinEntity = AsusgJobplan::find()
  131. ->leftJoin('asusg_job2launch as ajl', 'asusg_jobplan.id = ajl.asusg_jobplan_id')
  132. ->select(['asusg_jobplan.id'])
  133. ->where(['ajl.id' => $this->job2launch_id])
  134. ->andWhere(['like', 'asusg_jobplan.sections', new Expression('concat("%", coalesce("АБ", "Z"), "%")') ])
  135. ->asArray()
  136. ->one();
  137. $this->jobtypeId = $asusgProjectJoinEntity['id'];
  138. if ( null == $this->jobtypeId ) {
  139. return false;
  140. }
  141. return true;
  142. }
  143. // 4.
  144. private function getProjectId()
  145. {
  146. $projectsLocotechEntity = ProjectsLocotech::find()->select(['max(id) as id'])->where(['asusg_project_id' => $this->project_id])->asArray()->one();
  147. $this->projectId = $projectsLocotechEntity['id'];
  148. if ( null == $this->projectId){
  149. return false;
  150. }
  151. return true;
  152. }
  153. // 5.
  154. private function getAsusgProgecttypeId()
  155. {
  156. $asusgProjectEntity = AsusgProject::find()
  157. ->leftJoin('asusg_projecttype AS apt','asusg_project.repair_type = apt.repair_type and asusg_project.loco_serie_id = apt.loco_serie_id')
  158. ->select(['apt.id'])
  159. ->where(['asusg_project.id' => $this->project_id])
  160. ->one();
  161. $this->projecttypeId = $asusgProjectEntity['id'];
  162. if ( null == $this->projecttypeId){
  163. return false;
  164. }
  165. return true;
  166. }
  167. // 6.
  168. private function getAdditionalText()
  169. {
  170. $asusgProjectEntity = AsusgJob2Launch::find()
  171. ->leftJoin('asusg_jobplan AS ajp','asusg_job2launch.asusg_jobplan_id = ajp.id')
  172. ->select(['ajp.id'])
  173. ->where(['asusg_job2launch.id' => $this->project_id])
  174. ->asArray()
  175. ->one();
  176. $this->additionalText = $asusgProjectEntity['id'];
  177. if ( null == $this->additionalText){
  178. return false;
  179. }
  180. return true;
  181. }
  182. // 7.
  183. private function declareProperies()
  184. {
  185. $asusgProjectEntity = AsusgJob2Launch::find()
  186. ->select(['asusg_employee_id1', 'jobtype_id1','asusg_employee_id2', 'jobtype_id2','asusg_employee_id3', 'jobtype_id3'])
  187. ->where(['id' => $this->job2launch_id])
  188. ->one();
  189. if ( null == $asusgProjectEntity){
  190. return false;
  191. }
  192. $this->aid1 = $asusgProjectEntity->asusg_employee_id1;
  193. $this->jid1 = $asusgProjectEntity->jobtype_id1;
  194. $this->aid2 = $asusgProjectEntity->asusg_employee_id2;
  195. $this->jid2 = $asusgProjectEntity->jobtype_id2;
  196. $this->aid3 = $asusgProjectEntity->asusg_employee_id3;
  197. $this->jid3 = $asusgProjectEntity->jobtype_id3;
  198. return true;
  199. }
  200. // 8.
  201. private function createTasks()
  202. {
  203. $listJobTypes = $this->getListJobTypes($this->projecttypeId);
  204. foreach( $listJobTypes as $job) {
  205. if( null = $job['jobtypeId'] ) {
  206. $job['jobtypeId'] = 0;
  207. }
  208. $this->jobtypeName = $this->getJobtypeName(); // 8.1
  209. $whilecount = 1;
  210. while( $whilecount <= $job['jobcount']) {
  211. $this->switchJob($whilecount); // 8.2
  212. $this->tmpText = $this->jobtypeName . ' ' . $whilecount . '/' . $this->section);
  213. $this->cur_status = 1;
  214. if ( 0 <> $this->cur_aid ) {
  215. $this->tmpText = $this->jobtypeName . ' ' . $this->cur_aid . '/' . $this->section);
  216. $this->cur_status = 2;
  217. }
  218. $this->taskId = $this->getTaskId(); // 8.3
  219. if ( null == $this->taskId ) {
  220. $this->tmpUuid = $this->setLabel(); // 8.4
  221. $this->createJobTasks($job); // 8.5
  222. $tasksEntityTemp = Tasks::find()->select(['max(id) AS id'])->where(['input_id' => $this->projectId, 'text' => $this->tmpUuid, 'parent_id' => 0)])-asArray()->one();
  223. $this->taskId = $tasksEntityTemp['id']
  224. $tasksEntity = Tasks::findOne($this->taskId);
  225. $tasksEntity->text = $this->tmpText;
  226. $tasksEntity->save();
  227. $projectsLocotechEntity = ProjectsLocotech::findOne($this->projectId);
  228. $projectsLocotechEntity->tasks = $projectsLocotechEntity->tasks . ',' . $this->taskId;
  229. $projectsLocotechEntity->save();
  230. }
  231. $tasksEntityPr = Tasks::find()->select(['1 + coalesce(max(priority),0) AS priority'])->where(['input_id' => $this->projectId,'parent_id' => $this->taskId])->asArray()->one();
  232. $this->cur_priority = $tasksEntityPr['priority'];
  233. $this->tmpText = $this->tmpText .', '. $this->additionalText;
  234. $this->createTasksExtra($job); // 8.6
  235. $tasksEntityCreated = Tasks::find()->select('max(id) AS id')->where(['parent_id' => $this->taskId,'type' => $job['tasktypeId'],'text' => tmpText])->asArray()->one();
  236. $this->taskCreated = $tasksEntityCreated['id'];
  237. $asusgAddCheckpointsToTaskModel = AsusgAddCheckpointsToTaskModel::execute($this->initiator, $this->taskCreated);
  238. $whilecount++;
  239. }
  240. }
  241. }
  242. // 8.1
  243. private function getJobtypeName()
  244. {
  245. $result = '';
  246. $jobtypesEntity = Jobtypes::find()
  247. ->select(["concat(name, ' #', cast(id as char), '#') AS name"])->where(['id' => $this->jobtypeId])->asArray()->one();
  248. if ( null != $jobtypesEntity['name']) {
  249. $result = $jobtypesEntity['name'];
  250. }
  251. return $result;
  252. }
  253. // 8.2
  254. private function switchJob($whilecount)
  255. {
  256. switch ($whilecount) {
  257. case 1:
  258. $this->cur_aid = $this->aid1;
  259. $this->cur_jid = $this->jid1;
  260. $this->assignedTime = date('Y-m-d H:i:s');
  261. break;
  262. case 2:
  263. $this->cur_aid = $this->aid2;
  264. $this->cur_jid = $this->jid2;
  265. $this->assignedTime = date('Y-m-d H:i:s');
  266. break;
  267. case 3:
  268. $this->cur_aid = $this->aid3;
  269. $this->cur_jid = $this->jid3;
  270. $this->assignedTime = date('Y-m-d H:i:s');
  271. break;
  272. default:
  273. $this->cur_aid = 0;
  274. $this->cur_jid = 0;
  275. $this->assignedTime = null;
  276. }
  277. }
  278. // 8.3
  279. private function getTaskId()
  280. {
  281. $result = '';
  282. $tasksEntity = Tasks::find()
  283. ->select(['max(id) AS id'])
  284. ->where(['input_id' => $this->projectId,'text' => $this->tmpText,'parent_id' => 0])
  285. ->asArray()
  286. ->one();
  287. if ( null != $tasksEntity['id']) {
  288. $result = $tasksEntity['id'];
  289. }
  290. return $result;
  291. }
  292. // 8.4
  293. private function setLabel()
  294. {
  295. $uuid = Yii::$app->db->createCommand('select UUID() as uuid')->queryOne();
  296. if ( $uuid ) {
  297. return $uuid["uuid"];
  298. }
  299. }
  300. // 8.5
  301. private function createJobTasks($job)
  302. {
  303. $tasksEntity = new Tasks();
  304. $tasksEntity->status = $this->cur_status;
  305. $tasksEntity->parent_id = 0;
  306. $tasksEntity->type = $this->tasktype;
  307. $tasksEntity->input_id = $this->projectId;
  308. $tasksEntity->text = $this->tmpUuid;
  309. $tasksEntity->project_id = 0;
  310. $tasksEntity->assignees_arr = $this->cur_aid;
  311. $tasksEntity->priority = 0;
  312. $tasksEntity->assignedby = 0;
  313. $tasksEntity->created = date('Y-m-d H:i:s');
  314. $tasksEntity->asusg_job_mapped_id = $job['jobtypeId'];
  315. $tasksEntity->assigned = $this->assignedTime;
  316. $tasksEntity->preferred_assignee = $this->cur_aid;
  317. $tasksEntity->save();
  318. }
  319. // 8.6
  320. private function createTasksExtra($job)
  321. {
  322. $tasksEntityCr = new Tasks();
  323. $tasksEntityCr->status = $this->cur_status;
  324. $tasksEntityCr->parent_id = $this->taskId;
  325. $tasksEntityCr->type = $job['tasktypeId'];
  326. $tasksEntityCr->input_id = $this->projectId;
  327. $tasksEntityCr->text = $this->tmpText;
  328. $tasksEntityCr->project_id = $job['origorder'];
  329. $tasksEntityCr->assignees_arr = $this->cur_aid;
  330. $tasksEntityCr->priority = $this->cur_priority
  331. $tasksEntityCr->assignedby = 0
  332. $tasksEntityCr->created = date('Y-m-d H:i:s');
  333. $tasksEntityCr->asusg_job_mapped_id = $job['job2launch_id'];
  334. $tasksEntityCr->assigned = $this->assignedTime;
  335. $tasksEntityCr->preferred_assignee = $this->cur_aid;
  336. $tasksEntityCr->save();
  337. }
  338. }
  339. /*
  340. addjobs: BEGIN
  341. declare projectId integer;
  342. declare projecttypeId integer;
  343. declare jobtypeId integer;
  344. declare tasktype integer;
  345. declare companyId integer;
  346. declare origorder integer;
  347. declare taskId integer;
  348. declare jobtypeName varchar(255);
  349. declare taskCreated integer;
  350. declare tmpText varchar(255);
  351. declare additionalText varchar(255);
  352. declare tmpUuid varchar(255);
  353. declare tasktypeId integer;
  354. declare tmpjtId integer;
  355. declare jobcount integer;
  356. declare whilecount integer;
  357. declare cur_priority integer;
  358. declare cur_aid integer;
  359. declare cur_jid integer;
  360. declare cur_status integer;
  361. declare aid1, aid2, aid3 integer;
  362. declare jid1, jid2, jid3 integer;
  363. declare assignedTime datetime;
  364. declare done integer;
  365. declare cur_tasklist cursor for
  366. select aj2c.smopp_cmd_id, aj2c.jobtype_id, aj2c.cnt, aj2c.original_order
  367. from (select distinct max(id) maxid, asusg_job_id, smopp_cmd_id, jobtype_id, count(jobtype_id) cnt, original_order
  368. from asusg_job2command
  369. where asusg_projecttype_id = projecttypeId
  370. group by asusg_job_id, smopp_cmd_id, jobtype_id, job_order
  371. order by jobtype_id, id, job_order) aj2c
  372. left join asusg_job2launch ajl
  373. on aj2c.asusg_job_id = ajl.asusg_jobplan_id
  374. where
  375. ajl.id = job2launch_id
  376. order by aj2c.maxid, aj2c.jobtype_id, ajl.id;
  377. declare continue handler for not found set done = 1;
  378. 1
  379. #set tasktype = 734;
  380. select company into companyId
  381. from accounts
  382. where id = initiator;
  383. if companyId is null then leave addjobs; end if;
  384. 2
  385. select max(id) into tasktype
  386. from tasktypes
  387. where description = 'Мэппинг.'
  388. and company = companyId
  389. and letter = section;
  390. if (tasktype is null) then leave addjobs; end if;
  391. 3
  392. select ajp.id into jobtypeId
  393. from asusg_jobplan ajp
  394. left join asusg_job2launch ajl on ajp.id = ajl.asusg_jobplan_id
  395. where ajl.id = job2launch_id
  396. and ajp.sections like concat('%', coalesce(section, 'Z'), '%');
  397. if jobtypeId is null then leave addjobs; end if;
  398. 4
  399. select max(p.id) into projectId
  400. from projects_locotech p
  401. where p.asusg_project_id = project_id;
  402. if (projectId is null) then leave addjobs; end if;
  403. 5
  404. select apt.id into projecttypeId
  405. from asusg_project ap
  406. left join asusg_projecttype apt on ap.repair_type = apt.repair_type and ap.loco_serie_id = apt.loco_serie_id
  407. where ap.id = project_id;
  408. 6
  409. #select concat(ajp.name, ' (', coalesce(ajl.asusg_job_uuid, ''), ')') into additionalText
  410. select ajp.name into additionalText
  411. from asusg_job2launch ajl
  412. left join asusg_jobplan ajp on ajl.asusg_jobplan_id = ajp.id
  413. where ajl.id = job2launch_id;
  414. 7
  415. select asusg_employee_id1, jobtype_id1,
  416. asusg_employee_id2, jobtype_id2,
  417. asusg_employee_id3, jobtype_id3
  418. into aid1, jid1, aid2, jid2, aid3, jid3
  419. from asusg_job2launch
  420. where id = job2launch_id;
  421. 8
  422. open cur_tasklist;
  423. tl_loop: loop
  424. set done = 0;
  425. fetch cur_tasklist into tasktypeId, jobtypeId, jobcount, origorder;
  426. #insert into text_log (msg) values (concat(cast(tasktypeId as char), ' ', cast(jobtypeId as char), ' ', cast(jobcount as char), ' ', section));
  427. if done = 1 then leave tl_loop; end if;
  428. set jobtypeId = coalesce(jobtypeId, 0);
  429. set jobtypeName = (select concat(name, ' #', cast(id as char), '#') from jobtypes where id = jobtypeId);
  430. set whilecount = 1;
  431. while whilecount <= jobcount do
  432. case whilecount
  433. when 1 then
  434. set cur_aid = aid1;
  435. set cur_jid = jid1;
  436. set assignedTime = NOW();
  437. when 2 then
  438. set cur_aid = aid2;
  439. set cur_jid = jid2;
  440. set assignedTime = NOW();
  441. when 3 then
  442. set cur_aid = aid3;
  443. set cur_jid = jid3;
  444. set assignedTime = NOW();
  445. else
  446. set cur_aid = 0;
  447. set cur_jid = 0;
  448. set assignedTime = null;
  449. end case;
  450. if cur_aid <> 0 then
  451. set tmpText = concat(jobtypeName, ' №', cur_aid, '/', section);
  452. set cur_status = 2;
  453. else
  454. set tmpText = concat(jobtypeName, ' ', whilecount, '/', section);
  455. set cur_status = 1;
  456. end if;
  457. set taskId = (select max(t.id)
  458. from tasks t
  459. where t.input_id = projectId
  460. and t.text = tmpText
  461. and t.parent_id = 0);
  462. if (taskId is null) then
  463. set tmpUuid = UUID();
  464. insert into tasks
  465. (status, parent_id, type, input_id, text, project_id, assignees_arr, priority, assignedby, created, asusg_job_mapped_id, assigned, preferred_assignee)
  466. values (cur_status, 0, tasktype, projectId, tmpUuid, 0, cur_aid, 0, 0, NOW(), jobtypeId, assignedTime, cur_aid);
  467. set taskId = (select max(t.id)
  468. from tasks t
  469. where t.input_id = projectId
  470. and t.text = tmpUuid
  471. and t.parent_id = 0);
  472. update tasks
  473. set text = tmpText
  474. where id = taskId;
  475. update projects_locotech
  476. set tasks = concat(tasks, ',', cast(taskId as char))
  477. where id = projectId;
  478. end if;
  479. set cur_priority = (select 1 + coalesce(max(priority), 0)
  480. from tasks t
  481. where t.input_id = projectId
  482. and t.parent_id = taskId);
  483. set tmpText = concat(tmpText, ', ', additionalText);
  484. insert into tasks
  485. (status, parent_id, type, input_id, text, project_id, assignees_arr, priority, assignedby, created, asusg_job_mapped_id, assigned, preferred_assignee)
  486. values (cur_status, taskId, tasktypeId, projectId, tmpText, origorder, cur_aid, cur_priority, 0, NOW(), job2launch_id, assignedTime, cur_aid);
  487. select max(id) into taskCreated
  488. from tasks
  489. where parent_id = taskId
  490. and type = tasktypeId
  491. and text = tmpText;
  492. call asusg_add_checkpoints_to_task(initiator, taskCreated);
  493. set whilecount = whilecount + 1;
  494. end while;
  495. end loop;
  496. close cur_tasklist;
  497. END
  498. */