截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SeckillTimeLogic.php 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?php
  2. namespace app\admin\logic\seckill;
  3. use app\common\basics\Logic;
  4. use app\common\model\seckill\SeckillTime;
  5. use app\common\model\seckill\SeckillGoods;
  6. use think\facade\Db;
  7. class SeckillTimeLogic extends Logic
  8. {
  9. public static function addTime($post){
  10. try{
  11. $post['create_time'] = time();
  12. $post['update_time'] = time();
  13. SeckillTime::create($post);
  14. return true;
  15. }catch(\Exception $e) {
  16. self::$error = $e->getMessage();
  17. return false;
  18. }
  19. }
  20. public static function timeList($get){
  21. $where[] = ['del','=',0];
  22. $count = SeckillTime::where($where)->count();
  23. $list = SeckillTime::where($where)
  24. ->order('start_time asc')
  25. ->page($get['page'], $get['limit'])
  26. ->select()
  27. ->toArray();
  28. foreach ($list as &$item){
  29. $item['time'] = $item['start_time'].' ~ '.$item['end_time'];
  30. }
  31. return ['count' => $count, 'list' => $list];
  32. }
  33. public static function getTime($id){
  34. $seckillTime = SeckillTime::where(['del'=>0, 'id'=>$id])->findOrEmpty();
  35. if($seckillTime->isEmpty()) {
  36. return [];
  37. }
  38. return $seckillTime->toArray();
  39. }
  40. public static function editTime($post){
  41. try{
  42. $post['update_time'] = time();
  43. SeckillTime::where(['id'=>$post['id']])->update($post);
  44. return true;
  45. }catch(\Exception $e) {
  46. self::$error = $e->getMessage();
  47. return false;
  48. }
  49. }
  50. public static function delTime($id){
  51. Db::startTrans();
  52. try{
  53. $update_data = [
  54. 'update_time' => time(),
  55. 'del' => 1,
  56. ];
  57. SeckillTime::where(['id'=>$id])->update($update_data);
  58. SeckillGoods::where(['del'=>0, 'seckill_id'=>$id])->update($update_data);
  59. Db::commit();
  60. return true;
  61. }catch(\Exception $e) {
  62. self::$error = $e->getMessage();
  63. Db::rollback();
  64. return false;
  65. }
  66. }
  67. }