|
- <?php
-
- namespace backend\modules\zzcs\models;
-
- use Exception;
- use Yii;
- use yii\db\Expression;
-
- /**
- * This is the model class for table "opera_document".
- *
- * @property integer $id
- * @property integer $cancel_flag
- * @property string $create_time
- * @property string $update_time
- * @property integer $create_user
- * @property integer $update_user
- * @property integer $type
- * @property integer $module
- * @property string $title
- * @property integer $page_views
- * @property integer $sort
- * @property integer $release_type
- * @property integer $content
- */
- class OperaDocument extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'opera_document';
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['cancel_flag', 'create_user', 'update_user', 'type', 'module', 'page_views', 'sort', 'release_type'], 'integer'],
- [['update_time'], 'safe'],
- [['content'], 'required'],
- [['create_time'], 'string', 'max' => 20],
- [['title'], 'string', 'max' => 50],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'cancel_flag' => 'Cancel Flag',
- 'create_time' => 'Create Time',
- 'update_time' => 'Update Time',
- 'create_user' => 'Create User',
- 'update_user' => 'Update User',
- 'type' => 'Type',
- 'module' => 'Module',
- 'title' => 'Title',
- 'page_views' => 'Page Views',
- 'sort' => 'Sort',
- 'release_type' => 'Release Type',
- 'content' => 'Content',
- ];
- }
-
- /**
- * Function Description:得到文件列表
- * Function Name: getDocumentList
- * @param $type
- * @param $module
- * @param $search_more
- * @param $page_size
- * @param $current
- *
- * @return array|\yii\db\ActiveRecord[]
- *
- * @author 李健
- */
- public function getDocumentList($type, $module, $search_more, $page_size, $current)
- {
- $select = [
- 'a.id',
- 'type' => new Expression("CASE type
- WHEN 1 THEN '系统简介'
- WHEN 2 THEN '常见问题'
- WHEN 3 THEN '功能说明'
- ELSE ''
- END
- "),
- 'module',
- 'module_name' => new Expression("CASE module
- WHEN 1 THEN '采购管理'
- WHEN 2 THEN '产品管理'
- WHEN 3 THEN '渠道管理'
- WHEN 4 THEN '销售管理'
- WHEN 5 THEN '财务管理'
- WHEN 6 THEN '数据统计'
- WHEN 7 THEN '系统设置'
- ELSE ''
- END
- "),
- 'title',
- 'page_views',
- 'sort',
- 'a.update_time',
- 'b.user_name',
- 'b.true_name as auth',
- 'release_type',
- 'a.content'
- ];
-
- $where = ['and'];
- $where[] = ['=', 'a.cancel_flag', 0];
-
- if ($type != -1) {
- $where[] = ['=', 'a.type', $type];
- }
-
- if ($module != -1) {
- $where[] = ['=', 'a.module', $module];
- }
-
- if(!empty($search_more)) {
- $where[] = ['like','a.title',$search_more];
- }
-
- $offset = ($current - 1) * $page_size;
-
- $res = self::find()
- ->select($select)
- ->from(self::tableName() . ' a')
- ->leftJoin(BaseUser::tableName() . ' b', 'a.create_user=b.id')
- ->where($where)
- ->orderBy('sort desc')
- ->offset($offset)
- ->limit($page_size)
- ->asArray()
- ->all();
- return $res;
- }
-
-
- /**
- * Function Description:获取文档列表(已发布的)
- * Function Name: getDocumentListReleased
- * @param $type
- * @param $module
- * @param $search_more
- * @param $page_size
- * @param $current
- * @return array|\yii\db\ActiveRecord[]
- * @author 田玲菲
- */
- public function getDocumentListReleased($type, $module, $search_more, $page_size, $current)
- {
- $select = [
- 'a.id',
- 'type' => new Expression("CASE type
- WHEN 1 THEN '系统简介'
- WHEN 2 THEN '常见问题'
- WHEN 3 THEN '功能说明'
- ELSE ''
- END
- "),
- 'module',
- 'module_name' => new Expression("CASE module
- WHEN 1 THEN '采购管理'
- WHEN 2 THEN '产品管理'
- WHEN 3 THEN '渠道管理'
- WHEN 4 THEN '销售管理'
- WHEN 5 THEN '财务管理'
- WHEN 6 THEN '数据统计'
- WHEN 7 THEN '系统设置'
- ELSE ''
- END
- "),
- 'title',
- 'page_views',
- 'sort',
- 'a.update_time',
- 'b.user_name',
- 'release_type',
- 'a.content'
- ];
-
- $where = ['and'];
- $where[] = ['=', 'a.cancel_flag', 0];
- $where[] = ['=', 'a.release_type', 1];
-
- if ($type != -1) {
- $where[] = ['=', 'a.type', $type];
- }
-
- if ($module != -1) {
- $where[] = ['=', 'a.module', $module];
- }
-
- $offset = ($current - 1) * $page_size;
-
- if ($search_more != '') {
- $res = self::find()
- ->select($select)
- ->from(self::tableName() . ' a')
- ->leftJoin(BaseUser::tableName() . ' b', 'a.create_user=b.id')
- ->where($where)
- ->andWhere([
- 'or',
- ['like', 'a.title', $search_more],
- ['like', 'a.content', $search_more],
- ])
- ->orderBy('sort asc, a.update_time desc')
- ->offset($offset)
- ->limit($page_size)
- ->asArray()
- ->all();
- } else {
- $res = self::find()
- ->select($select)
- ->from(self::tableName() . ' a')
- ->leftJoin(BaseUser::tableName() . ' b', 'a.create_user=b.id')
- ->where($where)
- ->orderBy('sort asc, a.update_time desc')
- ->offset($offset)
- ->limit($page_size)
- ->asArray()
- ->all();
- }
- return $res;
- }
-
- /**
- * Function Description:得到列表总数
- * Function Name: getDocumentListCount
- * @param $type
- * @param $module
- * @param $search_more
- *
- * @return int|string
- *
- * @author 李健
- */
- public function getDocumentListCount($type, $module, $search_more)
- {
- $select = [
- 'a.id',
- 'type' => new Expression("CASE type
- WHEN 1 THEN '系统简介'
- WHEN 2 THEN '常见问题'
- WHEN 3 THEN '功能说明'
- ELSE ''
- END
- "),
- 'module',
- 'module_name' => new Expression("CASE module
- WHEN 1 THEN '采购管理'
- WHEN 2 THEN '产品管理'
- WHEN 3 THEN '渠道管理'
- WHEN 4 THEN '销售管理'
- WHEN 5 THEN '财务管理'
- WHEN 6 THEN '数据统计'
- WHEN 7 THEN '系统设置'
- ELSE ''
- END
- "),
- 'title',
- 'page_views',
- 'sort',
- 'a.update_time',
- 'b.user_name',
- 'release_type',
- 'a.content'
- ];
-
- $where = ['and'];
- $where[] = ['=', 'a.cancel_flag', 0];
-
- if ($type != -1) {
- $where[] = ['=', 'a.type', $type];
- }
-
- if ($module != -1) {
- $where[] = ['=', 'a.module', $module];
- }
-
- if(!empty($search_more)) {
- $where[] = ['like','a.title',$search_more];
- }
-
- $res = self::find()
- ->select($select)
- ->from(self::tableName() . ' a')
- ->leftJoin(BaseUser::tableName() . ' b', 'a.create_user=b.id')
- ->where($where)
- ->count();
- return $res;
- }
-
-
- /**
- * Function Description:获取已发布的文档的数量
- * Function Name: getDocumentListReleaseCount
- * @param $type
- * @param $module
- * @param $search_more
- * @return int|string
- * @author 田玲菲
- */
- public function getDocumentListReleaseCount($type, $module, $search_more)
- {
- $select = [
- 'a.id',
- 'type' => new Expression("CASE type
- WHEN 1 THEN '系统简介'
- WHEN 2 THEN '常见问题'
- WHEN 3 THEN '功能说明'
- ELSE ''
- END
- "),
- 'module',
- 'module_name' => new Expression("CASE module
- WHEN 1 THEN '采购管理'
- WHEN 2 THEN '产品管理'
- WHEN 3 THEN '渠道管理'
- WHEN 4 THEN '销售管理'
- WHEN 5 THEN '财务管理'
- WHEN 6 THEN '数据统计'
- WHEN 7 THEN '系统设置'
- ELSE ''
- END
- "),
- 'title',
- 'page_views',
- 'sort',
- 'a.update_time',
- 'b.user_name',
- 'release_type',
- 'a.content'
- ];
-
- $where = ['and'];
- $where[] = ['=', 'a.cancel_flag', 0];
- $where[] = ['=', 'a.release_type', 1];
-
- if ($type != -1) {
- $where[] = ['=', 'a.type', $type];
- }
-
- if ($module != -1) {
- $where[] = ['=', 'a.module', $module];
- }
- if ($search_more != '') {
- $res = self::find()
- ->select($select)
- ->from(self::tableName() . ' a')
- ->leftJoin(BaseUser::tableName() . ' b', 'a.create_user=b.id')
- ->where($where)
- ->andWhere([
- 'or',
- ['like', 'a.title', $search_more],
- ['like', 'a.content', $search_more],
- ])
- ->orderBy('sort asc, a.update_time desc')
- ->count();
- } else {
- $res = self::find()
- ->select($select)
- ->from(self::tableName() . ' a')
- ->leftJoin(BaseUser::tableName() . ' b', 'a.create_user=b.id')
- ->where($where)
- ->orderBy('sort asc, a.update_time desc')
- ->count();
- }
-
- return $res;
- }
-
-
- /**
- * Function Description:查询已发布的模块的功能说明和系统简介文档(首页)
- * Function Name: getInfo
- * @return array|\yii\db\ActiveRecord[]
- * @author 田玲菲
- */
- public function getInfo()
- {
- $select = [
- 'id',
- 'type',
- 'type_name' => new Expression("CASE type
- WHEN 1 THEN '系统简介'
- WHEN 2 THEN '常见问题'
- WHEN 3 THEN '功能说明'
- ELSE ''
- END
- "),
- 'module',
- 'module_name' => new Expression("CASE module
- WHEN 1 THEN '采购管理'
- WHEN 2 THEN '产品管理'
- WHEN 3 THEN '渠道管理'
- WHEN 4 THEN '销售管理'
- WHEN 5 THEN '财务管理'
- WHEN 6 THEN '数据统计'
- WHEN 7 THEN '系统设置'
- ELSE ''
- END
- "),
- 'title',
- 'page_views',
- 'content',
- ];
-
- $where = [
- 'and',
- ['=', 'cancel_flag', 0],
- ['=', 'release_type', 1],
- ['<>', 'type', 2],
- ];
- $result = self::find()
- ->select($select)
- ->from(self::tableName())
- ->where($where)
- ->asArray()
- ->all();
- $res = array();
- foreach ($result as $k => $v) {
- if (!isset($res[$v['module']])) {
- $res[$v['module']]['module_name'] = $v['module_name'];
- $res[$v['module']]['module'] = $v['module'];
- }
- if ($v['type'] == 1) {
- $res[$v['module']]['system'][] = $v;
- }
- if ($v['type'] == 3) {
- $res[$v['module']]['function'][] = $v;
- }
-
- }
- return $res;
- }
-
-
- /**
- * Function Description:根据id获取文章的所有内容
- * Function Name: getDocumentContent
- * @param $id
- * @return array|\yii\db\ActiveRecord[]
- * @author 田玲菲
- */
- public function getDocumentContent($id)
- {
- $select = [
- 'id',
- 'type',
- 'type_name' => new Expression("CASE type
- WHEN 1 THEN '系统简介'
- WHEN 2 THEN '常见问题'
- WHEN 3 THEN '功能说明'
- ELSE ''
- END
- "),
- 'module',
- 'module_name' => new Expression("CASE module
- WHEN 1 THEN '采购管理'
- WHEN 2 THEN '产品管理'
- WHEN 3 THEN '渠道管理'
- WHEN 4 THEN '销售管理'
- WHEN 5 THEN '财务管理'
- WHEN 6 THEN '数据统计'
- WHEN 7 THEN '系统设置'
- ELSE ''
- END
- "),
- 'title',
- 'page_views',
- 'content',
- 'create_time',
- 'sort'
- ];
-
- $where = [
- 'and',
- ['=', 'cancel_flag', 0],
- ['=', 'id', $id],
- ];
- $result = self::find()
- ->select($select)
- ->from(self::tableName())
- ->where($where)
- ->asArray()
- ->all();
- return $result;
- }
-
-
- /**
- * Function Description:获取常见问题的内容和列表
- * Function Name: getCommonQuestion
- * @return array|\yii\db\ActiveRecord[]
- * @author 田玲菲
- */
- public function getCommonQuestion()
- {
- $select = [
- 'id',
- 'type',
- 'type_name' => new Expression("CASE type
- WHEN 1 THEN '系统简介'
- WHEN 2 THEN '常见问题'
- WHEN 3 THEN '功能说明'
- ELSE ''
- END
- "),
- 'module',
- 'module_name' => new Expression("CASE module
- WHEN 1 THEN '采购管理'
- WHEN 2 THEN '产品管理'
- WHEN 3 THEN '渠道管理'
- WHEN 4 THEN '销售管理'
- WHEN 5 THEN '财务管理'
- WHEN 6 THEN '数据统计'
- WHEN 7 THEN '系统设置'
- ELSE ''
- END
- "),
- 'title',
- 'page_views',
- 'content',
- ];
-
- $where = [
- 'and',
- ['=', 'cancel_flag', 0],
- ['=', 'release_type', 1],
- ['=', 'type', 2],
- ];
- $result = self::find()
- ->select($select)
- ->from(self::tableName())
- ->where($where)
- ->asArray()
- ->all();
- $res = array();
- foreach ($result as $k => $v) {
- if (!isset($res[$v['module']])) {
- $res[$v['module']]['module_name'] = $v['module_name'];
- $res[$v['module']]['module'] = $v['module'];
- }
- if ($v['type'] == 2) {
- $res[$v['module']]['system'][] = $v;
- }
- }
- return $res;
- }
-
-
- /**
- * Function Description:根据id增加文档的查阅次数
- * Function Name: addSeeCount
- * @param $id
- * @return bool
- * @author 田玲菲
- */
- public function addSeeCount($id)
- {
- try {
- $obj=self::findOne($id);
- $obj->page_views = ++$obj->page_views;
- return $obj->save();
- } catch (Exception $e) {
- return false;
- }
- }
-
-
- /**
- * Function Description:删除文档
- * Function Name: deleteDocument
- * @param $id
- * @return boolean
- * @author 李健
- */
- public function deleteDocument($id)
- {
- try {
- $obj = self::findOne($id);
- $date = date('Y-m-d H:i:s',time());
- $uid = $this->getUserId();
- $obj->update_time = $date;
- $obj->update_user = $uid;
- $obj->cancel_flag = 1;
- return $obj->save();
- } catch (Exception $e) {
- return false;
- }
- }
-
- /**
- * Function Description:改变文档状态
- * Function Name: changeStatus
- * @param $id
- * @return boolean
- * @author 李健
- */
- public function changeStatus($id)
- {
- try {
- $obj = self::findOne($id);
- $date = date('Y-m-d H:i:s',time());
- $uid = $this->getUserId();
- $obj->update_time = $date;
- $obj->update_user = $uid;
- $obj->release_type = $obj->release_type == 1 ? 0 : 1;
- return $obj->save();
- } catch (Exception $e) {
- return false;
- }
- }
-
- /**
- * Function Description:保存文档
- * Function Name: saveDocument
- * @param $type
- * @param $module
- * @param $sort
- * @param $title
- * @param $content
- *
- * @return bool
- *
- * @author 李健
- */
- public function saveDocument($type,$module,$sort,$title,$content,$release_type){
- try{
- $date = date('Y-m-d H:i:s',time());
- $uid = $this->getUserId();
- $this->create_time = $date;
- $this->create_user = $uid;
- $this->update_time = $date;
- $this->update_user = $uid;
- $this->type = $type;
- $this->module = $module;
- $this->title = $title;
- $this->sort = $sort;
- $this->content = $content;
- $this->page_views = 0;
- $this->release_type = $release_type;
- return $this->save();
- } catch (Exception $e) {
- return false;
- }
- }
-
- /**
- * Function Description:修改文档
- * Function Name: updateDocument
- * @param $id
- * @param $type
- * @param $module
- * @param $sort
- * @param $title
- * @param $content
- * @param $release_type
- *
- * @return bool
- *
- * @author 李健
- */
- public function updateDocument($id,$type,$module,$sort,$title,$content,$release_type){
- try{
- $date = date('Y-m-d H:i:s',time());
- $uid = $this->getUserId();
- $obj = self::findOne($id);
- $obj->create_time = $date;
- $obj->create_user = $uid;
- $obj->update_time = $date;
- $obj->update_user = $uid;
- $obj->type = $type;
- $obj->module = $module;
- $obj->title = $title;
- $obj->sort = $sort;
- $obj->content = $content;
- $obj->page_views = 0;
- $obj->release_type = $release_type;
- return $obj->save();
- } catch (Exception $e) {
- return false;
- }
- }
-
- /**
- * Function Description:得到用户id
- * Function Name: getUserId
- *
- *
- * @author 李健
- */
- public function getUserId()
- {
- return Yii::$app->request->cookies->getValue('user_id','728');
- }
-
- /**
- * Function Description:检查功能说明
- * Function Name: checkFunction
- * @param $type
- * @param $module
- *
- * @return array|null|\yii\db\ActiveRecord
- *
- * @author 李健
- */
- public function checkFunction($type,$module){
- $res = self::find()
- ->select('id')
- ->from(self::tableName())
- ->where(['and',['=','cancel_flag',0],['=','type',$type],['=','module',$module]])
- ->asArray()
- ->one();
- return $res;
- }
-
- /**
- * Function Description:校验标题唯一性
- * Function Name: checkTitle
- * @param $title
- *
- * @return array|null|\yii\db\ActiveRecord
- *
- * @author 李健
- */
- public function checkTitle($title)
- {
- $res = self::find()
- ->select('id')
- ->from(self::tableName())
- ->where(['and',['=','cancel_flag',0],['=','title',$title]])
- ->asArray()
- ->one();
- return $res;
- }
-
- /**
- * Function Description:更新排序
- * Function Name: updateSort
- * @param $sort
- * @param $id
- *
- * @return bool
- *
- * @author 李健
- */
- public function updateSort($sort,$id)
- {
- try{
- $obj = self::findOne($id);
- $date = date('Y-m-d H:i:s',time());
- $uid = $this->getUserId();
- $obj->update_user = $uid;
- $obj->update_time = $date;
- $obj->sort = $sort;
- return $obj->save();
- } catch(Exception $e){
- return false;
- }
- }
- }
|