You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

774 lines
21 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use Exception;
  4. use Yii;
  5. use yii\db\Expression;
  6. /**
  7. * This is the model class for table "opera_document".
  8. *
  9. * @property integer $id
  10. * @property integer $cancel_flag
  11. * @property string $create_time
  12. * @property string $update_time
  13. * @property integer $create_user
  14. * @property integer $update_user
  15. * @property integer $type
  16. * @property integer $module
  17. * @property string $title
  18. * @property integer $page_views
  19. * @property integer $sort
  20. * @property integer $release_type
  21. * @property integer $content
  22. */
  23. class OperaDocument extends \yii\db\ActiveRecord
  24. {
  25. /**
  26. * @inheritdoc
  27. */
  28. public static function tableName()
  29. {
  30. return 'opera_document';
  31. }
  32. /**
  33. * @inheritdoc
  34. */
  35. public function rules()
  36. {
  37. return [
  38. [['cancel_flag', 'create_user', 'update_user', 'type', 'module', 'page_views', 'sort', 'release_type'], 'integer'],
  39. [['update_time'], 'safe'],
  40. [['content'], 'required'],
  41. [['create_time'], 'string', 'max' => 20],
  42. [['title'], 'string', 'max' => 50],
  43. ];
  44. }
  45. /**
  46. * @inheritdoc
  47. */
  48. public function attributeLabels()
  49. {
  50. return [
  51. 'id' => 'ID',
  52. 'cancel_flag' => 'Cancel Flag',
  53. 'create_time' => 'Create Time',
  54. 'update_time' => 'Update Time',
  55. 'create_user' => 'Create User',
  56. 'update_user' => 'Update User',
  57. 'type' => 'Type',
  58. 'module' => 'Module',
  59. 'title' => 'Title',
  60. 'page_views' => 'Page Views',
  61. 'sort' => 'Sort',
  62. 'release_type' => 'Release Type',
  63. 'content' => 'Content',
  64. ];
  65. }
  66. /**
  67. * Function Description:得到文件列表
  68. * Function Name: getDocumentList
  69. * @param $type
  70. * @param $module
  71. * @param $search_more
  72. * @param $page_size
  73. * @param $current
  74. *
  75. * @return array|\yii\db\ActiveRecord[]
  76. *
  77. * @author 李健
  78. */
  79. public function getDocumentList($type, $module, $search_more, $page_size, $current)
  80. {
  81. $select = [
  82. 'a.id',
  83. 'type' => new Expression("CASE type
  84. WHEN 1 THEN '系统简介'
  85. WHEN 2 THEN '常见问题'
  86. WHEN 3 THEN '功能说明'
  87. ELSE ''
  88. END
  89. "),
  90. 'module',
  91. 'module_name' => new Expression("CASE module
  92. WHEN 1 THEN '采购管理'
  93. WHEN 2 THEN '产品管理'
  94. WHEN 3 THEN '渠道管理'
  95. WHEN 4 THEN '销售管理'
  96. WHEN 5 THEN '财务管理'
  97. WHEN 6 THEN '数据统计'
  98. WHEN 7 THEN '系统设置'
  99. ELSE ''
  100. END
  101. "),
  102. 'title',
  103. 'page_views',
  104. 'sort',
  105. 'a.update_time',
  106. 'b.user_name',
  107. 'b.true_name as auth',
  108. 'release_type',
  109. 'a.content'
  110. ];
  111. $where = ['and'];
  112. $where[] = ['=', 'a.cancel_flag', 0];
  113. if ($type != -1) {
  114. $where[] = ['=', 'a.type', $type];
  115. }
  116. if ($module != -1) {
  117. $where[] = ['=', 'a.module', $module];
  118. }
  119. if(!empty($search_more)) {
  120. $where[] = ['like','a.title',$search_more];
  121. }
  122. $offset = ($current - 1) * $page_size;
  123. $res = self::find()
  124. ->select($select)
  125. ->from(self::tableName() . ' a')
  126. ->leftJoin(BaseUser::tableName() . ' b', 'a.create_user=b.id')
  127. ->where($where)
  128. ->orderBy('sort desc')
  129. ->offset($offset)
  130. ->limit($page_size)
  131. ->asArray()
  132. ->all();
  133. return $res;
  134. }
  135. /**
  136. * Function Description:获取文档列表(已发布的)
  137. * Function Name: getDocumentListReleased
  138. * @param $type
  139. * @param $module
  140. * @param $search_more
  141. * @param $page_size
  142. * @param $current
  143. * @return array|\yii\db\ActiveRecord[]
  144. * @author 田玲菲
  145. */
  146. public function getDocumentListReleased($type, $module, $search_more, $page_size, $current)
  147. {
  148. $select = [
  149. 'a.id',
  150. 'type' => new Expression("CASE type
  151. WHEN 1 THEN '系统简介'
  152. WHEN 2 THEN '常见问题'
  153. WHEN 3 THEN '功能说明'
  154. ELSE ''
  155. END
  156. "),
  157. 'module',
  158. 'module_name' => new Expression("CASE module
  159. WHEN 1 THEN '采购管理'
  160. WHEN 2 THEN '产品管理'
  161. WHEN 3 THEN '渠道管理'
  162. WHEN 4 THEN '销售管理'
  163. WHEN 5 THEN '财务管理'
  164. WHEN 6 THEN '数据统计'
  165. WHEN 7 THEN '系统设置'
  166. ELSE ''
  167. END
  168. "),
  169. 'title',
  170. 'page_views',
  171. 'sort',
  172. 'a.update_time',
  173. 'b.user_name',
  174. 'release_type',
  175. 'a.content'
  176. ];
  177. $where = ['and'];
  178. $where[] = ['=', 'a.cancel_flag', 0];
  179. $where[] = ['=', 'a.release_type', 1];
  180. if ($type != -1) {
  181. $where[] = ['=', 'a.type', $type];
  182. }
  183. if ($module != -1) {
  184. $where[] = ['=', 'a.module', $module];
  185. }
  186. $offset = ($current - 1) * $page_size;
  187. if ($search_more != '') {
  188. $res = self::find()
  189. ->select($select)
  190. ->from(self::tableName() . ' a')
  191. ->leftJoin(BaseUser::tableName() . ' b', 'a.create_user=b.id')
  192. ->where($where)
  193. ->andWhere([
  194. 'or',
  195. ['like', 'a.title', $search_more],
  196. ['like', 'a.content', $search_more],
  197. ])
  198. ->orderBy('sort asc, a.update_time desc')
  199. ->offset($offset)
  200. ->limit($page_size)
  201. ->asArray()
  202. ->all();
  203. } else {
  204. $res = self::find()
  205. ->select($select)
  206. ->from(self::tableName() . ' a')
  207. ->leftJoin(BaseUser::tableName() . ' b', 'a.create_user=b.id')
  208. ->where($where)
  209. ->orderBy('sort asc, a.update_time desc')
  210. ->offset($offset)
  211. ->limit($page_size)
  212. ->asArray()
  213. ->all();
  214. }
  215. return $res;
  216. }
  217. /**
  218. * Function Description:得到列表总数
  219. * Function Name: getDocumentListCount
  220. * @param $type
  221. * @param $module
  222. * @param $search_more
  223. *
  224. * @return int|string
  225. *
  226. * @author 李健
  227. */
  228. public function getDocumentListCount($type, $module, $search_more)
  229. {
  230. $select = [
  231. 'a.id',
  232. 'type' => new Expression("CASE type
  233. WHEN 1 THEN '系统简介'
  234. WHEN 2 THEN '常见问题'
  235. WHEN 3 THEN '功能说明'
  236. ELSE ''
  237. END
  238. "),
  239. 'module',
  240. 'module_name' => new Expression("CASE module
  241. WHEN 1 THEN '采购管理'
  242. WHEN 2 THEN '产品管理'
  243. WHEN 3 THEN '渠道管理'
  244. WHEN 4 THEN '销售管理'
  245. WHEN 5 THEN '财务管理'
  246. WHEN 6 THEN '数据统计'
  247. WHEN 7 THEN '系统设置'
  248. ELSE ''
  249. END
  250. "),
  251. 'title',
  252. 'page_views',
  253. 'sort',
  254. 'a.update_time',
  255. 'b.user_name',
  256. 'release_type',
  257. 'a.content'
  258. ];
  259. $where = ['and'];
  260. $where[] = ['=', 'a.cancel_flag', 0];
  261. if ($type != -1) {
  262. $where[] = ['=', 'a.type', $type];
  263. }
  264. if ($module != -1) {
  265. $where[] = ['=', 'a.module', $module];
  266. }
  267. if(!empty($search_more)) {
  268. $where[] = ['like','a.title',$search_more];
  269. }
  270. $res = self::find()
  271. ->select($select)
  272. ->from(self::tableName() . ' a')
  273. ->leftJoin(BaseUser::tableName() . ' b', 'a.create_user=b.id')
  274. ->where($where)
  275. ->count();
  276. return $res;
  277. }
  278. /**
  279. * Function Description:获取已发布的文档的数量
  280. * Function Name: getDocumentListReleaseCount
  281. * @param $type
  282. * @param $module
  283. * @param $search_more
  284. * @return int|string
  285. * @author 田玲菲
  286. */
  287. public function getDocumentListReleaseCount($type, $module, $search_more)
  288. {
  289. $select = [
  290. 'a.id',
  291. 'type' => new Expression("CASE type
  292. WHEN 1 THEN '系统简介'
  293. WHEN 2 THEN '常见问题'
  294. WHEN 3 THEN '功能说明'
  295. ELSE ''
  296. END
  297. "),
  298. 'module',
  299. 'module_name' => new Expression("CASE module
  300. WHEN 1 THEN '采购管理'
  301. WHEN 2 THEN '产品管理'
  302. WHEN 3 THEN '渠道管理'
  303. WHEN 4 THEN '销售管理'
  304. WHEN 5 THEN '财务管理'
  305. WHEN 6 THEN '数据统计'
  306. WHEN 7 THEN '系统设置'
  307. ELSE ''
  308. END
  309. "),
  310. 'title',
  311. 'page_views',
  312. 'sort',
  313. 'a.update_time',
  314. 'b.user_name',
  315. 'release_type',
  316. 'a.content'
  317. ];
  318. $where = ['and'];
  319. $where[] = ['=', 'a.cancel_flag', 0];
  320. $where[] = ['=', 'a.release_type', 1];
  321. if ($type != -1) {
  322. $where[] = ['=', 'a.type', $type];
  323. }
  324. if ($module != -1) {
  325. $where[] = ['=', 'a.module', $module];
  326. }
  327. if ($search_more != '') {
  328. $res = self::find()
  329. ->select($select)
  330. ->from(self::tableName() . ' a')
  331. ->leftJoin(BaseUser::tableName() . ' b', 'a.create_user=b.id')
  332. ->where($where)
  333. ->andWhere([
  334. 'or',
  335. ['like', 'a.title', $search_more],
  336. ['like', 'a.content', $search_more],
  337. ])
  338. ->orderBy('sort asc, a.update_time desc')
  339. ->count();
  340. } else {
  341. $res = self::find()
  342. ->select($select)
  343. ->from(self::tableName() . ' a')
  344. ->leftJoin(BaseUser::tableName() . ' b', 'a.create_user=b.id')
  345. ->where($where)
  346. ->orderBy('sort asc, a.update_time desc')
  347. ->count();
  348. }
  349. return $res;
  350. }
  351. /**
  352. * Function Description:查询已发布的模块的功能说明和系统简介文档(首页)
  353. * Function Name: getInfo
  354. * @return array|\yii\db\ActiveRecord[]
  355. * @author 田玲菲
  356. */
  357. public function getInfo()
  358. {
  359. $select = [
  360. 'id',
  361. 'type',
  362. 'type_name' => new Expression("CASE type
  363. WHEN 1 THEN '系统简介'
  364. WHEN 2 THEN '常见问题'
  365. WHEN 3 THEN '功能说明'
  366. ELSE ''
  367. END
  368. "),
  369. 'module',
  370. 'module_name' => new Expression("CASE module
  371. WHEN 1 THEN '采购管理'
  372. WHEN 2 THEN '产品管理'
  373. WHEN 3 THEN '渠道管理'
  374. WHEN 4 THEN '销售管理'
  375. WHEN 5 THEN '财务管理'
  376. WHEN 6 THEN '数据统计'
  377. WHEN 7 THEN '系统设置'
  378. ELSE ''
  379. END
  380. "),
  381. 'title',
  382. 'page_views',
  383. 'content',
  384. ];
  385. $where = [
  386. 'and',
  387. ['=', 'cancel_flag', 0],
  388. ['=', 'release_type', 1],
  389. ['<>', 'type', 2],
  390. ];
  391. $result = self::find()
  392. ->select($select)
  393. ->from(self::tableName())
  394. ->where($where)
  395. ->asArray()
  396. ->all();
  397. $res = array();
  398. foreach ($result as $k => $v) {
  399. if (!isset($res[$v['module']])) {
  400. $res[$v['module']]['module_name'] = $v['module_name'];
  401. $res[$v['module']]['module'] = $v['module'];
  402. }
  403. if ($v['type'] == 1) {
  404. $res[$v['module']]['system'][] = $v;
  405. }
  406. if ($v['type'] == 3) {
  407. $res[$v['module']]['function'][] = $v;
  408. }
  409. }
  410. return $res;
  411. }
  412. /**
  413. * Function Description:根据id获取文章的所有内容
  414. * Function Name: getDocumentContent
  415. * @param $id
  416. * @return array|\yii\db\ActiveRecord[]
  417. * @author 田玲菲
  418. */
  419. public function getDocumentContent($id)
  420. {
  421. $select = [
  422. 'id',
  423. 'type',
  424. 'type_name' => new Expression("CASE type
  425. WHEN 1 THEN '系统简介'
  426. WHEN 2 THEN '常见问题'
  427. WHEN 3 THEN '功能说明'
  428. ELSE ''
  429. END
  430. "),
  431. 'module',
  432. 'module_name' => new Expression("CASE module
  433. WHEN 1 THEN '采购管理'
  434. WHEN 2 THEN '产品管理'
  435. WHEN 3 THEN '渠道管理'
  436. WHEN 4 THEN '销售管理'
  437. WHEN 5 THEN '财务管理'
  438. WHEN 6 THEN '数据统计'
  439. WHEN 7 THEN '系统设置'
  440. ELSE ''
  441. END
  442. "),
  443. 'title',
  444. 'page_views',
  445. 'content',
  446. 'create_time',
  447. 'sort'
  448. ];
  449. $where = [
  450. 'and',
  451. ['=', 'cancel_flag', 0],
  452. ['=', 'id', $id],
  453. ];
  454. $result = self::find()
  455. ->select($select)
  456. ->from(self::tableName())
  457. ->where($where)
  458. ->asArray()
  459. ->all();
  460. return $result;
  461. }
  462. /**
  463. * Function Description:获取常见问题的内容和列表
  464. * Function Name: getCommonQuestion
  465. * @return array|\yii\db\ActiveRecord[]
  466. * @author 田玲菲
  467. */
  468. public function getCommonQuestion()
  469. {
  470. $select = [
  471. 'id',
  472. 'type',
  473. 'type_name' => new Expression("CASE type
  474. WHEN 1 THEN '系统简介'
  475. WHEN 2 THEN '常见问题'
  476. WHEN 3 THEN '功能说明'
  477. ELSE ''
  478. END
  479. "),
  480. 'module',
  481. 'module_name' => new Expression("CASE module
  482. WHEN 1 THEN '采购管理'
  483. WHEN 2 THEN '产品管理'
  484. WHEN 3 THEN '渠道管理'
  485. WHEN 4 THEN '销售管理'
  486. WHEN 5 THEN '财务管理'
  487. WHEN 6 THEN '数据统计'
  488. WHEN 7 THEN '系统设置'
  489. ELSE ''
  490. END
  491. "),
  492. 'title',
  493. 'page_views',
  494. 'content',
  495. ];
  496. $where = [
  497. 'and',
  498. ['=', 'cancel_flag', 0],
  499. ['=', 'release_type', 1],
  500. ['=', 'type', 2],
  501. ];
  502. $result = self::find()
  503. ->select($select)
  504. ->from(self::tableName())
  505. ->where($where)
  506. ->asArray()
  507. ->all();
  508. $res = array();
  509. foreach ($result as $k => $v) {
  510. if (!isset($res[$v['module']])) {
  511. $res[$v['module']]['module_name'] = $v['module_name'];
  512. $res[$v['module']]['module'] = $v['module'];
  513. }
  514. if ($v['type'] == 2) {
  515. $res[$v['module']]['system'][] = $v;
  516. }
  517. }
  518. return $res;
  519. }
  520. /**
  521. * Function Description:根据id增加文档的查阅次数
  522. * Function Name: addSeeCount
  523. * @param $id
  524. * @return bool
  525. * @author 田玲菲
  526. */
  527. public function addSeeCount($id)
  528. {
  529. try {
  530. $obj=self::findOne($id);
  531. $obj->page_views = ++$obj->page_views;
  532. return $obj->save();
  533. } catch (Exception $e) {
  534. return false;
  535. }
  536. }
  537. /**
  538. * Function Description:删除文档
  539. * Function Name: deleteDocument
  540. * @param $id
  541. * @return boolean
  542. * @author 李健
  543. */
  544. public function deleteDocument($id)
  545. {
  546. try {
  547. $obj = self::findOne($id);
  548. $date = date('Y-m-d H:i:s',time());
  549. $uid = $this->getUserId();
  550. $obj->update_time = $date;
  551. $obj->update_user = $uid;
  552. $obj->cancel_flag = 1;
  553. return $obj->save();
  554. } catch (Exception $e) {
  555. return false;
  556. }
  557. }
  558. /**
  559. * Function Description:改变文档状态
  560. * Function Name: changeStatus
  561. * @param $id
  562. * @return boolean
  563. * @author 李健
  564. */
  565. public function changeStatus($id)
  566. {
  567. try {
  568. $obj = self::findOne($id);
  569. $date = date('Y-m-d H:i:s',time());
  570. $uid = $this->getUserId();
  571. $obj->update_time = $date;
  572. $obj->update_user = $uid;
  573. $obj->release_type = $obj->release_type == 1 ? 0 : 1;
  574. return $obj->save();
  575. } catch (Exception $e) {
  576. return false;
  577. }
  578. }
  579. /**
  580. * Function Description:保存文档
  581. * Function Name: saveDocument
  582. * @param $type
  583. * @param $module
  584. * @param $sort
  585. * @param $title
  586. * @param $content
  587. *
  588. * @return bool
  589. *
  590. * @author 李健
  591. */
  592. public function saveDocument($type,$module,$sort,$title,$content,$release_type){
  593. try{
  594. $date = date('Y-m-d H:i:s',time());
  595. $uid = $this->getUserId();
  596. $this->create_time = $date;
  597. $this->create_user = $uid;
  598. $this->update_time = $date;
  599. $this->update_user = $uid;
  600. $this->type = $type;
  601. $this->module = $module;
  602. $this->title = $title;
  603. $this->sort = $sort;
  604. $this->content = $content;
  605. $this->page_views = 0;
  606. $this->release_type = $release_type;
  607. return $this->save();
  608. } catch (Exception $e) {
  609. return false;
  610. }
  611. }
  612. /**
  613. * Function Description:修改文档
  614. * Function Name: updateDocument
  615. * @param $id
  616. * @param $type
  617. * @param $module
  618. * @param $sort
  619. * @param $title
  620. * @param $content
  621. * @param $release_type
  622. *
  623. * @return bool
  624. *
  625. * @author 李健
  626. */
  627. public function updateDocument($id,$type,$module,$sort,$title,$content,$release_type){
  628. try{
  629. $date = date('Y-m-d H:i:s',time());
  630. $uid = $this->getUserId();
  631. $obj = self::findOne($id);
  632. $obj->create_time = $date;
  633. $obj->create_user = $uid;
  634. $obj->update_time = $date;
  635. $obj->update_user = $uid;
  636. $obj->type = $type;
  637. $obj->module = $module;
  638. $obj->title = $title;
  639. $obj->sort = $sort;
  640. $obj->content = $content;
  641. $obj->page_views = 0;
  642. $obj->release_type = $release_type;
  643. return $obj->save();
  644. } catch (Exception $e) {
  645. return false;
  646. }
  647. }
  648. /**
  649. * Function Description:得到用户id
  650. * Function Name: getUserId
  651. *
  652. *
  653. * @author 李健
  654. */
  655. public function getUserId()
  656. {
  657. return Yii::$app->request->cookies->getValue('user_id','728');
  658. }
  659. /**
  660. * Function Description:检查功能说明
  661. * Function Name: checkFunction
  662. * @param $type
  663. * @param $module
  664. *
  665. * @return array|null|\yii\db\ActiveRecord
  666. *
  667. * @author 李健
  668. */
  669. public function checkFunction($type,$module){
  670. $res = self::find()
  671. ->select('id')
  672. ->from(self::tableName())
  673. ->where(['and',['=','cancel_flag',0],['=','type',$type],['=','module',$module]])
  674. ->asArray()
  675. ->one();
  676. return $res;
  677. }
  678. /**
  679. * Function Description:校验标题唯一性
  680. * Function Name: checkTitle
  681. * @param $title
  682. *
  683. * @return array|null|\yii\db\ActiveRecord
  684. *
  685. * @author 李健
  686. */
  687. public function checkTitle($title)
  688. {
  689. $res = self::find()
  690. ->select('id')
  691. ->from(self::tableName())
  692. ->where(['and',['=','cancel_flag',0],['=','title',$title]])
  693. ->asArray()
  694. ->one();
  695. return $res;
  696. }
  697. /**
  698. * Function Description:更新排序
  699. * Function Name: updateSort
  700. * @param $sort
  701. * @param $id
  702. *
  703. * @return bool
  704. *
  705. * @author 李健
  706. */
  707. public function updateSort($sort,$id)
  708. {
  709. try{
  710. $obj = self::findOne($id);
  711. $date = date('Y-m-d H:i:s',time());
  712. $uid = $this->getUserId();
  713. $obj->update_user = $uid;
  714. $obj->update_time = $date;
  715. $obj->sort = $sort;
  716. return $obj->save();
  717. } catch(Exception $e){
  718. return false;
  719. }
  720. }
  721. }