25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

505 lines
17 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use yii\db\ActiveRecord;
  4. use yii\base\Exception;
  5. use Yii;
  6. /**
  7. * This is the model class for table "opera_message_template".
  8. *
  9. * @property integer $id
  10. * @property integer $supplier_id
  11. * @property integer $ticket_group_id
  12. * @property integer $ticket_id
  13. * @property string $content1
  14. * @property string $content2
  15. * @property string $content3
  16. * @property string $content4
  17. * @property string $content5
  18. * @property integer $create_user_id
  19. * @property string $create_time
  20. * @property integer $update_user_id
  21. * @property string $update_time
  22. * @property integer $template_type
  23. * @property integer $cancel_flag
  24. */
  25. class OperaMessageTemplate extends ActiveRecord
  26. {
  27. /**
  28. * @inheritdoc
  29. */
  30. public static function tableName()
  31. {
  32. return 'opera_message_template';
  33. }
  34. /**
  35. * @inheritdoc
  36. */
  37. public function rules()
  38. {
  39. return [
  40. [['supplier_id', 'ticket_group_id', 'ticket_id', 'create_user_id', 'update_user_id', 'template_type', 'cancel_flag'], 'integer'],
  41. [['ticket_group_id', 'ticket_id', 'template_type'], 'required'],
  42. [['content1', 'content2', 'content3', 'content4', 'content5', 'content6'], 'string'],
  43. [['create_time', 'update_time'], 'string', 'max' => 20],
  44. ];
  45. }
  46. /**
  47. * @inheritdoc
  48. */
  49. public function attributeLabels()
  50. {
  51. return [
  52. 'id' => 'ID',
  53. 'supplier_id' => 'Supplier ID',
  54. 'ticket_group_id' => 'Ticket Group ID',
  55. 'ticket_id' => 'Ticket ID',
  56. 'content1' => 'Content1',
  57. 'content2' => 'Content2',
  58. 'content3' => 'Content3',
  59. 'content4' => 'Content4',
  60. 'content5' => 'Content5',
  61. 'content6' => 'Content6',
  62. 'create_user_id' => 'Create User ID',
  63. 'create_time' => 'Create Time',
  64. 'update_user_id' => 'Update User ID',
  65. 'update_time' => 'Update Time',
  66. 'template_type' => 'Template Type',
  67. 'cancel_flag' => 'Cancel Flag',
  68. ];
  69. }
  70. /**
  71. * Function Description:判断用户是否是管理员
  72. * Function Name: judgeAdmin
  73. *
  74. * @return bool|int
  75. *
  76. * @author 温依莅
  77. */
  78. public function judgeAdmin()
  79. {
  80. $user_id = Yii::$app->request->cookies->getValue('user_id', -1);
  81. $user = BaseUser::find()->select(['id', 'main_corp_id', 'user_role'])->where(['id' => $user_id])->asArray()->one();
  82. if (!$user) {
  83. return false;
  84. }
  85. if ($user['main_corp_id'] == 0 && $user['user_role'] == 0) {
  86. return 1;
  87. }
  88. return 0;
  89. }
  90. /**
  91. * Function Description:判断是否有重复的同渠道模板数据插入
  92. * Function Name: judgeRepeat
  93. * @param int $ticket_group_id
  94. * @param int $channel_id
  95. *
  96. * @return array|null|ActiveRecord
  97. *
  98. * @author 温依莅
  99. */
  100. public function judgeRepeat($ticket_group_id, $channel_id)
  101. {
  102. $arr = self::find()->where(['ticket_group_id' => $ticket_group_id, 'supplier_id' => $channel_id, 'cancel_flag' => 0, 'template_type' => 2])->asArray()->one();
  103. return $arr;
  104. }
  105. /**
  106. * Function Description:判断短信模板格式
  107. * Function Name: templatePreg
  108. * @param $str
  109. *
  110. * @return int
  111. *
  112. * @author 温依莅
  113. */
  114. public function templatePreg($str)
  115. {
  116. preg_match_all('/\{/', $str, $lc);
  117. preg_match_all('/\}/', $str, $rc);
  118. $lcount = count($lc[0]);
  119. $rcount = count($rc[0]);
  120. if ($lcount == $rcount) {
  121. return 1;
  122. } else {
  123. return 0;
  124. }
  125. }
  126. /**
  127. * Function Description:根据用户名得到可选择的渠道
  128. * Function Name: getEnableChannels
  129. *
  130. * @author 温依莅
  131. */
  132. public function getEnableChannels()
  133. {
  134. $user_id = Yii::$app->request->cookies->getValue('user_id', -1);
  135. //$user_id=621;
  136. //根据用户名得到可选择的渠道
  137. #对于非蜘蛛运营主体,可以看到本身所属渠道和 蜘蛛国旅渠道
  138. #对于蜘蛛运营主体,可以看到本身渠道和所有非蜘蛛运营主体的的对应渠道
  139. $user = BaseUser::find()->select(['id', 'main_corp_id', 'user_role'])->where(['id' => $user_id, 'cancel_flag' => 0])->asArray()->one();
  140. if (!$user) {
  141. return array();
  142. }
  143. $main_corp_id = $user['main_corp_id'] == 0 ? 1 : $user['main_corp_id'];//运营主体为0【蜘蛛科技】的视为1【蜘蛛国旅】处理
  144. if ($main_corp_id == 1) {
  145. $where = 'a.main_corp_id=1 or a.reflect_main_corp>1';//
  146. } else {
  147. $where = "a.main_corp_id=$main_corp_id or a.reflect_main_corp=1";//
  148. }
  149. $arr = BaseSupplier::find()->select([
  150. 'a.id as supplier_id',
  151. 'a.main_corp_id',
  152. 'a.supplier_name',
  153. 'a.reflect_main_corp'
  154. ])->from(BaseSupplier::tableName() . ' as a')
  155. ->where('a.cancel_flag=0 and b.cancel_flag=0 and a.is_disabled=0 and a.supplier_type=301 and b.corp_type=1')
  156. ->leftJoin('base_main_corporation b', 'a.main_corp_id=b.id')
  157. ->andWhere($where)
  158. ->distinct()
  159. ->asArray()
  160. ->all();
  161. return $arr;
  162. }
  163. /**
  164. * Function Description:获得默认短信模板
  165. * Function Name: getDefault
  166. *
  167. * @return array
  168. *
  169. * @author 温依莅
  170. */
  171. public function getDefault()
  172. {
  173. //获取默认的短信模板
  174. $def = self::find()->where(['template_type' => 0, 'cancel_flag' => 0])->asArray()->one();
  175. return $def;
  176. }
  177. /**
  178. * Function Description:短信模板列表
  179. * Function Name: templateList
  180. * @param string $ticket_group_id
  181. * @param string $ticket_id
  182. *
  183. * @return mixed
  184. *
  185. * @author 温依莅
  186. */
  187. public function templateList($ticket_group_id, $ticket_id)
  188. {
  189. $user_id = Yii::$app->request->cookies->getValue('user_id', -1);
  190. //$user_id=206;
  191. //1,根据用户名得到可见的渠道--如果是管理员(main_corp_id是0且user_role是0)则可见所有渠道
  192. $user = BaseUser::find()->select(['id', 'main_corp_id', 'user_role'])->where(['id' => $user_id])->asArray()->one();
  193. if (!$user) {
  194. $where = array('a.cancel_flag' => 666);
  195. }
  196. if ($user['main_corp_id'] == 0 && $user['user_role'] == 0) {
  197. $where = array('a.cancel_flag' => 0, 'a.template_type' => 2, 'b.cancel_flag' => 0, 'a.ticket_group_id' => $ticket_group_id, 'b.supplier_type' => 301);
  198. } else {
  199. $where = array('a.cancel_flag' => 0, 'a.template_type' => 2, 'b.cancel_flag' => 0, 'c.cancel_flag' => 0, 'a.ticket_group_id' => $ticket_group_id, 'b.supplier_type' => 301, 'c.id' => $user_id);
  200. }
  201. $default = self::getDefault();//默认模板
  202. $channels = self::getEnableChannels();//可添加渠道
  203. //$isAdmin = self::judgeAdmin();//是否是管理组
  204. $isAdmin = ($user_id == 1) ? 1 : 0;//暂时改为只有admin用户才可以修改
  205. $obj = OperaTicketsGroup::find()->where(['id' => $ticket_group_id])->one();
  206. $ticket_name = $obj ? $obj->STATION_NAME : '';
  207. //2,根据user_id得到指定票种的可见短信模板
  208. $arr = self::find()->select([
  209. 'a.id',
  210. 'a.supplier_id',
  211. 'a.ticket_group_id',
  212. 'a.content1',
  213. 'a.content2',
  214. 'a.content3',
  215. 'b.supplier_name'
  216. ])->from(self::tableName() . ' as a')
  217. ->leftJoin(BaseSupplier::tableName() . ' as b', 'a.supplier_id=b.id')
  218. ->leftJoin(BaseUser::tableName() . ' as c', 'b.main_corp_id=c.main_corp_id')
  219. ->where($where)
  220. ->groupBy('a.supplier_id')
  221. ->orderBy('a.id')
  222. ->asArray()
  223. ->all();
  224. $template = array();
  225. $template['default'] = $default;
  226. $template['list'] = $arr;
  227. $template['channels'] = $channels;
  228. $template['isAdmin'] = $isAdmin;
  229. $template['ticket_name'] = $ticket_name;
  230. return $template;
  231. }
  232. /**
  233. * Function Description:渠道短信模板增加(批量插入)
  234. * Function Name: templateAdd
  235. * @param int $ticket_group_id
  236. * @param string $ticket_id
  237. * @param int $channel_id
  238. * @param string $template1
  239. * @param string $template2
  240. * @param string $template3
  241. *
  242. * @return mixed
  243. *
  244. * @author 温依莅
  245. */
  246. public function templateAdd($ticket_group_id, $ticket_id, $channel_id, $template1, $template2, $template3)
  247. {
  248. $user_id = Yii::$app->request->cookies->getValue('user_id', -1);
  249. //0,判断在数据库是否已有该渠道的模板
  250. $arr = self::judgeRepeat($ticket_group_id, $channel_id);
  251. if (!empty($arr)) {
  252. $json['code'] = '1';
  253. $json["info"] = '该渠道已有模板,请勿重复添加';
  254. return $json;
  255. }
  256. //0,判断短信模板格式
  257. /*$re1=self::templatePreg($template1);
  258. $re2=self::templatePreg($template2);
  259. $re3=self::templatePreg($template3);
  260. if(($re1+$re2+$re3)!=3){
  261. $json['code'] = '1';
  262. $json['info'] = '左右大括号不匹配,请检查是否有缺少';
  263. return $json;
  264. }*/
  265. //1,处理ticket_id集合,得到需要批量插入的数组数据date('Y-m-d H:i:s', time()),
  266. $ticket_arr = explode(',', $ticket_id);
  267. $matrix = array();
  268. foreach ($ticket_arr as $k => $v) {
  269. $matrix[] = [
  270. 'supplier_id' => $channel_id,
  271. 'ticket_group_id' => $ticket_group_id,
  272. 'ticket_id' => $v,
  273. 'content1' => $template1,
  274. 'content2' => $template2,
  275. 'content3' => $template3,
  276. 'create_user_id' => $user_id,
  277. 'create_time' => date('Y-m-d H:i:s', time()),
  278. 'update_user_id' => $user_id,
  279. 'update_time' => date('Y-m-d H:i:s', time()),
  280. 'template_type' => 2,
  281. 'cancel_flag' => 0,
  282. ];
  283. }
  284. //将渠道模板批量插入opera_message_template表
  285. try {
  286. $transaction = Yii::$app->db->beginTransaction();
  287. $res = Yii::$app->db->createCommand()->batchInsert('opera_message_template',
  288. ['supplier_id', 'ticket_group_id', 'ticket_id', 'content1', 'content2', 'content3', 'create_user_id', 'create_time', 'update_user_id', 'update_time', 'template_type', 'cancel_flag'],
  289. $matrix)->execute();
  290. if (!$res) {
  291. throw new Exception('opera_message_template插入出错');
  292. }
  293. $transaction->commit();
  294. $json['code'] = '0';
  295. $json['info'] = '渠道模板添加成功';
  296. return $json;
  297. } catch (Exception $e) {
  298. # 回滚事务
  299. $transaction->rollBack();
  300. $json['code'] = '1';
  301. $json["info"] = '渠道模板添加失败';
  302. $json['error_info'] = $e->getMessage();
  303. return $json;
  304. }
  305. }
  306. /**
  307. * Function Description:渠道短信模板修改(批量修改)
  308. * Function Name: templateModify
  309. * @param int $ticket_group_id
  310. * @param string $ticket_id
  311. * @param int $channel_id
  312. * @param string $template1
  313. * @param string $template2
  314. * @param string $template3
  315. *
  316. * @return mixed
  317. *
  318. * @author 温依莅
  319. */
  320. public function templateModify($ticket_group_id, $ticket_id, $channel_id, $template1, $template2, $template3)
  321. {
  322. $user_id = Yii::$app->request->cookies->getValue('user_id', -1);
  323. //0,判断短信模板格式
  324. /*$re1=self::templatePreg($template1);
  325. $re2=self::templatePreg($template2);
  326. $re3=self::templatePreg($template3);
  327. if(($re1+$re2+$re3)!=3){
  328. $json['code'] = '1';
  329. $json['info'] = '左右大括号不匹配,请检查是否有缺少';
  330. return $json;
  331. }*/
  332. //将批量修改该渠道的模板
  333. try {
  334. $transaction = Yii::$app->db->beginTransaction();
  335. //更新条件
  336. $update_where = [
  337. 'and', ['ticket_group_id' => $ticket_group_id], ['supplier_id' => $channel_id], ['cancel_flag' => 0], ['template_type' => 2]
  338. ];
  339. //更新数据
  340. $update_data = [
  341. 'content1' => $template1,
  342. 'content2' => $template2,
  343. 'content3' => $template3,
  344. 'update_user_id' => $user_id,
  345. 'update_time' => date('Y-m-d H:i:s', time())
  346. ];
  347. $rows = self::updateAll($update_data, $update_where);
  348. if (!$rows) {
  349. throw new Exception(self::getErrors());
  350. }
  351. $transaction->commit();
  352. $json['code'] = '0';
  353. $json['info'] = '渠道模板修改成功';
  354. return $json;
  355. } catch (Exception $e) {
  356. # 回滚事务
  357. $transaction->rollBack();
  358. $json['code'] = '1';
  359. $json["info"] = '渠道模板修改失败';
  360. $json['error_info'] = $e->getMessage();
  361. return $json;
  362. }
  363. }
  364. /**
  365. * Function Description:默认短信模板修改(只有管理组可以修改)
  366. * Function Name: templateModifyDefault
  367. * @param string $template1
  368. * @param string $template2
  369. * @param string $template3
  370. *
  371. * @return mixed
  372. *
  373. * @author 温依莅
  374. */
  375. public function templateModifyDefault($template1, $template2, $template3)
  376. {
  377. $user_id = Yii::$app->request->cookies->getValue('user_id', -1);
  378. //判断权限是否可以修改
  379. //$isAdmin = self::judgeAdmin();
  380. $isAdmin = ($user_id == 1) ? 1 : 0;//暂时改为只有admin用户可以修改默认模板
  381. if (!$isAdmin) {
  382. $json['code'] = '1';
  383. $json["info"] = '无修改权限';
  384. return $json;
  385. }
  386. //0,判断短信模板格式
  387. $re1 = self::templatePreg($template1);
  388. $re2 = self::templatePreg($template2);
  389. $re3 = self::templatePreg($template3);
  390. if (($re1 + $re2 + $re3) != 3) {
  391. $json['code'] = '1';
  392. $json['info'] = '左右大括号不匹配,请检查是否有缺少';
  393. return $json;
  394. }
  395. //修改默认短信模板
  396. try {
  397. $transaction = Yii::$app->db->beginTransaction();
  398. //更新条件
  399. $update_where = [
  400. 'and', ['cancel_flag' => 0], ['template_type' => 0]
  401. ];
  402. //更新数据
  403. $update_data = [
  404. 'content1' => $template1,
  405. 'content2' => $template2,
  406. 'content3' => $template3,
  407. 'update_user_id' => $user_id,
  408. 'update_time' => date('Y-m-d H:i:s', time())
  409. ];
  410. $rows = self::updateAll($update_data, $update_where);
  411. if (!$rows) {
  412. throw new Exception(self::getErrors());
  413. }
  414. $transaction->commit();
  415. $json['code'] = '0';
  416. $json['info'] = '默认模板修改成功';
  417. return $json;
  418. } catch (Exception $e) {
  419. # 回滚事务
  420. $transaction->rollBack();
  421. $json['code'] = '1';
  422. $json["info"] = '默认模板修改失败';
  423. $json['error_info'] = $e->getMessage();
  424. return $json;
  425. }
  426. }
  427. /**
  428. * Function Description:渠道短信模板删除
  429. * Function Name: templateDelete
  430. * @param int $ticket_group_id
  431. * @param int $channel_id
  432. *
  433. * @return mixed
  434. *
  435. * @author 温依莅
  436. */
  437. public function templateDelete($ticket_group_id, $channel_id)
  438. {
  439. $user_id = Yii::$app->request->cookies->getValue('user_id', -1);
  440. //将批量删除该渠道的模板
  441. try {
  442. $transaction = Yii::$app->db->beginTransaction();
  443. //删除条件
  444. $update_where = [
  445. 'and', ['ticket_group_id' => $ticket_group_id], ['supplier_id' => $channel_id], ['cancel_flag' => 0], ['template_type' => 2]
  446. ];
  447. //更新数据
  448. $update_data = [
  449. 'cancel_flag' => 1,
  450. 'update_user_id' => $user_id,
  451. 'update_time' => date('Y-m-d H:i:s', time())
  452. ];
  453. $rows = self::updateAll($update_data, $update_where);
  454. if (!$rows) {
  455. throw new Exception(self::getErrors());
  456. }
  457. $transaction->commit();
  458. $json['code'] = '0';
  459. $json['info'] = '渠道模板删除成功';
  460. return $json;
  461. } catch (Exception $e) {
  462. # 回滚事务
  463. $transaction->rollBack();
  464. $json['code'] = '1';
  465. $json["info"] = '渠道模板删除失败';
  466. $json['error_info'] = $e->getMessage();
  467. return $json;
  468. }
  469. }
  470. }