Certificate.php 17 KB

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