Pricing.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\model\Goods;
  5. use app\common\model\DiscountCoupon;
  6. use addons\epay\controller\Index;
  7. use app\common\model\Order;
  8. use app\common\model\Cart;
  9. use think\Exception;
  10. use think\Db;
  11. /**
  12. * 定价接口
  13. */
  14. class Pricing extends Api
  15. {
  16. protected $noNeedLogin = ['goodslist'];
  17. protected $noNeedRight = ['*'];
  18. /**
  19. *定价产品列表
  20. */
  21. public function goodslist(){
  22. $list = Goods::field('id,name,price,retail,image')->select();
  23. $list?$this->success('请求成功',$list):$this->error('请求失败',$list);
  24. }
  25. /**
  26. *定价产品详情
  27. */
  28. public function gooddetail(){
  29. $gooddetail = Goods::where('id',input('id'))->field('id,name,price,retail,image,after_sale')->find();
  30. $gooddetail?$this->success('请求成功',$gooddetail):$this->error('请求失败',$gooddetail);
  31. }
  32. /**
  33. * 定价产品下单支付
  34. */
  35. public function place_order(){
  36. if(input('deploy_type') && empty(input('deploy'))){
  37. $this->error('请填写授权部署信息');
  38. }
  39. $data = [
  40. 'uid' => $this->auth->id,
  41. 'type' => 1,
  42. 'goods_id' => input('goods_id'),
  43. 'goods_name' => Goods::where('id',input('goods_id'))->value('name'),
  44. 'order_no' => $this->pay_no($this->auth->id),
  45. 'amount_real' => input('amount_real'),
  46. 'discount_id' => input('discount_id'),
  47. 'discount' => DiscountCoupon::where('id',input('discount_id'))->value('price'),
  48. 'payment_type' => input('payment_type'),
  49. 'number_goods' => input('number_goods'),
  50. 'deploy_type' => input('deploy_type'),
  51. 'deploy' => input('deploy'),
  52. ];
  53. Db::startTrans();
  54. try {
  55. Order::create($data);
  56. // $this->pay_order($data['amount_real'],$data['order_no'],$data['payment_type'],$data['goods_name'],'scan');
  57. Db::commit();
  58. }catch (Exception $exception){
  59. Db::rollback();
  60. $this->error($exception);
  61. return false;
  62. }
  63. }
  64. /**
  65. * 定价产品支付
  66. */
  67. public function pay_order($amount,$orderid,$type,$title,$method){
  68. $params = [
  69. 'amount'=>$amount,
  70. 'orderid'=>$orderid,
  71. 'type'=>$type,//可选alipay或wechat
  72. 'title'=>$title,
  73. 'notifyurl'=>"回调地址",
  74. 'returnurl'=>"返回地址",
  75. 'method'=>$method
  76. // 'openid'=>"用户的OpenID",
  77. // 'auth_code'=>"验证码"
  78. ];
  79. \addons\epay\library\Service::submitOrder($params);
  80. }
  81. /**
  82. * 生成订单号
  83. */
  84. public function pay_no($uid){
  85. $time_str = date('YmdHi');
  86. $pay_no = 'PAY'.$time_str . rand(00000,99999).$uid;
  87. return $pay_no;
  88. }
  89. /**
  90. * 加入购物车
  91. */
  92. public function add_cart(){
  93. $cart = Cart::get(['user_id'=>$this->auth->id,'goods_id'=>input('goods_id')]);
  94. if ($cart){
  95. $cart->setInc('num',1);
  96. $this->success('添加成功');
  97. }else{
  98. Cart::create(['user_id'=>$this->auth->id,'goods_id'=>input('goods_id')]);
  99. $this->success('添加成功');
  100. }
  101. }
  102. }