Goods.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  1. <?php
  2. namespace app\store\controller;
  3. use app\common\library\PHPExcelService;
  4. use library\Controller;
  5. use think\cache\driver\Redis;
  6. use think\Db;
  7. /**
  8. * 售卖商品
  9. * Class Goods
  10. * @package app\store\controller
  11. */
  12. class Goods extends Controller
  13. {
  14. /**
  15. * 绑定数据表
  16. * @var string
  17. */
  18. protected $table = 'store_collection';
  19. /**
  20. * 售卖商品列表
  21. * @auth true
  22. * @menu true
  23. * @throws \think\Exception
  24. * @throws \think\db\exception\DataNotFoundException
  25. * @throws \think\db\exception\ModelNotFoundException
  26. * @throws \think\exception\DbException
  27. * @throws \think\exception\PDOException
  28. */
  29. public function index()
  30. {
  31. checkCollectionState();
  32. $this->title = '售卖藏品管理';
  33. $query = $this->_query($this->table)->where('is_deleted',0)->like('name');
  34. $query->dateBetween('create_at')->where('type',1)->order('id desc')->page();
  35. }
  36. /**
  37. * 数据列表处理
  38. * @auth true
  39. * @menu true
  40. * @param array $data
  41. * @throws \think\db\exception\DataNotFoundException
  42. * @throws \think\db\exception\ModelNotFoundException
  43. * @throws \think\exception\DbException
  44. */
  45. protected function _index_page_filter(&$data)
  46. {
  47. foreach ($data as &$v){
  48. $checksell = $this->checkSellTime($v['id']);
  49. if (!$checksell){
  50. $v['is_save'] = 0;
  51. }else{
  52. $v['is_save'] = 1;
  53. }
  54. $v['zz']=Db::table('hash')->where('goods_id',$v['id'])->count();
  55. $now_inventory = getCollectionInventory($v['id']);
  56. $v['now_inventory'] = $now_inventory<=0 ? 0 : $now_inventory;
  57. $v['shengyu'] = Db::name('hash')->where('goods_id',$v['id'])->where('status',0)->count();
  58. }
  59. }
  60. /**
  61. * 添加商品
  62. * @auth true
  63. * @menu true
  64. * @throws \think\Exception
  65. * @throws \think\db\exception\DataNotFoundException
  66. * @throws \think\db\exception\ModelNotFoundException
  67. * @throws \think\exception\DbException
  68. * @throws \think\exception\PDOException
  69. */
  70. public function add()
  71. {
  72. $this->title = '添加藏品';
  73. $this->_form($this->table, 'form');
  74. }
  75. /**
  76. * 编辑商品
  77. * @auth true
  78. * @menu true
  79. * @throws \think\Exception
  80. * @throws \think\db\exception\DataNotFoundException
  81. * @throws \think\db\exception\ModelNotFoundException
  82. * @throws \think\exception\DbException
  83. * @throws \think\exception\PDOException
  84. */
  85. function edit()
  86. {
  87. $this->title = '编辑商品';
  88. $id = $this->request->get('id');
  89. $checksell = $this->checkSellTime($id);
  90. if (!$checksell) $this->error('藏品已经开始抢购或已过期,无法修改');
  91. $this->_form($this->table, 'form');
  92. }
  93. /**
  94. * 表单数据处理
  95. * @auth true
  96. * @menu true
  97. * @param array $data
  98. */
  99. protected function _form_filter(&$data)
  100. {
  101. if($this->request->post()){
  102. if (isset($data['id']) || !empty($data['id'])){
  103. $checksell = $this->checkSellTime($data['id']);
  104. if (!$checksell) $this->error('藏品已经开始抢购或已过期,无法修改');
  105. }
  106. if ($data['cover'] == '') $this->error('请上传藏品图片');
  107. if ($data['price']<=0) $this->error('藏品价格错误');
  108. if ($data['auth_img'] == '') $this->error('请上传作者头像');
  109. if ($data['describe'] == '') $this->error('请上传商品描述');
  110. if ($data['buy_count']<1) $this->error('限购数量不能小于1');
  111. //if ($data['share_img'] == '') $this->error('请上传分享二维码');
  112. $data['date'] = date('Y-m-d',strtotime($data['sell_time']));
  113. if (isset($data['id'])){
  114. $buy_count = Db::name('store_order_info')
  115. ->whereIn('status','1,3')
  116. ->where('c_id',$data['id'])
  117. ->count();
  118. }else{
  119. $buy_count = 0;
  120. }
  121. $data['type'] = 1;
  122. $data['now_inventory'] = $data['inventory']-$buy_count;
  123. }else{
  124. if (!empty($data)){
  125. $data['covers'] = $data['cover'];
  126. $data['auth_imgs'] = $data['auth_img'];
  127. $data['describes'] = $data['describe'];
  128. $data['share_imgs'] = $data['share_img'];
  129. }
  130. }
  131. }
  132. /**
  133. * 处理成功回调
  134. */
  135. public function _form_result($result,$data){
  136. if ($result) {
  137. setCollectionInfoHash($result);
  138. $redis = new Redis();
  139. $count = Db::name($this->table)->where('id',$result)->value('now_inventory');
  140. $redis->set('collection_count_'.$result,$count);
  141. $this->success('操作成功',url('/#/store/goods/index'));
  142. }
  143. }
  144. /**
  145. * @auth true
  146. * @menu true
  147. * 商品上架
  148. */
  149. public function up()
  150. {
  151. $data = $this->request->post();
  152. if (Db::name($this->table)->where('id',$data['id'])->update(['status'=>1])){
  153. setCollectionInfoHash($data['id']);
  154. $this->success('恭喜您,数据更新成功');
  155. }else{
  156. $this->error('数据更新失败');
  157. }
  158. }
  159. /**
  160. * @auth true
  161. * @menu true
  162. * 商品下架
  163. */
  164. public function down()
  165. {
  166. $data = $this->request->post();
  167. if (Db::name($this->table)->where('id',$data['id'])->update(['status'=>0])){
  168. setCollectionInfoHash($data['id']);
  169. $this->success('恭喜您,数据更新成功');
  170. }else{
  171. $this->error('数据更新失败');
  172. }
  173. //$this->_save($this->table, ['status' => '0']);
  174. }
  175. /**
  176. * @auth true
  177. * @menu true
  178. * 商品删除
  179. */
  180. public function del()
  181. {
  182. $data = $this->request->post();
  183. if (Db::name($this->table)->where('id',$data['id'])->update(['is_deleted'=>1])){
  184. setCollectionInfoHash($data['id']);
  185. $this->success('恭喜您,数据更新成功');
  186. }else{
  187. $this->error('数据更新失败');
  188. }
  189. //$this->_save($this->table, ['is_deleted' => '1']);
  190. }
  191. // public function _save_result($result){
  192. // if ($result){
  193. // setCollectionInfoHash($result);
  194. // }
  195. // }
  196. //判断是否已经抢购开始
  197. function checkSellTime($id){
  198. $sell_time = Db::name($this->table)->where('id',$id)->value('sell_time');
  199. $advance_minutes = getAdvanceMinutes();
  200. if ($advance_minutes>0){
  201. $sell_time = strtotime($sell_time)-($advance_minutes*60);
  202. }else{
  203. $sell_time = strtotime($sell_time);
  204. }
  205. if ($sell_time<=time()) return false;
  206. return true;
  207. }
  208. public function send(){
  209. if($this->request->post()){
  210. $data = $this->request->post();
  211. if (!isset($data['mid']) || $data['mid']==''){
  212. $this->error('请选择用户');
  213. }
  214. $inventory = Db::name($this->table)->where('id',$data['id'])->value('inventory');
  215. $info = Db::name($this->table)->where('id',$data['id'])->find();
  216. $redis = new Redis();
  217. $zhuzao_count = $redis->Llen('collectionHash_'.$data['id']);
  218. if ($zhuzao_count<$data['number']){
  219. $this->error('铸造的的数量不足,无法赠送');
  220. }
  221. $com = true;
  222. Db::startTrans();
  223. try {
  224. $array = [];
  225. for ($i=0;$i<$data['number'];$i++){
  226. //获取排名
  227. $rank = getRanking($data['id'])+1;
  228. $tag = getTag($data['id'],$rank,$inventory);
  229. saveRanking($data['id']);
  230. $company = '纪元部落有限公司';
  231. $hash = getCompanyHash($data['id']);
  232. $company_hash = $hash['hash'];
  233. $company_hash_time = $hash['create_at'];
  234. Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
  235. $collectors_hash = '';
  236. $date = [
  237. 'order_no'=>get_order_sn(),
  238. 'tag'=>$tag,
  239. 'mid'=>$data['mid'],
  240. 'c_id'=>$data['id'],
  241. 'name'=>$info['name'],
  242. 'cover'=>$info['cover'],
  243. 'pro_info'=>json_encode($info,true),
  244. 'company'=>$company,
  245. 'company_hash'=>$company_hash,
  246. 'company_hash_time'=>$company_hash_time,
  247. 'collectors_hash'=>$collectors_hash,
  248. 'collectors_hash_time'=>''
  249. ];
  250. $array[] = $date;
  251. }
  252. Db::name('store_order_info')->insertAll($array);
  253. Db::commit();
  254. } catch (\Exception $e){
  255. Db::rollback();
  256. $com = false;
  257. }
  258. if ($com){
  259. //减掉库存
  260. loseCollectionInventory($data['id'],$data['number']);
  261. $this->success('赠送成功');
  262. }else{
  263. $this->error('赠送失败');
  264. }
  265. }else{
  266. $id=$this->request->get('id');
  267. $this->assign('id',$id);
  268. $user = Db::name('store_member')->where('is_deleted',0)->field('id,name,phone')->select();
  269. $this->assign('user',$user);
  270. $this->fetch();
  271. }
  272. }
  273. public function hash(){
  274. if($this->request->post()){
  275. $id = $this->request->post('id');
  276. $number = $this->request->post('number');
  277. if ($number<=0){
  278. $this->error('数量错误');
  279. }
  280. if (Db::name('store_collection')->where('id',$id)->setInc('casting_num',$number)){
  281. $redis = new Redis();
  282. $redis->Incrby('castingHash_'.$id,$number);
  283. $this->success('增加成功,正在铸造中');
  284. }
  285. $this->error('增加失败,请稍后重试');
  286. }else{
  287. $id=$this->request->get('id');
  288. $this->assign('id',$id);
  289. $this->fetch();
  290. }
  291. }
  292. /**
  293. * 批量赠送
  294. * @auth true
  295. * @throws \think\Exception
  296. * @throws \think\exception\PDOException
  297. */
  298. public function import()
  299. {
  300. list($msec, $sec) = explode(' ', microtime());
  301. $msectime = (float)sprintf('%.0f', (floatval($msec) + floatval($sec)) * 1000); //毫秒值
  302. $get = $this->request->get();
  303. $import_path = $_SERVER['DOCUMENT_ROOT'].'/'.$get['path'];
  304. $url = $get['url'];
  305. $c_id = $get['c_id'];
  306. if (getConfigValue('storage_type')=='oss'){
  307. $save_dir = "./upload/excle/"; // 服务资源目录
  308. $filename = date('Ymd').time().".xlsx"; // 自定义名称
  309. $res = $this->getFile($url,$save_dir,$filename,1);
  310. $import_path = $_SERVER['DOCUMENT_ROOT'].'/upload/excle/'.$res;
  311. }
  312. $info = getCollectionInfoHash($c_id);
  313. $num = 1;
  314. try {
  315. $objReader =\PHPExcel_IOFactory::createReader('Excel2007');
  316. $objExcel = $objReader->load($import_path);
  317. $list = $objExcel->getActiveSheet()->toArray();
  318. $success = 0;
  319. $number = 0;
  320. $array = array();
  321. foreach ($list as $k=>$v){
  322. if($k>$num-1){
  323. if(array_filter($v)){
  324. $data=[];
  325. foreach ($v as $kk=>$vv){
  326. $data[IntToChr($kk)]=trim($vv);
  327. }
  328. $a['phone'] = $data['A'];
  329. $a['number'] = $data['B'];
  330. array_push($array,$a);
  331. $number = $number+$data['B'];
  332. }
  333. }
  334. }
  335. $redis = new Redis();
  336. $zhuzao_count = $redis->Llen('collectionHash_'.$c_id);
  337. if ($zhuzao_count<$number){
  338. $this->error('铸造的的数量不足,无法赠送',[],3);
  339. }
  340. $error = 0;
  341. $phone_error = array();
  342. foreach ($array as &$v){
  343. $member = Db::name('store_member')->where('phone',$v['phone'])->find();
  344. if (!$member){
  345. $error = $error+1;
  346. array_push($phone_error,$v['phone']);
  347. }else{
  348. $array1 = [];
  349. for ($i=0;$i<$v['number'];$i++){
  350. //获取排名
  351. $rank = getRanking($c_id)+1;
  352. $tag = getTag($c_id,$rank,$info['inventory']);
  353. saveRanking($c_id);
  354. $company = '纪元部落有限公司';
  355. $hash = getCompanyHash($c_id);
  356. $company_hash = $hash['hash'];
  357. $company_hash_time = $hash['create_at'];
  358. Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
  359. $collectors_hash = '';
  360. $date = [
  361. 'order_no'=>get_order_sn(),
  362. 'tag'=>$tag,
  363. 'mid'=>$member['id'],
  364. 'c_id'=>$c_id,
  365. 'name'=>$info['name'],
  366. 'cover'=>$info['cover'],
  367. 'pro_info'=>json_encode($info,true),
  368. 'company'=>$company,
  369. 'company_hash'=>$company_hash,
  370. 'company_hash_time'=>$company_hash_time,
  371. 'collectors_hash'=>$collectors_hash,
  372. 'collectors_hash_time'=>''
  373. ];
  374. $array1[] = $date;
  375. }
  376. if (Db::name('store_order_info')->insertAll($array1)){
  377. loseCollectionInventory($c_id,$v['number']);
  378. $success +=1;
  379. }else{
  380. $error = $error+1;
  381. }
  382. }
  383. }
  384. if ($error<1){
  385. $this->success('成功');
  386. }else{
  387. $this->error('失败',['error'=>$error,'success'=>$success,'phone_error'=>$phone_error],2);
  388. }
  389. } catch (\think\exception\ValidateException $e) {
  390. $this->error($e->getMessage());
  391. }
  392. }
  393. /**
  394. * 导出EXCL
  395. * @remark 根据WHERE条件导出EXCL
  396. * @param array $post 查询条件所需值
  397. * @return array
  398. */
  399. public function get_excl()
  400. {
  401. set_time_limit(300);
  402. $list = json_decode($this->request->get('phone'),true);
  403. $export = [];
  404. if (is_array($list)) {
  405. foreach ($list as $index => $item) {
  406. $export[] = [
  407. $item
  408. ];
  409. }
  410. }
  411. PHPExcelService::setExcelHeader(['手机号'])
  412. ->setExcelTile('错误手机号', '错误手机号', '手机号', time())
  413. ->setExcelContent($export)
  414. ->ExcelSave();
  415. }
  416. public function detail(){
  417. $id=$this->request->get('id');
  418. $this->title = Db::name($this->table)->where('id',$id)->value('name').'--铸造明细';
  419. $query = $this->_query('hash')->where('goods_id',$id);
  420. $query->dateBetween('create_at')->order('id desc')->page();
  421. $this->fetch();
  422. }
  423. public function curlRequest($url, $headers = [], $body = [], $method = "GET")
  424. {
  425. $ch = curl_init();
  426. curl_setopt($ch, CURLOPT_URL, $url);
  427. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);//设置请求头
  428. curl_setopt($ch, CURLOPT_POSTFIELDS, $body);//设置请求体
  429. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); //定义请求类型
  430. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  431. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  432. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  433. curl_setopt($ch, CURLOPT_HTTP_VERSION, 'CURL_HTTP_VERSION_1_1');
  434. $output = curl_exec($ch);
  435. curl_close($ch);
  436. return $output;
  437. }
  438. /**
  439. * 下载文件到服务器
  440. * addtime 2020年8月28日 18:38:43
  441. */
  442. function getFile($url, $save_dir = '', $filename = '', $type = 0)
  443. {
  444. if (trim($url) == '') {
  445. return false;
  446. }
  447. if (trim($save_dir) == '') {
  448. $save_dir = './';
  449. }
  450. if (0 !== strrpos($save_dir, '/')) {
  451. $save_dir.= '/';
  452. }
  453. //创建保存目录
  454. if (!file_exists($save_dir) && !mkdir($save_dir, 0777, true)) {
  455. return false;
  456. }
  457. //获取远程文件所采用的方法
  458. if ($type) {
  459. $ch = curl_init();
  460. $timeout = 5;
  461. curl_setopt($ch, CURLOPT_URL, $url);
  462. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  463. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
  464. $content = curl_exec($ch);
  465. curl_close($ch);
  466. } else {
  467. ob_start();
  468. readfile($url);
  469. $content = ob_get_contents();
  470. ob_end_clean();
  471. }
  472. $size = strlen($content);
  473. //文件大小
  474. $fp2 = @fopen($save_dir . $filename, 'a');
  475. fwrite($fp2, $content);
  476. fclose($fp2);
  477. unset($content, $url);
  478. return $filename;
  479. }
  480. }