AsusgAddJobToProjectForSectionModel.php 23 KB

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