Certificate.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498
  1. <?php
  2. namespace app\admin\controller\books;
  3. use app\admin\library\Auth;
  4. use app\common\controller\Backend;
  5. use PhpOffice\PhpSpreadsheet\Cell\Coordinate;
  6. use PhpOffice\PhpSpreadsheet\Reader\Csv;
  7. use PhpOffice\PhpSpreadsheet\Reader\Xls;
  8. use PhpOffice\PhpSpreadsheet\Reader\Xlsx;
  9. use think\Db;
  10. use think\db\exception\BindParamException;
  11. use think\db\exception\DataNotFoundException;
  12. use think\db\exception\ModelNotFoundException;
  13. use think\exception\DbException;
  14. use think\exception\PDOException;
  15. use think\exception\ValidateException;
  16. use think\response\Json;
  17. /**
  18. * 体验卡管理
  19. *
  20. * @icon fa fa-certificate
  21. */
  22. class Certificate extends Backend
  23. {
  24. /**
  25. * Certificate模型对象
  26. * @var \app\admin\model\books\Certificate
  27. */
  28. protected $model = null;
  29. public function _initialize()
  30. {
  31. parent::_initialize();
  32. $this->model = new \app\admin\model\books\Certificate;
  33. $this->view->assign("statusList", $this->model->getStatusList());
  34. $this->view->assign("isExpireList", $this->model->getIsExpireList());
  35. }
  36. /**
  37. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  38. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  39. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  40. */
  41. /**
  42. * 查看
  43. *
  44. * @return string|Json
  45. * @throws \think\Exception
  46. * @throws DbException
  47. */
  48. public function index()
  49. {
  50. //设置过滤方法
  51. $this->request->filter(['strip_tags', 'trim']);
  52. if (false === $this->request->isAjax()) {
  53. return $this->view->fetch();
  54. }
  55. //如果发送的来源是 Selectpage,则转发到 Selectpage
  56. if ($this->request->request('keyField')) {
  57. return $this->selectpage();
  58. }
  59. [$where, $sort, $order, $offset, $limit] = $this->buildparams();
  60. $list = $this->model
  61. ->where($where)
  62. ->with(['user','goods'])
  63. ->where('is_deleted',1)
  64. ->order($sort, $order)
  65. ->paginate($limit);
  66. $result = ['total' => $list->total(), 'rows' => $list->items()];
  67. return json($result);
  68. }
  69. /**
  70. * 回收站
  71. *
  72. * @return string|Json
  73. * @throws \think\Exception
  74. */
  75. public function recyclebin()
  76. {
  77. //设置过滤方法
  78. $this->request->filter(['strip_tags', 'trim']);
  79. if (false === $this->request->isAjax()) {
  80. return $this->view->fetch();
  81. }
  82. [$where, $sort, $order, $offset, $limit] = $this->buildparams();
  83. $list = $this->model
  84. ->onlyTrashed()
  85. ->where($where)
  86. ->order($sort, $order)
  87. ->paginate($limit);
  88. $result = ['total' => $list->total(), 'rows' => $list->items()];
  89. return json($result);
  90. }
  91. /**
  92. * 添加
  93. *
  94. * @return string
  95. * @throws \think\Exception
  96. */
  97. public function add()
  98. {
  99. if (false === $this->request->isPost()) {
  100. return $this->view->fetch();
  101. }
  102. $params = $this->request->post('row/a');
  103. if (empty($params)) {
  104. $this->error(__('Parameter %s can not be empty', ''));
  105. }
  106. $params = $this->preExcludeFields($params);
  107. if ($this->dataLimit && $this->dataLimitFieldAutoFill) {
  108. $params[$this->dataLimitField] = $this->auth->id;
  109. }
  110. $result = false;
  111. Db::startTrans();
  112. try {
  113. //是否采用模型验证
  114. if ($this->modelValidate) {
  115. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  116. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.add' : $name) : $this->modelValidate;
  117. $this->model->validateFailException()->validate($validate);
  118. }
  119. $params['free_start_time'] = date("Y-m-d H:i:s");
  120. $params['free_end_time'] = $params["effective_time"];
  121. $params['status'] = 1;
  122. $result = $this->model->allowField(true)->save($params);
  123. Db::commit();
  124. } catch (ValidateException|PDOException|Exception $e) {
  125. Db::rollback();
  126. $this->error($e->getMessage());
  127. }
  128. if ($result === false) {
  129. $this->error(__('No rows were inserted'));
  130. }
  131. $this->success();
  132. }
  133. /**
  134. * 编辑
  135. *
  136. * @param $ids
  137. * @return string
  138. * @throws DbException
  139. * @throws \think\Exception
  140. */
  141. public function edit($ids = null)
  142. {
  143. $row = $this->model->get($ids);
  144. if (!$row) {
  145. $this->error(__('No Results were found'));
  146. }
  147. $adminIds = $this->getDataLimitAdminIds();
  148. if (is_array($adminIds) && !in_array($row[$this->dataLimitField], $adminIds)) {
  149. $this->error(__('You have no permission'));
  150. }
  151. if (false === $this->request->isPost()) {
  152. $this->view->assign('row', $row);
  153. return $this->view->fetch();
  154. }
  155. $params = $this->request->post('row/a');
  156. if (empty($params)) {
  157. $this->error(__('Parameter %s can not be empty', ''));
  158. }
  159. $params = $this->preExcludeFields($params);
  160. $result = false;
  161. Db::startTrans();
  162. try {
  163. //是否采用模型验证
  164. if ($this->modelValidate) {
  165. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  166. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
  167. $row->validateFailException()->validate($validate);
  168. }
  169. $result = $row->allowField(true)->save($params);
  170. Db::commit();
  171. } catch (ValidateException|PDOException|Exception $e) {
  172. Db::rollback();
  173. $this->error($e->getMessage());
  174. }
  175. if (false === $result) {
  176. $this->error(__('No rows were updated'));
  177. }
  178. $this->success();
  179. }
  180. /**
  181. * 删除
  182. *
  183. * @param $ids
  184. * @return void
  185. * @throws DbException
  186. * @throws DataNotFoundException
  187. * @throws ModelNotFoundException
  188. */
  189. public function del($ids = null)
  190. {
  191. if (false === $this->request->isPost()) {
  192. $this->error(__("Invalid parameters"));
  193. }
  194. $ids = $ids ?: $this->request->post("ids");
  195. if (empty($ids)) {
  196. $this->error(__('Parameter %s can not be empty', 'ids'));
  197. }
  198. $pk = $this->model->getPk();
  199. $adminIds = $this->getDataLimitAdminIds();
  200. if (is_array($adminIds)) {
  201. $this->model->where($this->dataLimitField, 'in', $adminIds);
  202. }
  203. $list = $this->model->where($pk, 'in', $ids)->select();
  204. $count = 0;
  205. Db::startTrans();
  206. try {
  207. $arr = ['is_deleted' => 0];
  208. foreach ($list as $item) {
  209. $count += $item->where('id',$item['id'])->update($arr);
  210. }
  211. Db::commit();
  212. } catch (PDOException|Exception $e) {
  213. Db::rollback();
  214. $this->error($e->getMessage());
  215. }
  216. if ($count) {
  217. $this->success();
  218. }
  219. $this->error(__('No rows were deleted'));
  220. }
  221. /**
  222. * 真实删除
  223. *
  224. * @param $ids
  225. * @return void
  226. */
  227. public function destroy($ids = null)
  228. {
  229. if (false === $this->request->isPost()) {
  230. $this->error(__("Invalid parameters"));
  231. }
  232. $ids = $ids ?: $this->request->post('ids');
  233. $pk = $this->model->getPk();
  234. $adminIds = $this->getDataLimitAdminIds();
  235. if (is_array($adminIds)) {
  236. $this->model->where($this->dataLimitField, 'in', $adminIds);
  237. }
  238. if ($ids) {
  239. $this->model->where($pk, 'in', $ids);
  240. }
  241. $count = 0;
  242. Db::startTrans();
  243. try {
  244. $list = $this->model->onlyTrashed()->select();
  245. foreach ($list as $item) {
  246. $count += $item->delete(true);
  247. }
  248. Db::commit();
  249. } catch (PDOException|Exception $e) {
  250. Db::rollback();
  251. $this->error($e->getMessage());
  252. }
  253. if ($count) {
  254. $this->success();
  255. }
  256. $this->error(__('No rows were deleted'));
  257. }
  258. /**
  259. * 还原
  260. *
  261. * @param $ids
  262. * @return void
  263. */
  264. public function restore($ids = null)
  265. {
  266. if (false === $this->request->isPost()) {
  267. $this->error(__('Invalid parameters'));
  268. }
  269. $ids = $ids ?: $this->request->post('ids');
  270. $pk = $this->model->getPk();
  271. $adminIds = $this->getDataLimitAdminIds();
  272. if (is_array($adminIds)) {
  273. $this->model->where($this->dataLimitField, 'in', $adminIds);
  274. }
  275. if ($ids) {
  276. $this->model->where($pk, 'in', $ids);
  277. }
  278. $count = 0;
  279. Db::startTrans();
  280. try {
  281. $list = $this->model->onlyTrashed()->select();
  282. foreach ($list as $item) {
  283. $count += $item->restore();
  284. }
  285. Db::commit();
  286. } catch (PDOException|Exception $e) {
  287. Db::rollback();
  288. $this->error($e->getMessage());
  289. }
  290. if ($count) {
  291. $this->success();
  292. }
  293. $this->error(__('No rows were updated'));
  294. }
  295. /**
  296. * 批量更新
  297. *
  298. * @param $ids
  299. * @return void
  300. */
  301. public function multi($ids = null)
  302. {
  303. if (false === $this->request->isPost()) {
  304. $this->error(__('Invalid parameters'));
  305. }
  306. $ids = $ids ?: $this->request->post('ids');
  307. if (empty($ids)) {
  308. $this->error(__('Parameter %s can not be empty', 'ids'));
  309. }
  310. if (false === $this->request->has('params')) {
  311. $this->error(__('No rows were updated'));
  312. }
  313. parse_str($this->request->post('params'), $values);
  314. $values = $this->auth->isSuperAdmin() ? $values : array_intersect_key($values, array_flip(is_array($this->multiFields) ? $this->multiFields : explode(',', $this->multiFields)));
  315. if (empty($values)) {
  316. $this->error(__('You have no permission'));
  317. }
  318. $adminIds = $this->getDataLimitAdminIds();
  319. if (is_array($adminIds)) {
  320. $this->model->where($this->dataLimitField, 'in', $adminIds);
  321. }
  322. $count = 0;
  323. Db::startTrans();
  324. try {
  325. $list = $this->model->where($this->model->getPk(), 'in', $ids)->select();
  326. foreach ($list as $item) {
  327. $count += $item->allowField(true)->isUpdate(true)->save($values);
  328. }
  329. Db::commit();
  330. } catch (PDOException|Exception $e) {
  331. Db::rollback();
  332. $this->error($e->getMessage());
  333. }
  334. if ($count) {
  335. $this->success();
  336. }
  337. $this->error(__('No rows were updated'));
  338. }
  339. /**
  340. * 导入
  341. *
  342. * @return void
  343. * @throws PDOException
  344. * @throws BindParamException
  345. */
  346. protected function import()
  347. {
  348. $file = $this->request->request('file');
  349. if (!$file) {
  350. $this->error(__('Parameter %s can not be empty', 'file'));
  351. }
  352. $filePath = ROOT_PATH . DS . 'public' . DS . $file;
  353. if (!is_file($filePath)) {
  354. $this->error(__('No results were found'));
  355. }
  356. //实例化reader
  357. $ext = pathinfo($filePath, PATHINFO_EXTENSION);
  358. if (!in_array($ext, ['csv', 'xls', 'xlsx'])) {
  359. $this->error(__('Unknown data format'));
  360. }
  361. if ($ext === 'csv') {
  362. $file = fopen($filePath, 'r');
  363. $filePath = tempnam(sys_get_temp_dir(), 'import_csv');
  364. $fp = fopen($filePath, 'w');
  365. $n = 0;
  366. while ($line = fgets($file)) {
  367. $line = rtrim($line, "\n\r\0");
  368. $encoding = mb_detect_encoding($line, ['utf-8', 'gbk', 'latin1', 'big5']);
  369. if ($encoding !== 'utf-8') {
  370. $line = mb_convert_encoding($line, 'utf-8', $encoding);
  371. }
  372. if ($n == 0 || preg_match('/^".*"$/', $line)) {
  373. fwrite($fp, $line . "\n");
  374. } else {
  375. fwrite($fp, '"' . str_replace(['"', ','], ['""', '","'], $line) . "\"\n");
  376. }
  377. $n++;
  378. }
  379. fclose($file) || fclose($fp);
  380. $reader = new Csv();
  381. } elseif ($ext === 'xls') {
  382. $reader = new Xls();
  383. } else {
  384. $reader = new Xlsx();
  385. }
  386. //导入文件首行类型,默认是注释,如果需要使用字段名称请使用name
  387. $importHeadType = isset($this->importHeadType) ? $this->importHeadType : 'comment';
  388. $table = $this->model->getQuery()->getTable();
  389. $database = \think\Config::get('database.database');
  390. $fieldArr = [];
  391. $list = db()->query("SELECT COLUMN_NAME,COLUMN_COMMENT FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = ? AND TABLE_SCHEMA = ?", [$table, $database]);
  392. foreach ($list as $k => $v) {
  393. if ($importHeadType == 'comment') {
  394. $v['COLUMN_COMMENT'] = explode(':', $v['COLUMN_COMMENT'])[0]; //字段备注有:时截取
  395. $fieldArr[$v['COLUMN_COMMENT']] = $v['COLUMN_NAME'];
  396. } else {
  397. $fieldArr[$v['COLUMN_NAME']] = $v['COLUMN_NAME'];
  398. }
  399. }
  400. //加载文件
  401. $insert = [];
  402. try {
  403. if (!$PHPExcel = $reader->load($filePath)) {
  404. $this->error(__('Unknown data format'));
  405. }
  406. $currentSheet = $PHPExcel->getSheet(0); //读取文件中的第一个工作表
  407. $allColumn = $currentSheet->getHighestDataColumn(); //取得最大的列号
  408. $allRow = $currentSheet->getHighestRow(); //取得一共有多少行
  409. $maxColumnNumber = Coordinate::columnIndexFromString($allColumn);
  410. $fields = [];
  411. for ($currentRow = 1; $currentRow <= 1; $currentRow++) {
  412. for ($currentColumn = 1; $currentColumn <= $maxColumnNumber; $currentColumn++) {
  413. $val = $currentSheet->getCellByColumnAndRow($currentColumn, $currentRow)->getValue();
  414. $fields[] = $val;
  415. }
  416. }
  417. for ($currentRow = 2; $currentRow <= $allRow; $currentRow++) {
  418. $values = [];
  419. for ($currentColumn = 1; $currentColumn <= $maxColumnNumber; $currentColumn++) {
  420. $val = $currentSheet->getCellByColumnAndRow($currentColumn, $currentRow)->getValue();
  421. $values[] = is_null($val) ? '' : $val;
  422. }
  423. $row = [];
  424. $temp = array_combine($fields, $values);
  425. foreach ($temp as $k => $v) {
  426. if (isset($fieldArr[$k]) && $k !== '') {
  427. $row[$fieldArr[$k]] = $v;
  428. }
  429. }
  430. if ($row) {
  431. $insert[] = $row;
  432. }
  433. }
  434. } catch (Exception $exception) {
  435. $this->error($exception->getMessage());
  436. }
  437. if (!$insert) {
  438. $this->error(__('No rows were updated'));
  439. }
  440. try {
  441. //是否包含admin_id字段
  442. $has_admin_id = false;
  443. foreach ($fieldArr as $name => $key) {
  444. if ($key == 'admin_id') {
  445. $has_admin_id = true;
  446. break;
  447. }
  448. }
  449. if ($has_admin_id) {
  450. $auth = Auth::instance();
  451. foreach ($insert as &$val) {
  452. if (!isset($val['admin_id']) || empty($val['admin_id'])) {
  453. $val['admin_id'] = $auth->isLogin() ? $auth->id : 0;
  454. }
  455. }
  456. }
  457. $this->model->saveAll($insert);
  458. } catch (PDOException $exception) {
  459. $msg = $exception->getMessage();
  460. if (preg_match("/.+Integrity constraint violation: 1062 Duplicate entry '(.+)' for key '(.+)'/is", $msg, $matches)) {
  461. $msg = "导入失败,包含【{$matches[1]}】的记录已存在";
  462. };
  463. $this->error($msg);
  464. } catch (Exception $e) {
  465. $this->error($e->getMessage());
  466. }
  467. $this->success();
  468. }
  469. }