|
@@ -50,9 +50,15 @@ class Pricing extends Api
|
|
|
/**
|
|
|
* 定价产品下单支付
|
|
|
* @ApiMethod (POST)
|
|
|
+ * @ApiParams (name="deploy_type",description="部署方式0自己部署 1授权部署")
|
|
|
+ * @ApiParams (name="deploy",description="授权部署信息(授权部署时传)")
|
|
|
+ * @ApiParams (name="type",description="1页面下单,2是购物车下单")
|
|
|
+ * @ApiParams (name="cart_id",description="购物车id(购物车下单时传)")
|
|
|
+ * @ApiParams (name="goods_id",description="商品id")
|
|
|
+ * @ApiParams (name="amount_real",description="订单金额")
|
|
|
*/
|
|
|
public function place_order(){
|
|
|
- if(input('deploy_type') && empty(input('deploy'))){
|
|
|
+ if(input('deploy_type')==1 && empty(input('deploy'))){
|
|
|
$this->error('请填写授权部署信息');
|
|
|
}
|
|
|
$data = [
|
|
@@ -60,18 +66,21 @@ class Pricing extends Api
|
|
|
'type' => 1,
|
|
|
'goods_id' => input('goods_id'),
|
|
|
'goods_name' => Goods::where('id',input('goods_id'))->value('name'),
|
|
|
- 'order_no' => $this->pay_no($this->auth->id),
|
|
|
+ 'order_no' => pay_no($this->auth->id),
|
|
|
'amount_real' => input('amount_real'),
|
|
|
'discount_id' => input('discount_id'),
|
|
|
'discount' => DiscountCoupon::where('id',input('discount_id'))->value('price'),
|
|
|
- 'payment_type' => input('payment_type'),
|
|
|
- 'number_goods' => input('number_goods'),
|
|
|
+// 'payment_type' => input('payment_type'),
|
|
|
+ 'number_goods' => 1,
|
|
|
'deploy_type' => input('deploy_type'),
|
|
|
'deploy' => input('deploy'),
|
|
|
];
|
|
|
Db::startTrans();
|
|
|
try {
|
|
|
Order::create($data);
|
|
|
+ if(input('type')==2){
|
|
|
+ Cart::where('id',input('cart_id'))->delete();
|
|
|
+ }
|
|
|
// $this->pay_order($data['amount_real'],$data['order_no'],$data['payment_type'],$data['goods_name'],'scan');
|
|
|
Db::commit();
|
|
|
}catch (Exception $exception){
|
|
@@ -85,7 +94,7 @@ class Pricing extends Api
|
|
|
* @ApiMethod (POST)
|
|
|
*/
|
|
|
public function pay_order($amount,$orderid,$type,$title,$method){
|
|
|
-
|
|
|
+ return '1';
|
|
|
$params = [
|
|
|
'amount'=>$amount,
|
|
|
'orderid'=>$orderid,
|
|
@@ -100,22 +109,44 @@ class Pricing extends Api
|
|
|
\addons\epay\library\Service::submitOrder($params);
|
|
|
}
|
|
|
|
|
|
- public function pay_no($uid){
|
|
|
- $time_str = date('YmdHi');
|
|
|
- $pay_no = 'PAY'.$time_str . rand(00000,99999).$uid;
|
|
|
- return $pay_no;
|
|
|
- }
|
|
|
+
|
|
|
/**
|
|
|
* 加入购物车
|
|
|
*/
|
|
|
public function add_cart(){
|
|
|
+ if(input('item') == 1 && !input('remark')){
|
|
|
+ $this->error('部署信息不能为空');
|
|
|
+ }
|
|
|
$cart = Cart::get(['user_id'=>$this->auth->id,'goods_id'=>input('goods_id')]);
|
|
|
if ($cart){
|
|
|
- $cart->setInc('num',1);
|
|
|
- $this->success('添加成功');
|
|
|
+ $this->success('购物车已存在该商品');
|
|
|
}else{
|
|
|
- Cart::create(['user_id'=>$this->auth->id,'goods_id'=>input('goods_id')]);
|
|
|
+ Cart::create(['user_id'=>$this->auth->id,'goods_id'=>input('goods_id'),'item'=>input('item'),'remark'=>input('remark')]);
|
|
|
$this->success('添加成功');
|
|
|
}
|
|
|
}
|
|
|
+ /**
|
|
|
+ * 申请开票
|
|
|
+ * @ApiParams (name="id",description="订单id")
|
|
|
+ * @ApiParams (name="invoice_type",description="发票类型 1普通发票2增值税发票")
|
|
|
+ * @ApiParams (name="invoice_shape",description="发票形式 1纸质发票2电子发票")
|
|
|
+ * @ApiParams (name="type",description="类型 1个人2企业")
|
|
|
+ * @ApiParams (name="name",description="抬头名称")
|
|
|
+ * @ApiParams (name="duty_paragraph",description="单位税号")
|
|
|
+ * @ApiParams (name="address",description="注册地址")
|
|
|
+ * @ApiParams (name="company_phone",description="公司电话")
|
|
|
+ * @ApiParams (name="bank",description="银行")
|
|
|
+ * @ApiParams (name="compellation",description="姓名")
|
|
|
+ * @ApiParams (name="phone",description="个人电话")
|
|
|
+ * @ApiParams (name="location",description="所在地")
|
|
|
+ * @ApiParams (name="postcode",description="邮编")
|
|
|
+ * @ApiParams (name="emial",description="邮箱")
|
|
|
+ */
|
|
|
+ public function make_ticket(){
|
|
|
+ if(input('type')==1) {
|
|
|
+ Order::where('id', input('id'))->save(['billing_status' => 1]);
|
|
|
+ }else if(input('type')==2){
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|