qifengquan 1 yıl önce
ebeveyn
işleme
f958e02828

+ 30 - 3
application/admin/controller/user/User.php

@@ -2,8 +2,10 @@
 
 namespace app\admin\controller\user;
 
+use app\admin\model\Order;
 use app\common\controller\Backend;
 use app\common\library\Auth;
+use app\common\model\Goods;
 
 /**
  * 会员管理
@@ -102,18 +104,43 @@ class User extends Backend
         $this->success();
     }
     /**
-     * 详情
+     * 发送报价单
      */
     public function detail($ids)
     {
-        $row = $this->model->get(['id' => $ids]);
+        $params = $this->request->post('row/a');
+        $row = $this->model->field('id,username,mobile,company,company_site')->find(['id' => $ids]);
+        $goods = Goods::field('id as goods_id,name,price')->select();
         if (!$row) {
-            $this->error(__('No Results were found'));
+            $this->error($ids,$ids);
         }
         if ($this->request->isAjax()) {
+            $user = [
+                'username'=>$params['username'],
+                'mobile'=>$params['mobile'],
+                'company'=>$params['company'],
+                'company_site'=>$params['company_site']
+            ];
+            \app\admin\model\User::update($user,['id'=>8]);
+            $order = [
+                'uid'=>$params['id'],
+                'type'=>2,
+                'goods_id'=>$params['goods_id'],
+                'goods_name'=>Goods::where('id',$params['goods_id'])->value('name'),
+                'order_no'=>pay_no($params['id']),
+                'amount_real'=>Goods::where('id',$params['goods_id'])->value('price')-$params['customization'],
+                'customization'=>$params['customization'],
+                'number_goods'=>1,
+                'status'=>1,
+                'deploy_type'=>1,
+                'deploy'=>$params['deploy'],
+                'valid_time'=>$params['valid_time']
+            ];
+            Order::insert($order);
             $this->success("Ajax请求成功", null, ['id' => $ids]);
         }
         $this->view->assign("row", $row->toArray());
+        $this->view->assign("goodslist", $goods);
         return $this->view->fetch();
     }
 

+ 57 - 30
application/admin/view/user/user/detail.html

@@ -1,37 +1,64 @@
-<table class="table table-striped">
-    <thead>
-        <tr>
-            <th>{:__('Title')}</th>
-            <th>{:__('Content')}</th>
-        </tr>
-    </thead>
-    <tbody>
-        {volist name="row" id="vo"  }
-        <tr>
-            <td>{$key}</td>
-            <td style="word-break: break-all;">{$vo|htmlentities}</td>
-        </tr>
-        {/volist}
-        {if $Think.get.dialog}
-        <tr>
-            <td>回传数据</td>
-            <td>
-                <div class="input-group">
-                    <input name="callback" class="form-control" value="test" />
-                    <span class="input-group-btn"><a href="javascript:;" class="btn btn-success btn-callback" >回传数据</a></span>
-                </div>
-            </td>
-        </tr>
-        {/if}
-    </tbody>
-</table>
+<form id="" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">
+    <input type="hidden" name="row[id]" value="{$row.id}">
+    <div class="form-group">
+        <label for="c-username" class="control-label col-xs-12 col-sm-2">{:__('Username')}:</label>
+        <div class="col-xs-12 col-sm-4">
+            <input id="c-username" data-rule="required" class="form-control" name="row[username]" type="text" value="{$row.username|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label for="c-mobile" class="control-label col-xs-12 col-sm-2">{:__('Mobile')}:</label>
+        <div class="col-xs-12 col-sm-4">
+            <input id="c-mobile" data-rule="" class="form-control" name="row[mobile]" type="text" value="{$row.mobile|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label for="c-username" class="control-label col-xs-12 col-sm-2">公司</label>
+        <div class="col-xs-12 col-sm-4">
+            <input id="company" data-rule="required" class="form-control" name="row[company]" type="text" value="{$row.company|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label for="c-username" class="control-label col-xs-12 col-sm-2">公司地址</label>
+        <div class="col-xs-12 col-sm-4">
+            <input id="company_site" data-rule="required" class="form-control" name="row[company_site]" type="text" value="{$row.company_site|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label for="c-username" class="control-label col-xs-12 col-sm-2">定价产品</label>
+        <div class="col-xs-12 col-sm-4">
+            <select id="c-pid" data-rule="required" class="form-control selectpicker" name="row[goods_id]">
+                {foreach name="goodslist" item="vo"}
+                <option data-type="{$vo.name}" value="{$vo.goods_id}">{$vo.name}{$vo.price}</option>
+                {/foreach}
+            </select>
+        </div>
+    </div>
+    <div class="form-group">
+        <label for="c-username" class="control-label col-xs-12 col-sm-2">定制优惠金额</label>
+        <div class="col-xs-12 col-sm-4">
+            <input id="customization" data-rule="required" class="form-control" name="row[customization]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label for="c-jointime" class="control-label col-xs-12 col-sm-2">失效时间</label>
+        <div class="col-xs-12 col-sm-4">
+            <input id="c-jointime" data-rule="required" class="form-control datetimepicker" data-date-format="YYYY-MM-DD HH:mm:ss" data-use-current="true" name="row[valid_time]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label for="c-username" class="control-label col-xs-12 col-sm-2">部署信息</label>
+        <div class="col-xs-12 col-sm-4">
+            <input id="deploy" class="form-control" name="row[deploy]" type="text" value="">
+        </div>
+    </div>
+
 <div class="hide layer-footer">
     <label class="control-label col-xs-12 col-sm-2"></label>
     <div class="col-xs-12 col-sm-8">
-        <button type="submit" class="btn btn-primary btn-embossed disabled">{:__('OK')}</button>
+        <button type="submit" class="btn btn-primary btn-embossed success">{:__('OK')}</button>
+
         <button type="reset" class="btn btn-primary btn-embossed btn-close" onclick="Layer.closeAll();">{:__('Close')}</button>
     </div>
 </div>
-<form id="edit-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">
-
 </form>

+ 1 - 0
application/api/controller/Community.php

@@ -242,4 +242,5 @@ class Community extends Api
         }
         $this->success('请求成功');
     }
+
 }

+ 44 - 13
application/api/controller/Pricing.php

@@ -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){
+            
+        }
+    }
 }

+ 22 - 11
application/api/controller/User.php

@@ -14,7 +14,7 @@ use think\Validate;
  */
 class User extends Api
 {
-    protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'changemobile', 'third'];
+    protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'changeemail', 'changemobile', 'third'];
     protected $noNeedRight = '*';
 
     public function _initialize()
@@ -172,6 +172,9 @@ class User extends Api
         $company = $this->request->post('company');
         $company_site = $this->request->post('company_site');
         $avatar = $this->request->post('avatar', '', 'trim,strip_tags,htmlspecialchars');
+        if($avatar){
+            $user->avatar = $avatar;
+        }
         if ($username) {
             $exists = \app\common\model\User::where('username', $username)->where('id', '<>', $this->auth->id)->find();
             if ($exists) {
@@ -189,7 +192,6 @@ class User extends Api
         $user->bio = $bio;
         $user->company = $company;
         $user->company_site = $company_site;
-        $user->avatar = $avatar;
         $user->save();
         $this->success();
     }
@@ -309,23 +311,32 @@ class User extends Api
         $type = $this->request->post("type");
         $mobile = $this->request->post("mobile");
         $email = $this->request->post("email");
+        $formerpassword = $this->request->post("formerpassword");
         $newpassword = $this->request->post("newpassword");
+        $newpassword_verify = $this->request->post("newpassword_verify");
         $captcha = $this->request->post("captcha");
-        if (!$newpassword || !$captcha) {
-            $this->error(__('Invalid parameters'));
+        if (!$formerpassword || !$newpassword || !$newpassword_verify) {
+            $this->error('参数缺失');
+        }
+        if($newpassword != $newpassword_verify){
+            $this->error('新密码不一致');
         }
         //验证Token
         if (!Validate::make()->check(['newpassword' => $newpassword], ['newpassword' => 'require|regex:\S{6,30}'])) {
             $this->error(__('Password must be 6 to 30 characters'));
         }
 //        if ($type == 'mobile') {
-            if (!Validate::regex($mobile, "^1\d{10}$")) {
-                $this->error(__('Mobile is incorrect'));
-            }
-            $user = \app\common\model\User::getByMobile($mobile);
-            if (!$user) {
-                $this->error(__('User not found'));
-            }
+//            if (!Validate::regex($mobile, "^1\d{10}$")) {
+//                $this->error(__('Mobile is incorrect'));
+//            }
+        $user = \app\common\model\User::getByMobile($this->auth->mobile);
+        if (!$user) {
+            $this->error(__('User not found'));
+        }
+
+        if($this->auth->getEncryptPassword($formerpassword,$user->salt) != $user->password){
+            $this->error('旧密码错误');
+        }
 //            $ret = Sms::check($mobile, $captcha, 'resetpwd');
 //            if (!$ret) {
 //                $this->error(__('Captcha is incorrect'));

+ 11 - 0
application/common.php

@@ -512,3 +512,14 @@ EOT;
         return $icon;
     }
 }
+
+/**
+ * 生成订单编号
+ * @param $uid
+ * @return string
+ */
+function pay_no($uid){
+    $time_str = date('YmdHi');
+    $pay_no = 'PAY'.$time_str . rand(00000,99999).$uid;
+    return $pay_no;
+}

+ 26 - 4
public/assets/js/backend/user/user.js

@@ -43,9 +43,27 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
                         {field: 'status', title: __('Status'), formatter: Table.api.formatter.status, searchList: {normal: __('Normal'), hidden: __('Hidden')}},
                         {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate,
                         buttons:[
+                            // {
+                            //     name: 'ajax',
+                            //     title: __('发送Ajax'),
+                            //     classname: 'btn btn-xs btn-primary btn-dialog',
+                            //     icon: 'fa fa-magic',
+                            //     confirm: '确认发送Ajax请求?',
+                            //     url: 'user/user/detail',
+                            //     success: function (data, ret) {
+                            //         Layer.alert(ret.msg + ",返回数据:" + JSON.stringify(data));
+                            //         //如果需要阻止成功提示,则必须使用return false;
+                            //         //return false;
+                            //     },
+                            //     error: function (data, ret) {
+                            //         console.log(data, ret);
+                            //         Layer.alert(ret.msg);
+                            //         return false;
+                            //     }
+                            // },
                             {
                                 name: 'detail',
-                                title: __('弹出窗口打开'),
+                                title: __('发送报价单'),
                                 classname: 'btn btn-xs btn-primary btn-dialog',
                                 icon: 'fa fa-list',
                                 url: 'user/user/detail',
@@ -69,10 +87,14 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
             Controller.api.bindevent();
         },
         detail: function () {
-            $(document).on('click', '.btn-callback', function () {
-                Fast.api.close($("input[name=callback]").val());
-            });
+            Controller.api.bindevent();
         },
+        // detail: function () {
+        //     $(document).on('click', '.btn-callback', function () {
+        //         Fast.api.close($("input[name=callback]").val());
+        //         console.log(1);
+        //     });
+        // },
         api: {
             bindevent: function () {
                 Form.api.bindevent($("form[role=form]"));