diff --git a/app/common/model/store/order/StoreOrderOther.php b/app/common/model/store/order/StoreOrderOther.php index b113e5a0..f0e32768 100755 --- a/app/common/model/store/order/StoreOrderOther.php +++ b/app/common/model/store/order/StoreOrderOther.php @@ -192,4 +192,12 @@ class StoreOrderOther extends BaseModel return $this->pay_type == StoreGroupOrder::PAY_TYPE_CREDIT_BUY && $this->status == self::STATUS_WAIT_PAY; } + + public function chageVoucher(int $id,string $voucher) + { + return $this->getModel()::getDB()->where('order_id',$id)->update(['payment_voucher' => $voucher]); + } + + + } diff --git a/app/controller/api/store/order/StoreOrderOther.php b/app/controller/api/store/order/StoreOrderOther.php index d0ebd7f3..8a312a6f 100755 --- a/app/controller/api/store/order/StoreOrderOther.php +++ b/app/controller/api/store/order/StoreOrderOther.php @@ -301,4 +301,23 @@ class StoreOrderOther extends BaseController return app('json')->fail('操作失败'); } + + + + /** + *上传付款凭证 + */ + + public function upload($id) + { + $name = $this->request->param('url'); + Db::transaction(function()use($id,$name){ + $make = \app()->make(\app\common\model\store\order\StoreOrderOther::class); + $make->chageVoucher($id,$name); + }); + return app('json')->success('更新成功'); + + } + + } diff --git a/route/api.php b/route/api.php index eff235f5..5a715eea 100755 --- a/route/api.php +++ b/route/api.php @@ -142,6 +142,7 @@ Route::group('api/', function () { Route::post('create', '/otherOrder'); //创建其他订单 Route::get('number', '/number'); Route::post('take/:id', '/take'); + Route::post('upload/:id', '/upload'); })->prefix('api.store.order.StoreOrderOther'); // 预售 Route::group('presell', function () {