ClientController.php 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242
  1. <?php
  2. Doo::loadCore('auth/DooAuth');
  3. Doo::loadClass('PasswordHash');
  4. Doo::loadClass('client');
  5. Doo::loadClass('auth');
  6. Doo::loadClass('attachment');
  7. Doo::loadClass('attfile');
  8. Doo::loadClass('actmeasure');
  9. Doo::loadClass('contractact');
  10. Doo::loadClass('project');
  11. Doo::loadClass('profile');
  12. Doo::loadClass('numofperact');
  13. Doo::loadClass('measureauditact');
  14. Doo::loadClass('itemfile');
  15. Doo::loadModel('users');
  16. /**
  17. * MainController
  18. * Feel free to delete the methods and replace them with your own code.
  19. *
  20. * @author NoNZero
  21. */
  22. class ClientController extends DooController
  23. {
  24. private $data, $client, $auth, $att, $file, $zip, $actmeasure, $contractact, $project, $profile, $numofperact, $measureauditact, $attfile, $users, $itemfile;
  25. private $statusArray = array('uncheck' => '1', 'checking' => '2', 'checked' => '3', 'checkno' => '4');
  26. private $fileTypeArray = array('台帐附件');
  27. public function __construct()
  28. {
  29. $this->data['rootUrl'] = Doo::conf()->APP_URL;
  30. $this->client = new client();
  31. $this->auth = new Auth();
  32. $this->att = new attachment();
  33. $this->attfile = new attFile();
  34. $this->zip = new ZipArchive();
  35. $this->actmeasure = new actMeasure();
  36. $this->contractact = new Contractact();
  37. $this->project = new Project();
  38. $this->profile = new Profile();
  39. $this->numofperact = new NumofperAct();
  40. $this->measureauditact = new MeasureauditAct();
  41. $this->users = new Users();
  42. $this->itemfile = new ItemFile();
  43. }
  44. public function ClientSignin()
  45. {
  46. if (isset($_POST['zhname']) && isset($_POST['zhpass'])) {
  47. echo json_encode(array('status' => FALSE, 'msg' => '登录失败,请更新软件。'), JSON_UNESCAPED_UNICODE);
  48. die;
  49. }
  50. if (isset($_POST['uname']) && isset($_POST['upass'])) {
  51. echo json_encode(array('status' => FALSE, 'msg' => '登录失败,请更新软件。'), JSON_UNESCAPED_UNICODE);
  52. die;
  53. }
  54. if (isset($_POST['v3name']) && isset($_POST['v3pass']))
  55. try {
  56. if ($this->auth->login($_POST['v3name'], $_POST['v3pass'])) {
  57. $uinfo = $this->auth->getUinfo();
  58. if (isset($uinfo['isstop']) && $uinfo['isstop'] > 0) {
  59. echo json_encode(array('status' => FALSE, 'msg' => '用户名或密码错误'), JSON_UNESCAPED_UNICODE);
  60. die;
  61. }
  62. if (isset($uinfo['uid'])) {
  63. $userArray = $this->profile->getProWithUid($uinfo['uid']);
  64. $avatarStr = $userArray['avatar'];
  65. if (isset($userArray['userid'])) {
  66. $msgArray = array('uid' => $uinfo['uid'], 'name' => $userArray['name'], 'email' => $uinfo['uemail'], 'ucompany' => $userArray['company'], 'jobtitle' => $userArray['jobs'], 'avatar' => Doo::conf()->APP_URL . $avatarStr);
  67. echo json_encode(array('status' => TRUE, 'msg' => '', 'userinfo' => $msgArray), JSON_UNESCAPED_UNICODE);
  68. die;
  69. }
  70. }
  71. } else {
  72. echo json_encode(array('status' => FALSE, 'msg' => '用户名或密码错误'), JSON_UNESCAPED_UNICODE);
  73. die;
  74. }
  75. } catch (Exception $exc) {
  76. }
  77. }
  78. // 创建标段
  79. // 参数:用户ID,创建名称,KEY
  80. function ClientCreatmeasure()
  81. {
  82. if (isset($this->params['uid']) && $this->params['uid'] && isset($this->params['bname']) && $this->params['bname'] && $this->params['ckey'] && isset($this->params['ckey'])) {
  83. $retval = $this->contractact->getPidWithKey($this->params['ckey']);
  84. if (isset($retval['pid'])) {
  85. $pArray = $this->project->getRowByPid($retval['pid']);
  86. if (isset($this->params['uid']) && ($this->params['uid'] == $pArray['uid'])) {
  87. $status = array('status' => FALSE, 'msg' => '业主不能作为编制人新建标段!');
  88. echo json_encode($status, JSON_UNESCAPED_UNICODE);
  89. die();
  90. }
  91. $id = $this->actmeasure->insertMeasure(intval($this->params['uid']), $retval['pid'], $retval['stid'], iconv('GBK', 'UTF-8', $this->params['bname']));
  92. $this->measureauditact->insertMeasureAudit($pArray['pid'], 0, $pArray['uid'], 0, $id, $retval['stid'], 1, 'uncheck', 1); //加入业主
  93. $uArray = $this->profile->getProWithUid($retval['uid']);
  94. $strAvatar = $this->auth->getAvatar($uArray['userid']);
  95. $createArray = array('catid' => $id, 'name' => $uArray['name'], 'avatar' => $strAvatar, 'jobs' => $uArray['jobs'], 'company' => $uArray['company'], 'coninfo' => array('phone' => $uArray['phone'], 'mobile' => $uArray['mobile'], 'qq' => $uArray['qq']), 'pname' => $pArray['pname'], 'ptype' => $retval['stname'], 'ownuid' => $pArray['uid'], 'pnameid' => $pArray['pid'], 'ptypeid' => $retval['stid']);
  96. $status = array('status' => TRUE, 'msg' => '', 'createinfo' => $createArray);
  97. echo json_encode($status, JSON_UNESCAPED_UNICODE);
  98. die();
  99. } else {
  100. $status = array('status' => FALSE, 'msg' => 'The key is error');
  101. echo json_encode($status, JSON_UNESCAPED_UNICODE);
  102. die();
  103. }
  104. } else {
  105. $status = array('status' => FALSE, 'msg' => 'error_create');
  106. echo json_encode($status, JSON_UNESCAPED_UNICODE);
  107. die();
  108. }
  109. }
  110. // 编制人审核第一期时 开始审核第一期时候调用ll
  111. public function ClientPeriod()
  112. {
  113. // TODO:上报数据
  114. // TODO:每期更新数据时候和上传时候要查询当前进行期数的第几次一并写入数据库
  115. if (isset($this->params['userid']) && isset($this->params['tenderid']) && isset($this->params['phaseno']) && isset($_POST['MD5_JL']) && isset($_POST['MD5_Zip'])) {
  116. $fp = $this->upfile('upfile');
  117. if (isset($fp[0]['filepath'])) {
  118. /**
  119. * 增加上传压缩包md5检测机制
  120. */
  121. $localmd5HashString = hash_file("md5", Doo::conf()->SITE_PATH . $fp[0]['filepath']);
  122. if ($localmd5HashString != trim($_POST['MD5_Zip'])) {
  123. $status = array('status' => 'FALSE', 'msg' => '期数数据上传失败,请重新上传');
  124. echo json_encode($status, JSON_UNESCAPED_UNICODE);
  125. die();
  126. }
  127. $res = $this->zip->open(Doo::conf()->SITE_PATH . $fp[0]['filepath']);
  128. $extPath = pathinfo($fp[0]['filepath']);
  129. $extPathdir = Doo::conf()->SITE_PATH . $extPath['dirname'] . '/' . $extPath['filename'];
  130. if ($res === TRUE) {
  131. if (!$this->dir_create($extPathdir)) {
  132. $status = array('status' => 'FALSE', 'msg' => '期数数据上传失败');
  133. echo json_encode($status, JSON_UNESCAPED_UNICODE);
  134. die();
  135. }
  136. $this->zip->extractTo($extPathdir);
  137. $this->zip->close();
  138. }
  139. $countArray = json_decode(file_get_contents($extPathdir . '/' . 'JsonFile_Common.json'), TRUE, JSON_UNESCAPED_UNICODE);
  140. if (!isset($countArray)) {
  141. $status = array('status' => 'FALSE', 'msg' => '期数汇总数据上传失败');
  142. echo json_encode($status, JSON_UNESCAPED_UNICODE);
  143. die();
  144. }
  145. $this->actmeasure->updateCon($this->params['tenderid'], $countArray['TotalPrice']);
  146. $pmArray = $this->actmeasure->getRowByPmid($this->params['tenderid']);
  147. if (isset($pmArray['pmid'])) {
  148. // 由于不通过功能数据表记录重复写入时要考虑当前是第几次审核
  149. $intMaxTimes = $this->numofperact->getMaxTimes($this->params['tenderid'], $this->params['phaseno']);
  150. if (isset($intMaxTimes['times']) && ($intMaxTimes['times'] >= 0)) {
  151. $iniTimes = $intMaxTimes['times'] + 1;
  152. } else {
  153. $iniTimes = 0;
  154. }
  155. // 写入第一期
  156. $mpid = $this->numofperact->insert($pmArray['pid'], $this->params['userid'], $this->params['tenderid'], $pmArray['stid'], $this->params['phaseno'], $countArray['BQHTJL'], $countArray['BQSLBGJL'], $countArray['JZSQLJWC'], $countArray['BQWCJL'], $countArray['LJWCJL'], $iniTimes);
  157. // 更新审核人MPID
  158. $this->measureauditact->updateAuditorMPID($mpid, $this->params['tenderid'], $this->params['phaseno'], $iniTimes);
  159. // 设置审核人状态
  160. $firstAuditor = $this->measureauditact->getFirstAuditor($this->params['tenderid'], $this->params['phaseno'], $iniTimes);
  161. if (isset($firstAuditor)) {
  162. if ($firstAuditor['mastatus'] == 'uncheck') {
  163. $this->measureauditact->updateMastatus($firstAuditor['maid']);
  164. }
  165. }
  166. }
  167. if ($mpid > 0) {
  168. if ($this->attfile->insertFile($pmArray['pid'], $pmArray['stid'], $mpid, $this->params['tenderid'], $this->params['phaseno'], $this->params['userid'], $fp[0]['filepath'], 0, $_POST['MD5_JL'], $iniTimes)) {
  169. $infostatus = 0;
  170. $pmArray = $this->numofperact->getRowTender($this->params['tenderid']);
  171. if ($pmArray) {
  172. $countTotal = count($pmArray);
  173. $ownerStatusArray = $this->measureauditact->getStatusTender($pmArray[0]['pmid'], $pmArray[0]['numpname']);
  174. if ($ownerStatusArray) {
  175. $infostatus = $this->statusArray[$ownerStatusArray['mastatus']];
  176. }
  177. echo json_encode(array('status' => 'TRUE', 'msg' => '', 'info' => array('curr' => $pmArray[0]['numpname'], 'infostatus' => $infostatus, 'total' => $countTotal)), JSON_UNESCAPED_UNICODE);
  178. die();
  179. } else {
  180. echo json_encode(array('status' => 'TRUE', 'msg' => '', 'info' => array('curr' => 1, 'infostatus' => 1, 'total' => 1)), JSON_UNESCAPED_UNICODE);
  181. die();
  182. }
  183. } else {
  184. $status = array('status' => 'FALSE', 'msg' => '期数上传失败');
  185. echo json_encode($status, JSON_UNESCAPED_UNICODE);
  186. die();
  187. }
  188. } else {
  189. $status = array('status' => 'FALSE', 'msg' => '期数上传失败');
  190. echo json_encode($status, JSON_UNESCAPED_UNICODE);
  191. die();
  192. }
  193. } else {
  194. $status = array('status' => 'FALSE', 'msg' => '文件上传失败,请重试');
  195. echo json_encode($status, JSON_UNESCAPED_UNICODE);
  196. die();
  197. }
  198. } else {
  199. $status = array('status' => 'FALSE', 'msg' => '上传参数错误');
  200. echo json_encode($status, JSON_UNESCAPED_UNICODE);
  201. die();
  202. }
  203. }
  204. /**
  205. * 获取标段状态信息(由于加入了)
  206. * 每个标段只有一期在进行中 group by?
  207. *
  208. * 查询标段的审核状态可以根据业主的审核依据来查询
  209. * 如果除业主意外的人审核状态为未通过怎么处理
  210. */
  211. public function getMAStatus()
  212. {
  213. // curr:当前期数,status:当前状态,total:总期数
  214. // 参数catid
  215. if (isset($this->params['tenderid'])) {
  216. $pmArray = $this->numofperact->getRowTenderCurr($this->params['tenderid']);
  217. $countTotal = count($pmArray);
  218. $ownerStatus = NULL;
  219. $isUnCheck = TRUE;
  220. $ownerStatusArray = $this->measureauditact->getStatusTen($pmArray[0]['pmid'], $pmArray[0]['numpname']);
  221. // if (isset($ownerStatusArray))
  222. // if (($ownerStatusArray[0]['last'] == 1) && ($ownerStatusArray[0]['mastatus'] == 'checked')) {
  223. // $ownerStatus = 'checked';
  224. // } else {
  225. // $ownerStatus = 'checking';
  226. // }
  227. $statusArray = $this->numofperact->getMaxRowStatus($pmArray[0]['pmid'], $pmArray[0]['numpname']);
  228. $ownerStatus = $statusArray['currstatus'];
  229. // foreach ($ownerStatusArray as $kk => $vv) {
  230. // if (($vv['last'] == 1) && ($vv['mastatus'] == 'checked')) {
  231. // $ownerStatus = 'checked';
  232. // } else {
  233. // $ownerStatus = 'checking';
  234. // }
  235. // }
  236. $projectArray = $this->project->getRowByPid($ownerStatusArray[0]['pid']);
  237. $stArray = $this->contractact->getRowByStid($ownerStatusArray[0]['stid']);
  238. $profileArray = $this->profile->getProWithUid($projectArray['uid']);
  239. $auditArray = $this->measureauditact->getAuditUserRedo($pmArray[0]['pmid'], $pmArray[0]['numpname']);
  240. if (isset($auditArray[0]['auditoruid'])) {
  241. foreach ($auditArray as $key => $value) {
  242. $userArray = $this->profile->getProWithUid($value['auditoruid']);
  243. // $finalStatus = $value['mastatus'];
  244. if ($value['mastatus'] != 'uncheck') {
  245. $isUnCheck = FALSE;
  246. }
  247. if ($value['audittime'] > 0) {
  248. $value['audittime'] = date('Y-m-d', $value['audittime']);
  249. }
  250. $auditInfo[] = array('uid' => $userArray['userid'], 'name' => $userArray['name'], 'company' => $userArray['company'], 'jobs' => $userArray['jobs'], 'avatar' => $this->auth->getAvatar($value['auditoruid']), 'mastatus' => $this->statusArray[$value['mastatus']], 'CheckerMemo' => $value['auditcontent'], 'onlineaudit' => $value['onlineaudit'], 'audittime' => $value['audittime']);
  251. }
  252. }
  253. if ($ownerStatusArray) {
  254. if ($isUnCheck) {
  255. echo json_encode(array('status' => 'TRUE', 'msg' => '', 'info' => array('curr' => $pmArray[0]['numpname'], 'infostatus' => $this->statusArray['uncheck'], 'total' => "$countTotal", 'proName' => $projectArray['pname'], 'stName' => $stArray['stname'], 'name' => $profileArray['name'], 'company' => $profileArray['company'], 'jobs' => $profileArray['jobs']), 'auditinfo' => $auditInfo), JSON_UNESCAPED_UNICODE);
  256. } else {
  257. echo json_encode(array('status' => 'TRUE', 'msg' => '', 'info' => array('curr' => $pmArray[0]['numpname'], 'infostatus' => $this->statusArray[$ownerStatus], 'total' => "$countTotal", 'proName' => $projectArray['pname'], 'stName' => $stArray['stname'], 'name' => $profileArray['name'], 'company' => $profileArray['company'], 'jobs' => $profileArray['jobs']), 'auditinfo' => $auditInfo), JSON_UNESCAPED_UNICODE);
  258. }
  259. die();
  260. } else {
  261. echo json_encode(array('status' => 'FALSE', 'msg' => '标段状态查询不存在'), JSON_UNESCAPED_UNICODE);
  262. die();
  263. }
  264. } else {
  265. echo json_encode(array('status' => 'FALSE', 'msg' => '标段状态查询参数错误'), JSON_UNESCAPED_UNICODE);
  266. die();
  267. }
  268. }
  269. public function getUserSearch()
  270. {
  271. if (isset($_POST['uemail']) && filter_var($_POST['uemail'], FILTER_VALIDATE_EMAIL)) {
  272. $retval = $this->users->getOne(array('where' => 'uemail=?', 'param' => array($_POST['uemail']), 'asArray' => TRUE));
  273. if (isset($retval['uid'])) {
  274. $proArray = $this->profile->getProWithUid($retval['uid']);
  275. if (isset($proArray['userid'])) {
  276. $strAvatar = $this->auth->getAvatar($proArray['userid']);
  277. echo json_encode(array('status' => 'TRUE', 'msg' => '', 'info' => array('uid' => $proArray['userid'], 'avatar' => $strAvatar, 'name' => $proArray['name'], 'jobs' => $proArray['jobs'], 'company' => $proArray['company'])), JSON_UNESCAPED_UNICODE);
  278. die();
  279. } else {
  280. echo json_encode(array('status' => 'FALSE', 'msg' => ''), JSON_UNESCAPED_UNICODE);
  281. die();
  282. }
  283. } else {
  284. echo json_encode(array('status' => 'FALSE', 'msg' => ''), JSON_UNESCAPED_UNICODE);
  285. die();
  286. }
  287. } else {
  288. echo json_encode(array('status' => 'FALSE', 'msg' => ''), JSON_UNESCAPED_UNICODE);
  289. die();
  290. }
  291. }
  292. /**
  293. * 获取指定标段指定期数{默认提取重做后最新一期的}
  294. * 单击获取项目相关审核人员和状态
  295. * sectionid:标段ID periodid:期数
  296. * TODO:如果审核人的期数或者次数与标段期数或者次数存在不对应情况的处理
  297. */
  298. public function getAlluserMeasure()
  299. {
  300. if (isset($this->params['tenderid']) && isset($this->params['phaseno'])) {
  301. // error_log(var_export($this->params, TRUE), 3, '/opt/html/jlzftest/data/' . time());
  302. // 先判断是否存在期数问题
  303. // 然后再判断是否存在次数不匹配
  304. // $intNum = $this->numofperact->getCountNumpname($this->params['tenderid'], $this->params['phaseno']);
  305. // // 如果期数是第一期期数必须大于一,否则减一为无效数据 ,为0表示这期为做上报没有产生记录
  306. // if (( $this->params['phaseno'] > 1) && ($intNum == 0)) {// 提取上一期的数据
  307. // // 提取期数减一
  308. // $intLastTimes = $this->numofperact->getMaxTimes($this->params['tenderid'], $this->params['phaseno'] - 1)['times'];
  309. // $uinfoTmpArray = $this->measureauditact->getAllAudit($this->params['tenderid'], $this->params['phaseno'] - 1, $intLastTimes);
  310. // } else {
  311. // $IntMaxRedoTimes = $this->measureauditact->getMaxTimes($this->params['tenderid'], $this->params['phaseno'])['maxtimes'];
  312. // $intTimes = $this->numofperact->getCountTimes($this->params['tenderid'], $this->params['phaseno'], $IntMaxRedoTimes);
  313. // if (($intTimes == 0) && ($IntMaxRedoTimes > 0)) {
  314. // $lastTimes = $IntMaxRedoTimes - 1;
  315. // $uinfoTmpArray = $this->measureauditact->getAllAudit($this->params['tenderid'], $this->params['phaseno'], $lastTimes);
  316. // } else {
  317. // $uinfoTmpArray = $this->measureauditact->getAllAudit($this->params['tenderid'], $this->params['phaseno'], $IntMaxRedoTimes);
  318. // }
  319. // }
  320. $uinfoTmpArray = $this->measureauditact->getAlluserMeasureAudit($this->params['tenderid'], $this->params['phaseno']);
  321. if ($uinfoTmpArray) {
  322. foreach ($uinfoTmpArray as $key => $value) {
  323. $uArray = $this->profile->getProWithUid($value['auditoruid']);
  324. $uinfoArray[$key]['name'] = $uArray['name'];
  325. $uinfoArray[$key]['company'] = $uArray['company'];
  326. $uinfoArray[$key]['jobs'] = $uArray['jobs'];
  327. $uinfoArray[$key]['mastatus'] = $this->statusArray[$value['mastatus']];
  328. $uinfoArray[$key]['uid'] = $value['auditoruid'];
  329. $uinfoArray[$key]['avatar'] = $this->auth->getAvatar($value['auditoruid']);
  330. $uinfoArray[$key]['CheckerMemo'] = $value['auditcontent'];
  331. $uinfoArray[$key]['onlineaudit'] = $value['onlineaudit'];
  332. if ($value['audittime'] > 0) {
  333. $uinfoArray[$key]['audittime'] = date('Y-m-d', $value['audittime']);
  334. } else {
  335. $uinfoArray[$key]['audittime'] = '0';
  336. }
  337. }
  338. } else {
  339. echo json_encode(array('status' => FALSE, 'msg' => '用户列表不存在'), JSON_UNESCAPED_UNICODE);
  340. die();
  341. }
  342. echo json_encode(array('status' => TRUE, 'msg' => '', 'info' => $uinfoArray), JSON_UNESCAPED_UNICODE);
  343. die();
  344. } else {
  345. echo json_encode(array('status' => FALSE, 'msg' => '错误'), JSON_UNESCAPED_UNICODE);
  346. die();
  347. }
  348. }
  349. //
  350. //
  351. // 配置审核人时候还没有创建标段所以没有MPID存在
  352. function addAuditMeasure()
  353. {
  354. // 必须检查期数是否存在
  355. // 标段ID 当前登录 审核人ID
  356. // 检测是否重复写入 && ($_POST['creatoruid'] > 0)
  357. // TODO: 增加多次审核人变更需求,调整审核人增加、删除接口
  358. // 当前操作的是否为最新一期还是最新一期加一(项目进行中时,不能编辑审核人,所以直接加一)
  359. // 大于一次重做的时候,自动复制编制人和所有审核人次数加一
  360. if (isset($_POST['pmid']) && isset($_POST['creatoruid']) && isset($_POST['auditoruid']) && isset($_POST['numpname'])) {
  361. $IntMaxTimes = $this->measureauditact->getMaxTimesInt($_POST['pmid'], $_POST['numpname']); // 根据标段PMID,期数numpname,获取目前重做次数
  362. if ($IntMaxTimes > 0) {
  363. $inTimes = $IntMaxTimes;
  364. } else {
  365. $inTimes = 0;
  366. }
  367. $pmArray = $this->actmeasure->getRowByPmid($_POST['pmid']);
  368. try {
  369. if ($this->measureauditact->insertMeasureAudit($pmArray['pid'], $_POST['creatoruid'], $_POST['auditoruid'], 0, $_POST['pmid'], $pmArray['stid'], $_POST['numpname'], 'uncheck', 2, $inTimes) > 0) {
  370. echo json_encode(array('status' => TRUE, 'msg' => '', 'info' => ''), JSON_UNESCAPED_UNICODE);
  371. die();
  372. }
  373. } catch (PDOException $e) {// 判断异常类型,提示不同错误信息
  374. echo json_encode(array('status' => FALSE, 'msg' => '配置审核人错误'), JSON_UNESCAPED_UNICODE);
  375. }
  376. } else {
  377. echo json_encode(array('status' => FALSE, 'msg' => '配置审核人参数错误'), JSON_UNESCAPED_UNICODE);
  378. die();
  379. }
  380. }
  381. /**
  382. * 删除审核用户
  383. */
  384. function delAuditMeasure()
  385. {
  386. if (isset($this->params['userid']) && isset($this->params['tenderid']) && isset($this->params['phaseno'])) {
  387. // 判断当前标段期数审核状态,决定是否继续执行
  388. $IntMaxTimes = $this->measureauditact->getMaxTimesInt($this->params['tenderid'], $this->params['phaseno']); // 根据标段PMID,期数numpname,获取目前重做次数
  389. if ($IntMaxTimes > 0) {
  390. $inTimes = $IntMaxTimes;
  391. $intHasCount = $this->numofperact->hasTheTimesRow($this->params['tenderid'], $this->params['phaseno'], $inTimes);
  392. if (isset($intHasCount) && ($intHasCount > 0)) {
  393. echo json_encode(array('status' => FALSE, 'msg' => '此标段状态,禁止删除审核人员'), JSON_UNESCAPED_UNICODE);
  394. die();
  395. }
  396. } else {
  397. $inTimes = 0;
  398. }
  399. try {
  400. $this->measureauditact->delAuditUserTimes($this->params['tenderid'], $this->params['phaseno'], $this->params['userid'], $inTimes);
  401. echo json_encode(array('status' => TRUE, 'msg' => ''), JSON_UNESCAPED_UNICODE);
  402. die();
  403. } catch (PDOException $e) {// 判断异常类型,提示不同错误信息
  404. echo json_encode(array('status' => FALSE, 'msg' => '删除审核人错误'), JSON_UNESCAPED_UNICODE);
  405. }
  406. } else {
  407. echo json_encode(array('status' => FALSE, 'msg' => '删除审核人员参数错误'), JSON_UNESCAPED_UNICODE);
  408. die();
  409. }
  410. }
  411. // 查询状态变更为审核中,已审核中为查询依据
  412. function checkMeasureStatus()
  413. {
  414. if (isset($_POST['sectionid']) && isset($_POST['periodid'])) {
  415. $mpArray = $this->numofperact->getRow($_POST['sectionid'], $_POST['periodid']);
  416. $maArray = $this->measureauditact->getAlluserMeasureAudit($_POST['sectionid'], $_POST['periodid']);
  417. foreach ($maArray as $key => $value) {
  418. if ($value['mastatus'] == 'uncheck') {
  419. $mastatus = $this->statusArray[$value['mastatus']];
  420. }
  421. }
  422. if (isset($mpArray['mpid'])) {
  423. echo json_encode(array('status' => TRUE, 'msg' => '', 'isexist' => TRUE, 'checkstatus' => $mastatus), JSON_UNESCAPED_UNICODE);
  424. die();
  425. } else {
  426. echo json_encode(array('status' => TRUE, 'msg' => '', 'isexist' => FALSE), JSON_UNESCAPED_UNICODE);
  427. die();
  428. }
  429. } else {
  430. echo json_encode(array('status' => FALSE, 'msg' => '标段信息不正确'), JSON_UNESCAPED_UNICODE);
  431. die();
  432. }
  433. }
  434. // 根据用户查询参与的标段信息
  435. // 参数为1时,当提交的附件中有重做记录时,提取记录未经过排重处理,出现重复结果。
  436. // api/client/user/get/15/allproject 此接口也有同样问题
  437. function getAuditProject()
  438. {
  439. // TODO:可以通过SQL直接查询出来
  440. if (isset($_POST['audituid']) && isset($_POST['RequestType'])) {
  441. $downfileurl = NULL;
  442. /**
  443. * 只查询审核中状态的记录
  444. * 然后根据每天记录所在的标段、期数、创建人查询所有此次所有审核人记录、为了判断
  445. * 判断此用户是第几个审核的人
  446. * 直接提取状态为未审核、审核中的
  447. * 未审核(没有到该审核人)
  448. * 审核中(出现在第一个)
  449. * 上传审核时候先遍历所有审核提交文件的状态并设置为旧文件状态
  450. * 然后写入新审核的文件路径等信息
  451. * 审核同时上传审核文件并设置审核表的状态做更改
  452. *
  453. */
  454. if ($_POST['RequestType'] == 1) {
  455. /**
  456. * 功能描述:
  457. * 参数1功能为,取得与当前用户相关的待审核状态的所有进行中的标段期数、最新一次的记录
  458. * 根据用户ID查询编制人和审核人参与的正在进行中的项目,进行中的项目状态为uncheck,checking
  459. * 由于·uncheck状态不能准确反映出其他用户操作对所属标段操作产生的的状态{比如:其他用户操作标段状态为(未通过【打回重做】)}、要排除这种情况
  460. * 还有一种情况为编制人编制项目时,审核人列表已经添加审核人,但是项目没有提交,没有项目文件,此时应根据有没有项目文件进行过滤。
  461. *
  462. * ??此ID为编制人或者为审核人时
  463. */
  464. // 第一步:根据用户ID,查询此用户参与的所有标段{根据最大期数【由于期数是递进关系只获取最大值】、最大次数【由于次数是递进关系只获取最大值】作为条件参数进行查询记录}
  465. $mpArray = $this->measureauditact->getCheckedRowbyUID2($_POST['audituid']); // 通过pmid,numpname分组获取参与的记录
  466. if (isset($mpArray)) {
  467. $statusArray = array('uncheck', 'checking');
  468. foreach ($mpArray as $key => $value) {
  469. /**
  470. * 根据审核ID查询所在标段期数
  471. * 然后去附件表根据标段ID 期数 是否新标志字段去查询最新的文件
  472. * 项目名称 项目类型
  473. *
  474. *
  475. * 此处现在是以创建者ID和审核人ID做关联来做判断
  476. * 判断上一个人的审核状态来提取记录
  477. *
  478. * 变更为一个用户添加所有人
  479. *
  480. */
  481. // $maxtimes = $this->attfile->getMaxTimes2($value['pmid'], $value['numpname']);
  482. $numStatusArray = $this->numofperact->getRow($value['pmid'], $value['numpname'], $value['times']);
  483. if (in_array($numStatusArray['currstatus'], $statusArray)) {
  484. $newfileArray = $this->attfile->getNewLast($value['pmid'], $value['numpname'], $value['times']);
  485. if (isset($newfileArray['filepath'])) {
  486. $projectArray = $this->project->getRowByPid($newfileArray['pid']);
  487. $pmidArray = $this->actmeasure->getRowByPmid($value['pmid']);
  488. $stArray = $this->contractact->getRowByStid($newfileArray['stid']);
  489. // $auditArray = $this->measureauditact->getLastNewRowInfo($value['pmid'], $value['numpname'], $_POST['audituid']);
  490. $pathinfo = pathinfo($newfileArray['filepath']);
  491. $downfileurl[] = array('downurl' => Doo::conf()->APP_URL . $pathinfo ['dirname'] . '/' . $pathinfo ['filename'] . '/ProjectFile.rmf', 'proName' => $projectArray['pname'], 'stName' => $stArray['stname'], 'MD5_Jl' => $newfileArray['filehashcode'], 'tenderstatus' => $this->statusArray[$value['mastatus']], 'tenderid' => $value['pmid'], 'pnameid' => $projectArray['pid'], 'ptypeid' => $stArray['stid'], 'audituidstatus' => $this->statusArray[$value['mastatus']], 'bianzhirenuid' => $pmidArray['uid'], 'tenderName' => $pmidArray['pmname']);
  492. }
  493. }
  494. }
  495. echo json_encode(array('status' => TRUE, 'msg' => '', 'info' => $downfileurl), JSON_UNESCAPED_UNICODE);
  496. die();
  497. } else {
  498. echo json_encode(array('status' => FALSE, 'msg' => '暂时无审核信息'), JSON_UNESCAPED_UNICODE);
  499. die();
  500. }
  501. }
  502. if ($_POST['RequestType'] == 2) {
  503. /**
  504. * {
  505. * "downurl": "http://d.jl.smartcost.com.cn/data/2015/0608/20150608043245691/ProjectFile.rmf", 最新一期最新一次的文件
  506. * "proName": "巫溪县前进桥", 项目名称
  507. * "stName": "巫溪县 前进桥(终)", 合同段名称
  508. * "MD5_Jl": "7cf05dccc6ad45b2d78f476a3388c3b2", 最新一期最新一次的文件hash code
  509. * "tenderstatus": "2", 标段状态
  510. * "tenderid": "234", 标段ID
  511. * "pnameid": "79", 项目ID
  512. * "ptypeid": "96", 合同段ID
  513. * "audituidstatus": "2", 当前用户审核状态
  514. * "bianzhirenuid": "59", 编制人UID
  515. * "tenderName": "巫溪县 前进桥 终" 标段名称
  516. * }
  517. */
  518. // TODO::不同角色提取条件不同是否使用audituid 作为当前用户提取条件,容易产生冲突
  519. if (!isset($_POST['audituid']) || !($_POST['audituid'] > 0)) {
  520. echo json_encode(array('status' => FALSE, 'msg' => '返回指定用户参与的所有项目参数错误'), JSON_UNESCAPED_UNICODE);
  521. die();
  522. }
  523. // 三个角色数据合并返回
  524. // 返回最新一期的项目文件
  525. // 业主
  526. // 业主查询参与的项目时
  527. // TODO::业主是否参与审核?如果参与提取哪个参与者的审核状态?
  528. $userproArray = $this->project->getRowUid($_POST['audituid']);
  529. $newattArray = $retArray = $hashArray = NULL;
  530. foreach ($userproArray as $upk => $upv) {
  531. $attArray = $this->attfile->getPmidGroup($upv['pid']);
  532. $attaArray = NULL;
  533. foreach ($attArray as $akey => $avalue) {
  534. $attaArray[] = $this->attfile->getLastNumTimes($avalue['pmid']);
  535. }
  536. foreach ($attaArray as $attk => $attv) {
  537. $attfileArray = $this->contractact->getRowByStid($attv['stid']);
  538. $pmidArray = $this->actmeasure->getRowByPmid($attv['pmid']);
  539. $numArray = $this->numofperact->getRow($attv['pmid'], $attv['numpname'], $attv['times']);
  540. $auditArray = $this->measureauditact->getLastNewRowInfo($attv['pmid'], $attv['numpname'], $_POST['audituid']);
  541. $pathinfo = pathinfo($attv['filepath']);
  542. if (isset($pathinfo['dirname'])) {
  543. $retArray[] = array('downurl' => Doo::conf()->APP_URL . $pathinfo ['dirname'] . '/' . $pathinfo ['filename'] . '/ProjectFile.rmf', 'proName' => $upv['pname'], 'stName' => $attfileArray['stname'], 'MD5_Jl' => $attv['filehashcode'], 'tenderstatus' => $this->statusArray[$numArray['currstatus']], 'tenderid' => $attv['pmid'], 'pnameid' => $upv['pid'], 'ptypeid' => $attfileArray['stid'], 'audituidstatus' => $this->statusArray[$auditArray['mastatus']], 'bianzhirenuid' => $pmidArray['uid'], 'tenderName' => $pmidArray['pmname']);
  544. $hashArray[] = md5(Doo::conf()->APP_URL . $pathinfo ['dirname'] . '/' . $pathinfo ['filename'] . '/ProjectFile.rmf' . $upv['pname'] . $attfileArray['stname'] . $attv['filehashcode'] . $this->statusArray[$numArray['currstatus']] . $attv['pmid'] . $upv['pid'] . $attfileArray['stid'] . $this->statusArray[$auditArray['mastatus']] . $pmidArray['uid'] . $pmidArray['pmname']);
  545. }
  546. }
  547. }
  548. // 施工
  549. $measureArray = $this->actmeasure->getPmidRow($_POST['audituid']);
  550. if (isset($measureArray) && $measureArray) {
  551. $attfileArray = $stidArray = NULL;
  552. foreach ($measureArray as $key => $value) {
  553. $proArray = $this->project->getRowByPid($value['pid']);
  554. $conArray = $this->contractact->getRowByStid($value['stid']);
  555. $attfileArray = $this->attfile->getLastNewProfile2($value['pmid']);
  556. $pmidArray = $this->actmeasure->getRowByPmid($value['pmid']);
  557. $statusArray = $this->numofperact->getMaxRowStatus($attfileArray['pmid'], $attfileArray['numpname']);
  558. $auditArray = $this->measureauditact->getLastNewRowInfo($attfileArray['pmid'], $attfileArray['numpname'], $_POST['audituid']);
  559. $pathinfo = pathinfo($attfileArray['filepath']);
  560. if (!$auditArray['mastatus'])
  561. $auditStr = 'uncheck';
  562. if (isset($pathinfo['dirname'])) {
  563. $hashstr = md5(Doo::conf()->APP_URL . $pathinfo ['dirname'] . '/' . $pathinfo ['filename'] . '/ProjectFile.rmf' . $proArray['pname'] . $conArray['stname'] . $attfileArray['filehashcode'] . $this->statusArray[$statusArray['currstatus']] . $value['pmid'] . $proArray['pid'] . $conArray['stid'] . $this->statusArray[$auditStr] . $pmidArray['uid'] . $pmidArray['pmname']);
  564. if (!in_array($hashstr, $hashArray)) {
  565. $retArray[] = array('downurl' => Doo::conf()->APP_URL . $pathinfo ['dirname'] . '/' . $pathinfo ['filename'] . '/ProjectFile.rmf', 'proName' => $proArray['pname'], 'stName' => $conArray['stname'], 'MD5_Jl' => $attfileArray['filehashcode'], 'tenderstatus' => $this->statusArray[$statusArray['currstatus']], 'tenderid' => $value['pmid'], 'pnameid' => $proArray['pid'], 'ptypeid' => $conArray['stid'], 'audituidstatus' => $this->statusArray[$auditStr], 'bianzhirenuid' => $pmidArray['uid'], 'tenderName' => $pmidArray['pmname']);
  566. $hashArray[] = $hashstr;
  567. }
  568. }
  569. }
  570. }
  571. // 审批 是否只提取最新一期?
  572. $pmidGroupArray = $this->measureauditact->getPmidGroup($_POST['audituid']);
  573. /**
  574. * 从审核人列表中提取记录时,如果项目进行到新开一次或者一期数据,但是上报人并未上报数据,(犹豫逻辑上机制导致,先创建审批人再通过上报人上报数据才能产生新一期)
  575. * 这时,上报人查询到的数据就为空。
  576. * 如果没有最新一次上报数据(可否提取2期上报数据?即便是能下载也不能打开,因为上一期数据的审批人数或者状态,可能与最新一期的审批人状态不同,然后软件报错)
  577. */
  578. $retval = null;
  579. foreach ($pmidGroupArray as $gkey => $gvalue) {
  580. $retval[] = $this->measureauditact->getLastNumTimes($gvalue['pmid'], $_POST['audituid']);
  581. }
  582. foreach ($retval as $spkey => $spvalue) {
  583. $pathinfo = null;
  584. $proArray = $this->project->getRowByPid($spvalue['pid']);
  585. $conArray = $this->contractact->getRowByStid($spvalue['stid']);
  586. $pmidArray = $this->actmeasure->getRowByPmid($spvalue['pmid']);
  587. /**
  588. * 两种情况 一种情况是 新建一期 还有一种是审核未通过重做 这两种未提交
  589. */
  590. $intNum = $this->numofperact->getCountNumpname($spvalue['pmid'], $spvalue['numpname']);
  591. // 如果期数是第一期期数必须大于一,否则减一为无效数据 ,为0表示这期为做上报没有产生记录
  592. if (($spvalue['numpname'] > 1) && ($intNum == 0)) {// 提取上一期的数据
  593. // 提取期数减一
  594. $intLastTimes = $this->numofperact->getMaxTimes($spvalue['pmid'], $spvalue['numpname'] - 1)['times'];
  595. $numstatusArray = $this->numofperact->getRow($spvalue['pmid'], $spvalue['numpname'] - 1, $intLastTimes); //获取上一期最新一次的状态
  596. } else {
  597. $intTimes = $this->numofperact->getCountTimes($spvalue['pmid'], $spvalue['numpname'], $spvalue['times']);
  598. if (($intTimes == '0') && $spvalue['times'] > 0) {
  599. $numstatusArray = $this->numofperact->getRow($spvalue['pmid'], $spvalue['numpname'], $spvalue['times'] - 1);
  600. } else {// 当创建第一次的时候也会为空,所以下方加了判断
  601. $numstatusArray = $this->numofperact->getRow($spvalue['pmid'], $spvalue['numpname'], $spvalue['times']);
  602. }
  603. }
  604. $afArray = $this->attfile->getLastNewProfile2($spvalue['pmid']); // 由于始终提取最新一期所以不用放入判断情况中
  605. $auditArray = $this->measureauditact->getLastNewRowInfo($spvalue['pmid'], $spvalue['numpname'], $_POST['audituid']);
  606. $pathinfo = pathinfo($afArray['filepath']);
  607. if ($numstatusArray && $auditArray) { // 如果重做审核人有变更,根据审核状态判断是否存在该审核人,不存在则不显示此条记录
  608. $hashstr = md5(Doo::conf()->APP_URL . $pathinfo ['dirname'] . '/' . $pathinfo ['filename'] . '/ProjectFile.rmf' . $proArray['pname'] . $conArray['stname'] . $afArray['filehashcode'] . $this->statusArray[$numstatusArray['currstatus']] . $spvalue['pmid'] . $proArray['pid'] . $conArray['stid'] . $this->statusArray[$auditArray['mastatus']] . $pmidArray['uid'] . $pmidArray['pmname']);
  609. if (!in_array($hashstr, $hashArray)) {
  610. $retArray[] = array('downurl' => Doo::conf()->APP_URL . $pathinfo ['dirname'] . '/' . $pathinfo ['filename'] . '/ProjectFile.rmf', 'proName' => $proArray['pname'], 'stName' => $conArray['stname'], 'MD5_Jl' => $afArray['filehashcode'], 'tenderstatus' => $this->statusArray[$numstatusArray['currstatus']], 'tenderid' => $spvalue['pmid'], 'pnameid' => $proArray['pid'], 'ptypeid' => $conArray['stid'], 'audituidstatus' => $this->statusArray[$auditArray['mastatus']], 'bianzhirenuid' => $pmidArray['uid'], 'tenderName' => $pmidArray['pmname']);
  611. $hashArray[] = $hashstr;
  612. }
  613. }
  614. }
  615. // $dd = NULL;
  616. // if (isset($retArray))
  617. // $dd = $this->array_unique_fb($retArray);
  618. echo json_encode(array('status' => TRUE, 'msg' => '', 'info' => $retArray), JSON_UNESCAPED_UNICODE);
  619. }
  620. }
  621. }
  622. //二维数组去掉重复值 并保留键值
  623. function array_unique_fb($array2D)
  624. {
  625. $key = array();
  626. foreach ($array2D as $k => $v) {
  627. if (empty($key))
  628. $key = array_keys($v); //记录数组的KEY
  629. $v = join(",", $v); //降维,也可以用implode,将一维数组转换为用逗号连接的字符串
  630. $temp[$k] = $v;
  631. }
  632. $temp = array_unique($temp); //去掉重复的字符串,也就是重复的一维数组
  633. foreach ($temp as $k => $v) {
  634. $array = explode(",", $v); //再将拆开的数组重新组装
  635. foreach ($array as $i => $t) {
  636. $temp2[$k] = !empty($temp2[$k]) ? array_merge($temp2[$k], array("{$key[$i]}" => $t)) : array("{$key[$i]}" => $t); //依次添加到新的数组中去
  637. }
  638. }
  639. return $temp2;
  640. }
  641. function unique_arr($array2D, $stkeep = false, $ndformat = true)
  642. {
  643. // 判断是否保留一级数组键 (一级数组键可以为非数字)
  644. if ($stkeep)
  645. $stArr = array_keys($array2D);
  646. // 判断是否保留二级数组键 (所有二级数组键必须相同)
  647. if ($ndformat)
  648. $ndArr = array_keys(end($array2D));
  649. //降维,也可以用implode,将一维数组转换为用逗号连接的字符串
  650. foreach ($array2D as $v) {
  651. $v = join(",", $v);
  652. $temp[] = $v;
  653. }
  654. //去掉重复的字符串,也就是重复的一维数组
  655. $temp = array_unique($temp);
  656. //再将拆开的数组重新组装
  657. foreach ($temp as $k => $v) {
  658. if ($stkeep)
  659. $k = $stArr[$k];
  660. if ($ndformat) {
  661. $tempArr = explode(",", $v);
  662. foreach ($tempArr as $ndkey => $ndval) {
  663. $output[$k][$ndArr[$ndkey]] = $ndval;
  664. }
  665. } else {
  666. $output[$k] = explode(",", $v);
  667. }
  668. }
  669. return $output;
  670. }
  671. // 标段期审核接口
  672. function auditMeasure()
  673. {
  674. if (isset($_POST['userid']) && isset($_POST['tenderid']) && isset($_POST['phaseno']) && isset($_POST['MD5_JL']) && isset($_POST['MD5_Zip'])) {
  675. $auditcontent = iconv('GBK', 'UTF-8', $_POST['CheckerMemo']);
  676. $auditArray = $this->measureauditact->getLastNewRowInfo($_POST['tenderid'], $_POST['phaseno'], $_POST['userid']);
  677. if (isset($auditArray ['mastatus']) && ($auditArray ['mastatus'] == 'checked') || ($auditArray ['mastatus'] == 'checkno')) {
  678. echo json_encode(array('status' => FALSE, 'msg' => '已审核完毕,请勿重复提交'), JSON_UNESCAPED_UNICODE);
  679. die();
  680. }
  681. $auditUserArray = $this->measureauditact->getUserAuditLast($_POST['tenderid'], $_POST['phaseno']);
  682. $fp = $this->upfile('upfile');
  683. if (isset($fp[0]['filepath'])) {
  684. $localmd5HashString = hash_file("md5", Doo::conf()->SITE_PATH . $fp[0]['filepath']);
  685. if ($localmd5HashString != trim($_POST['MD5_Zip'])) {
  686. $status = array('status' => 'FALSE', 'msg' => '审核期数数据上传失败,请重新上传');
  687. echo json_encode($status, JSON_UNESCAPED_UNICODE);
  688. die();
  689. }
  690. $res = $this->zip->open(Doo::conf()->SITE_PATH . $fp[0]['filepath']);
  691. $extPath = pathinfo($fp[0]['filepath']);
  692. $extPathdir = Doo::conf()->SITE_PATH . $extPath ['dirname'] . '/' . $extPath['filename'];
  693. if ($res === TRUE) {
  694. if (!$this->dir_create($extPathdir)) {
  695. return FALSE;
  696. }
  697. $this->zip->extractTo($extPathdir);
  698. $this->zip->close();
  699. }
  700. // 更新五项最新数据
  701. $countArray = json_decode(file_get_contents($extPathdir . '/' . 'JsonFile_Common.json'), TRUE, JSON_UNESCAPED_UNICODE);
  702. if (!isset($countArray)) {
  703. $status = array('status' => FALSE, 'msg' => '期数汇总数据上传失败');
  704. echo json_encode($status, JSON_UNESCAPED_UNICODE);
  705. die();
  706. }
  707. $iniTimes = 0;
  708. $intMaxTimes = $this->numofperact->getMaxTimes($_POST['tenderid'], $_POST['phaseno']);
  709. if (isset($intMaxTimes['times']) && ($intMaxTimes['times'] > 0)) {
  710. $iniTimes = $intMaxTimes['times'];
  711. }
  712. $this->actmeasure->updateCon($_POST['tenderid'], $countArray['TotalPrice']);
  713. $this->numofperact->updateNumofper($_POST['tenderid'], $_POST['phaseno'], $countArray, $iniTimes);
  714. $numArray = $this->numofperact->getRow($_POST['tenderid'], $_POST['phaseno'], $iniTimes);
  715. if (isset($auditArray['pid'])) {
  716. // 插入附件表之前要更新所有次标段期数的提交的数据状态为旧标志
  717. $this->attfile->setOldfileFlag($_POST['tenderid'], $_POST['phaseno'], $iniTimes);
  718. // 插入此次提交的文件路径数据并设置为新状态
  719. // 写入此时是第几次重做
  720. $this->attfile->insertFile($auditArray['pid'], $auditArray['stid'], $numArray['mpid'], $_POST['tenderid'], $_POST['phaseno'], $_POST['userid'], $fp[0]['filepath'], 0, $_POST['MD5_JL'], $iniTimes);
  721. // 更新审核表审核人的标段期数审核状态
  722. if ($this->measureauditact->setStatusTo($auditArray['maid'], 3, $auditcontent)) {
  723. // 更新下一个人的状态
  724. $countAudit = count($auditUserArray);
  725. if ($auditArray['last'] == '1') {
  726. $this->measureauditact->setStatusTo($auditUserArray[0]['maid'], 3);
  727. $this->numofperact->updateAuditStatus($_POST['tenderid'], $_POST['phaseno'], 'checked', $iniTimes);
  728. echo json_encode(array('status' => TRUE, 'msg' => ''), JSON_UNESCAPED_UNICODE);
  729. die();
  730. } else {
  731. if (($countAudit == 2) && ($auditUserArray[0]['last'] == 1) && ($auditUserArray[1]['maid'] == $auditArray['maid'])) {
  732. $this->measureauditact->updateMastatus($auditUserArray[0]['maid']);
  733. $this->numofperact->updateAuditStatus($_POST['tenderid'], $_POST['phaseno'], 'checking', $iniTimes);
  734. echo json_encode(array('status' => TRUE, 'msg' => ''), JSON_UNESCAPED_UNICODE);
  735. die();
  736. }
  737. if (($countAudit > 2)) {
  738. foreach ($auditUserArray as $k => $v) {
  739. if ($v['maid'] == $auditArray['maid']) {
  740. if ($k == ($countAudit - 1)) {//如果是最后一个
  741. $this->measureauditact->updateMastatus($auditUserArray[0]['maid']);
  742. } else {
  743. $this->measureauditact->updateMastatus($auditUserArray[$k + 1]['maid']);
  744. }
  745. $this->numofperact->updateAuditStatus($_POST['tenderid'], $_POST['phaseno'], 'checking', $iniTimes);
  746. echo json_encode(array('status' => TRUE, 'msg' => ''), JSON_UNESCAPED_UNICODE);
  747. die();
  748. }
  749. }
  750. // 我是第几个审核的
  751. // 如果是最后一个就把业主审核状态更改为审核中
  752. // 如果是第一个就把后一个设置为审核中
  753. }
  754. }
  755. } else {
  756. echo json_encode(array('status' => FALSE, 'msg' => '审核文件提交失败1'), JSON_UNESCAPED_UNICODE);
  757. die();
  758. }
  759. }
  760. } else {
  761. echo json_encode(array('status' => FALSE, 'msg' => '审核文件提交失败'), JSON_UNESCAPED_UNICODE);
  762. die();
  763. }
  764. } else {
  765. echo json_encode(array('status' => FALSE, 'msg' => '审核参数错误'), JSON_UNESCAPED_UNICODE);
  766. die();
  767. }
  768. }
  769. /**
  770. * 根据标段ID查询是否需要更新
  771. */
  772. function checkTenderUpdate()
  773. {
  774. if (isset($this->params ['tenderid']) && $this->params['tenderid']) {
  775. $updateArray = $this->attfile->getFileUpdate($this->params['tenderid']);
  776. $projectArray = $this->project->getRowByPid($updateArray['pid']);
  777. $stArray = $this->contractact->getRowByStid($updateArray['stid']);
  778. $MeasureArray = $this->actmeasure->getRowByPmid($this->params['tenderid']);
  779. if (isset($updateArray['filepath'])) {
  780. $pathinfo = pathinfo($updateArray['filepath']);
  781. $downfileurl[] = array('downurl' => Doo::conf()->APP_URL . $pathinfo ['dirname'] . '/' . $pathinfo ['filename'] . '/ProjectFile.rmf', 'MD5_Jl' => $updateArray['filehashcode'], 'proName' => $projectArray['pname'], 'stName' => $stArray['stname'], 'pnameid' => $projectArray['pid'], 'ptypeid' => $stArray['stid'], 'BidName' => $MeasureArray['pmname']);
  782. echo json_encode(array('status' => TRUE, 'msg' => '', 'info' => $downfileurl), JSON_UNESCAPED_UNICODE);
  783. die();
  784. } else {
  785. echo json_encode(array('status' => TRUE, 'msg' => '暂无更新数据'), JSON_UNESCAPED_UNICODE);
  786. die();
  787. }
  788. } else {
  789. echo json_encode(array('status' => FALSE, 'msg' => '更新查询参数错误'), JSON_UNESCAPED_UNICODE);
  790. die();
  791. }
  792. }
  793. /**
  794. * 手动创建第二期的审核人
  795. */
  796. function creatTenderNumPnameUser()
  797. {
  798. if (isset($_POST['tenderid']) && isset($_POST['phaseno']) && ($_POST['phaseno'] > 1)) {
  799. $allMeasureUser = $this->measureauditact->getUserAudit($_POST['tenderid'], $_POST['phaseno'] - 1);
  800. if (isset($allMeasureUser)) {
  801. foreach ($allMeasureUser as $key => $value) {
  802. // if ($key == 1) {
  803. // $status = 'checking';
  804. // } else {
  805. $status = 'uncheck';
  806. // }
  807. try {
  808. $this->measureauditact->insertMeasureAudit($value['pid'], $value['creatoruid'], $value['auditoruid'], $value['mpid'], $value['pmid'], $value['stid'], $_POST['phaseno'], $status, $value['last']);
  809. } catch (Exception $exc) {
  810. }
  811. }
  812. echo json_encode(array('status' => TRUE, 'msg' => ''), JSON_UNESCAPED_UNICODE);
  813. die();
  814. } else {
  815. echo json_encode(array('status' => FALSE, 'msg' => '审核人员列表不存在'), JSON_UNESCAPED_UNICODE);
  816. die();
  817. }
  818. } else {
  819. echo json_encode(array('status' => FALSE, 'msg' => '创建审核人员列表参数错误'), JSON_UNESCAPED_UNICODE);
  820. die();
  821. }
  822. }
  823. /**
  824. * 返回指定用户参与的所有项目
  825. */
  826. function getUserALLProject()
  827. {
  828. if (!isset($this->params['userid']) || !($this->params['userid'] > 0)) {
  829. echo json_encode(array('status' => FALSE, 'msg' => '返回指定用户参与的所有项目参数错误'), JSON_UNESCAPED_UNICODE);
  830. die();
  831. }
  832. $conArray = $this->contractact->getUserRow($this->params['userid']);
  833. if (isset($conArray) && $conArray) {
  834. foreach ($conArray as $key => $value) {
  835. $proArray = $this->project->getRowByPid($value['pid']);
  836. $attfileArray = $this->attfile->getLastData($value['stid']);
  837. foreach ($attfileArray as $k => $v) {
  838. $pathinfo = pathinfo($v['filepath']);
  839. $retArray[] = array('downurl' => Doo::conf()->APP_URL . $pathinfo ['dirname'] . '/' . $pathinfo ['filename'] . '/ProjectFile.rmf', 'proName' => $proArray['pname'], 'stName' => $value['stname'], 'MD5_Jl' => $v['filehashcode']);
  840. }
  841. }
  842. echo json_encode(array('status' => TRUE, 'msg' => '', 'info' => $retArray), JSON_UNESCAPED_UNICODE);
  843. die();
  844. } else {
  845. $userproArray = $this->measureauditact->getProject($this->params['userid']);
  846. if (isset($userproArray) && $userproArray) {
  847. foreach ($userproArray as $upk => $upv) {
  848. $attArray = $this->attfile->getMeasureLastNew($upv['pmid'], $upv['numpname']);
  849. $proArray = $this->project->getRowByPid($attArray['pid']);
  850. $attfileArray = $this->contractact->getRowByStid($attArray['stid']);
  851. $pathinfo = pathinfo($attArray['filepath']);
  852. if (isset($pathinfo['dirname']))
  853. $newattArray[] = array('downurl' => Doo::conf()->APP_URL . $pathinfo ['dirname'] . '/' . $pathinfo ['filename'] . '/ProjectFile.rmf', 'proName' => $proArray['pname'], 'stName' => $attfileArray['stname'], 'MD5_Jl' => $attArray['filehashcode']);
  854. }
  855. echo json_encode(array('status' => TRUE, 'msg' => '', 'info' => $newattArray), JSON_UNESCAPED_UNICODE);
  856. die();
  857. }
  858. }
  859. }
  860. /**
  861. * 设置审核未通过操作
  862. * 第一步设置未通过操作,操作相关期数。 同步状态。
  863. * 第二步设置项目查询接口未通过审核的查询返回未锁定的
  864. * 第三步前台相关状态更新
  865. *
  866. * TODO: 更新附件标志位未加入次数标志做更新 ok
  867. * TODO: 不通过两次未通过时候操作期数状态为错误位同步状态位 ok
  868. * TODO: MPID未通过操作不争取 ok
  869. */
  870. function setCheckno()
  871. {
  872. if (isset($this->params['userid']) && isset($this->params['tenderid']) && isset($this->params['phaseno']) && isset($_POST['MD5_JL']) && isset($_POST['MD5_Zip'])) {
  873. $auditcontent = iconv('GBK', 'UTF-8', $_POST['CheckerMemo']);
  874. $auditArray = $this->measureauditact->getRowInfo($this->params['tenderid'], $this->params['phaseno'], $this->params['userid']);
  875. if (isset($auditArray['maid'])) {
  876. $intMaxTimes = $this->numofperact->getMaxTimes($this->params['tenderid'], $this->params['phaseno']);
  877. if (isset($intMaxTimes['times'])) {
  878. $iniTimes = $intMaxTimes['times'];
  879. }
  880. $this->measureauditact->setCheckno($auditArray['maid'], $auditcontent);
  881. $this->numofperact->updateAuditStatus($this->params['tenderid'], $this->params['phaseno'], 'checkno', $iniTimes);
  882. $fp = $this->upfile('upfile');
  883. if (isset($fp[0]['filepath'])) {
  884. // 解压缩文件等待以后直接使用
  885. // TODO:根据校验码校验包的完整性
  886. $localmd5HashString = hash_file("md5", Doo::conf()->SITE_PATH . $fp[0]['filepath']);
  887. if ($localmd5HashString != trim($_POST['MD5_Zip'])) {
  888. $status = array('status' => 'FALSE', 'msg' => '未通过期数数据上传失败,请重新上传');
  889. echo json_encode($status, JSON_UNESCAPED_UNICODE);
  890. die();
  891. }
  892. $res = $this->zip->open(Doo::conf()->SITE_PATH . $fp[0]['filepath']);
  893. $extPath = pathinfo($fp[0]['filepath']);
  894. $extPathdir = Doo::conf()->SITE_PATH . $extPath ['dirname'] . '/' . $extPath['filename'];
  895. if ($res === TRUE) {
  896. if (!$this->dir_create($extPathdir)) {
  897. return FALSE;
  898. }
  899. $this->zip->extractTo($extPathdir);
  900. $this->zip->close();
  901. }
  902. $numArray = $this->numofperact->getRow($this->params['tenderid'], $this->params['phaseno'], $iniTimes);
  903. // 插入附件表之前要更新所有次标段期数的提交的数据状态为旧标志
  904. $this->attfile->setOldfileFlag($this->params['tenderid'], $this->params['phaseno'], $iniTimes);
  905. // 插入此次提交的文件路径数据并设置为新状态
  906. $this->attfile->insertFile($auditArray['pid'], $auditArray['stid'], $auditArray['mpid'], $this->params['tenderid'], $this->params['phaseno'], $this->params['userid'], $fp[0]['filepath'], 0, $_POST['MD5_JL'], $iniTimes);
  907. echo json_encode(array('status' => TRUE, 'msg' => ''), JSON_UNESCAPED_UNICODE);
  908. die();
  909. } else {
  910. echo json_encode(array('status' => FALSE, 'msg' => '文件上传故障'), JSON_UNESCAPED_UNICODE);
  911. die();
  912. }
  913. } else {
  914. echo json_encode(array('status' => FALSE, 'msg' => '审核期数不存在'), JSON_UNESCAPED_UNICODE);
  915. die();
  916. }
  917. } else {
  918. echo json_encode(array('status' => FALSE, 'msg' => '审核未通过参数错误'), JSON_UNESCAPED_UNICODE);
  919. die();
  920. }
  921. }
  922. /**
  923. * 创建未通过的新一期
  924. *
  925. */
  926. function createNewAudit()
  927. {
  928. // 插入上次期数相关审核人员
  929. // TODO:
  930. // error_log(var_export($this->params, TRUE), 3, '/opt/html/jiliang_customedProduct/data/' . time());
  931. // die;
  932. if (isset($this->params['tenderid']) && isset($this->params['phaseno'])) {
  933. $auditArray = $this->numofperact->getChecknoRow($this->params['tenderid'], $this->params['phaseno']);
  934. if (isset($auditArray['currstatus']) && ($auditArray['currstatus'] == 'checkno')) {
  935. $isCreate = false;
  936. $auditUserArray = $this->measureauditact->getUserAuditLast($this->params['tenderid'], $this->params['phaseno']);
  937. foreach ($auditUserArray as $key => $value) {
  938. if ($value['mastatus'] != 'uncheck') {
  939. $isCreate = true;
  940. }
  941. }
  942. if ($auditUserArray && $isCreate) {
  943. foreach ($auditUserArray as $key => $value) {
  944. $this->measureauditact->insertMeasureAudit($value['pid'], $value['creatoruid'], $value['auditoruid'], $value['mpid'], $value['pmid'], $value['stid'], $value['numpname'], $status = 'uncheck', $value['last'], $auditArray['times'] + 1);
  945. }
  946. } else {
  947. echo json_encode(array('status' => FALSE, 'msg' => '无效操作重复创建审批人'), JSON_UNESCAPED_UNICODE);
  948. die();
  949. }
  950. // $timesArray = $this->numofperact->getMaxTimes($this->params['tenderid'], $this->params['phaseno']);
  951. $urlinfoArray = $this->attfile->getLastNewProfileUnlock2($this->params['tenderid'], $this->params['phaseno']);
  952. $proArray = $this->project->getRowByPid($urlinfoArray['pid']);
  953. $stArray = $this->contractact->getRowByStid($urlinfoArray['stid']);
  954. $MeasureArray = $this->actmeasure->getRowByPmid($this->params['tenderid']);
  955. $downArray = NULL;
  956. $pathinfo = pathinfo($urlinfoArray['filepath']);
  957. if (isset($pathinfo['dirname']))
  958. $downArray[] = array('downurl' => Doo::conf()->APP_URL . $pathinfo['dirname'] . '/' . $pathinfo['filename'] . '/ProjectFile.rmf', 'MD5_Jl' => $urlinfoArray['filehashcode'], 'proName' => $proArray['pname'], 'stName' => $stArray['stname'], 'pnameid' => $proArray['pid'], 'ptypeid' => $stArray['stid'], 'BidName' => $MeasureArray['pmname']);
  959. echo json_encode(array('status' => TRUE, 'msg' => '', 'info' => $downArray), JSON_UNESCAPED_UNICODE);
  960. die();
  961. } else {
  962. echo json_encode(array('status' => FALSE, 'msg' => '审核状态无效'), JSON_UNESCAPED_UNICODE);
  963. die();
  964. }
  965. } else {
  966. echo json_encode(array('status' => FALSE, 'msg' => '创建未通过的新一期参数错误'), JSON_UNESCAPED_UNICODE);
  967. die();
  968. }
  969. }
  970. public function getUserInfo()
  971. {
  972. if (isset($this->params['userid']) && ($this->params['userid'] > 0)) {
  973. $proArray = $this->profile->getProWithUid($this->params['userid']);
  974. if (isset($proArray['userid'])) {
  975. $strAvatar = $this->auth->getAvatar($proArray['userid']);
  976. echo json_encode(array('status' => 'TRUE', 'msg' => '', 'info' => array('avatar' => $strAvatar, 'name' => $proArray['name'], 'jobs' => $proArray['jobs'], 'company' => $proArray['company'])), JSON_UNESCAPED_UNICODE);
  977. die();
  978. } else {
  979. echo json_encode(array('status' => 'FALSE', 'msg' => '此用户不存在'), JSON_UNESCAPED_UNICODE);
  980. die();
  981. }
  982. } else {
  983. echo json_encode(array('status' => 'FALSE', 'msg' => '用户查询参数无效'), JSON_UNESCAPED_UNICODE);
  984. die();
  985. }
  986. }
  987. public function updateTenderName()
  988. {
  989. if (isset($this->params['BidID']) && isset($this->params['BidNewName'])) {
  990. if ($this->actmeasure->updateName($this->params['BidID'], iconv('GBK', 'UTF-8', $this->params['BidNewName']))) {
  991. echo json_encode(array('status' => 'TRUE', 'msg' => ''), JSON_UNESCAPED_UNICODE);
  992. die();
  993. } else {
  994. echo json_encode(array('status' => 'FALSE', 'msg' => '标段名称更新错误'), JSON_UNESCAPED_UNICODE);
  995. die();
  996. }
  997. } else {
  998. echo json_encode(array('status' => 'FALSE', 'msg' => '标段名称更新参数无效'), JSON_UNESCAPED_UNICODE);
  999. die();
  1000. }
  1001. }
  1002. /**
  1003. * 清单附件上传,单文件上传
  1004. * @param int $tenderid 标段ID
  1005. * @param int $uid 上传人ID
  1006. * @param int $itemid 本地清单ID
  1007. */
  1008. public function uploadItemFile()
  1009. {
  1010. if (isset($this->params['tenderid']) && isset($this->params['uid'])) {
  1011. if (!isset($_FILES['upitem']) && !isset($_POST['itemid']) && !isset($_POST['Category'])) {
  1012. $this->msg(0, '上传参数错误');
  1013. }
  1014. $fileArray = $this->upItemFile('upitem')[0];
  1015. if (isset($fileArray['filepath'])) {
  1016. $memoStr = iconv('GBK', 'UTF-8', $_POST['Memo']);
  1017. $fnArray = explode('.', $fileArray['filename']);
  1018. $filenameStr = iconv('GBK', 'UTF-8', $fnArray[0]);
  1019. $postArray = array('mpid' => $this->params['tenderid'], 'ownerid' => $this->params['uid'], 'itemid' => $_POST['itemid'], 'filename' => $filenameStr, 'filesize' => $fileArray['filesize'], 'fileext' => $fileArray['fileext'], 'filepath' => $fileArray['filepath'], 'categoryid' => array_search($_POST['Category'], $this->fileTypeArray), 'tips' => $memoStr);
  1020. if ($this->itemfile->insertItemFileRecord($postArray) > 1) {
  1021. $extPath = pathinfo($fileArray['filepath']);
  1022. $itemArray = array('onlineFileName' => $extPath['filename'] . '.' . $extPath['extension']);
  1023. $status = array('status' => TRUE, 'msg' => '', 'iteminfo' => $itemArray);
  1024. echo json_encode($status, JSON_UNESCAPED_UNICODE);
  1025. die();
  1026. }
  1027. } else {
  1028. $this->msg(0, '附件上传失败,请重新上传');
  1029. }
  1030. } else {
  1031. $this->msg(0, '上传参数错误');
  1032. }
  1033. }
  1034. /**
  1035. * 获得清单附件列表
  1036. */
  1037. public function getItemFileList()
  1038. {
  1039. if (isset($this->params['tenderid'])) {
  1040. $itemfileArray = $this->itemfile->getItemFileList($this->params['tenderid']);
  1041. $key = array_search(max($itemfileArray), $itemfileArray);
  1042. if ($key >= 0) {
  1043. foreach ($itemfileArray as $value) {
  1044. $profileArray = $this->profile->getProWithUid($value['ownerid']);
  1045. $downArray[] = array('downurl' => Doo::conf()->APP_URL . $value['filepath'], 'filename' => $value['filename'] . '.' . $value['fileext'], 'fileext' => $value['fileext'], 'ownerName' => $profileArray['name'], 'itemid' => $value['itemid'], 'Category' => $this->fileTypeArray[$value['categoryid']], 'Memo' => $value['tips'], 'ownerid' => $value['ownerid'], 'uptime' => date('Y-m-d H:i', $value['intime']), 'fileid' => $value['iaid']);
  1046. }
  1047. echo json_encode(array('status' => TRUE, 'msg' => '', 'info' => $downArray), JSON_UNESCAPED_UNICODE);
  1048. die();
  1049. }
  1050. } else {
  1051. $this->msg(0, '获取附件列表参数错误');
  1052. }
  1053. }
  1054. /**
  1055. * 编辑清单附件描述 文件名?
  1056. */
  1057. public function updateItemFileDesc()
  1058. {
  1059. if (isset($this->params['fileid']) && isset($_POST['FileName']) && isset($_POST['Memo'])) {
  1060. if ($this->itemfile->updateItemFields($this->params['fileid'], $_POST['FileName'], $_POST['Memo']) > 0) {
  1061. echo json_encode(array('status' => 'TRUE', 'msg' => ''), JSON_UNESCAPED_UNICODE);
  1062. die();
  1063. } else {
  1064. echo json_encode(array('status' => 'FALSE', 'msg' => '附件更新接口参数错误'), JSON_UNESCAPED_UNICODE);
  1065. die();
  1066. }
  1067. } else {
  1068. $this->msg(0, '附件更新接口参数错误');
  1069. }
  1070. }
  1071. /**
  1072. * 查询指定项目的指定期的全部审核意见。
  1073. * 标段ID,期号
  1074. */
  1075. public function getAuditOpinion()
  1076. {
  1077. if (isset($this->params['tenderid']) && isset($this->params['phaseno'])) {
  1078. $retval = $this->measureauditact->getAuditOpinion($this->params['tenderid'], $this->params['phaseno']);
  1079. $iterator = new ArrayIterator($retval);
  1080. if (iterator_count($iterator) > 0) {
  1081. foreach ($retval as $value) {
  1082. $proArray = $this->profile->getProWithUid($value['auditoruid']);
  1083. $uArray[] = array('realname' => $proArray['name'], 'jobs' => $proArray['jobs'], 'acontent' => $value['auditcontent']);
  1084. }
  1085. echo json_encode(array('status' => TRUE, 'msg' => '', 'info' => $uArray), JSON_UNESCAPED_UNICODE);
  1086. die();
  1087. } else {
  1088. echo json_encode(array('status' => 'FALSE', 'msg' => '查询指定项目的指定期的全部审核意见参数错误'), JSON_UNESCAPED_UNICODE);
  1089. die();
  1090. }
  1091. } else {
  1092. $this->msg(0, '查询指定项目的指定期的全部审核意见接口参数错误');
  1093. }
  1094. }
  1095. function upfile($fildname, $param = 'doc, docx, xls, xlsx, png, zip')
  1096. {
  1097. return $this->att->uploadMut($fildname, $param);
  1098. }
  1099. function upItemFile($fildname, $param = 'doc, docx, xls, xlsx, png, zip')
  1100. {
  1101. $this->att->setUploadDir();
  1102. return $this->att->uploadMut($fildname, $param);
  1103. }
  1104. /**
  1105. * 根据标段ID获取标段是否已经被删除的提示
  1106. * 标段ID
  1107. */
  1108. public function getCountPmid()
  1109. {
  1110. if (isset($this->params['tenderid'])) {
  1111. $isexist = $this->actmeasure->getCountPmid($this->params['tenderid']);
  1112. if ($isexist > 0) {
  1113. echo json_encode(array('status' => TRUE, 'msg' => '', 'info' => null), JSON_UNESCAPED_UNICODE);
  1114. die();
  1115. } else {
  1116. echo json_encode(array('status' => 'FALSE', 'msg' => '该项目[XXX]在云端已被删除,点击“确定”后,可手动删除该项目'), JSON_UNESCAPED_UNICODE);
  1117. die();
  1118. }
  1119. } else {
  1120. $this->msg(0, '获取标段是否存在参数错误');
  1121. }
  1122. }
  1123. function getFileupErrorNo()
  1124. {
  1125. return $this->att->error();
  1126. }
  1127. function Signout()
  1128. {
  1129. session_destroy();
  1130. }
  1131. function isLoggedIn()
  1132. {
  1133. return isset($_SESSION['user_id']);
  1134. }
  1135. function generateFormHash($salt)
  1136. {
  1137. $hash = md5(mt_rand(1, 1000000) . $salt);
  1138. $_SESSION['csrf_hash'] = $hash;
  1139. return $hash;
  1140. }
  1141. function isValidFormHash($hash)
  1142. {
  1143. return $_SESSION['csrf_hash'] === $hash;
  1144. }
  1145. /**
  1146. * 随机字符串函数
  1147. * @param $password 密码
  1148. * @param $random 随机数
  1149. */
  1150. function random($length, $chars = '0123456789')
  1151. {
  1152. $hash = '';
  1153. $max = strlen($chars) - 1;
  1154. for ($i = 0; $i < $length; $i++) {
  1155. $hash .= $chars[mt_rand(0, $max)];
  1156. }
  1157. return $hash;
  1158. }
  1159. /**
  1160. * 生成随机字符串
  1161. * @param string $lenth 长度
  1162. * @return string 字符串
  1163. */
  1164. function create_randomstr($lenth = 6)
  1165. {
  1166. return $this->random($lenth, '123456789abcdefghijklmnpqrstuvwxyzABCDEFGHIJKLMNPQRSTUVWXYZ');
  1167. }
  1168. function dir_create($path, $mode = 0777)
  1169. {
  1170. if (is_dir($path))
  1171. return TRUE;
  1172. $path = $this->dir_path($path);
  1173. $parent = dirname($path);
  1174. if (!is_dir($parent))
  1175. @mkdir($parent, 0777, true);
  1176. @mkdir($path, 0777, true);
  1177. return is_dir($path);
  1178. }
  1179. function dir_path($path)
  1180. {
  1181. $path = str_replace('\\', '/', $path);
  1182. if (substr($path, -1) != '/')
  1183. $path = $path . '/';
  1184. return $path;
  1185. }
  1186. function msg($isTrue = 0, $msg = null, $retmsg = null)
  1187. {
  1188. if ($isTrue > 0) {
  1189. echo json_encode(array('status' => 'TRUE', 'msg' => ''), JSON_UNESCAPED_UNICODE);
  1190. die();
  1191. } else {
  1192. echo json_encode(array('status' => 'FALSE', 'msg' => $msg), JSON_UNESCAPED_UNICODE);
  1193. die();
  1194. }
  1195. }
  1196. }
  1197. ?>