|
|
|
|
@ -890,11 +890,11 @@ class OrdersController extends CommonController
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @OA\POST(
|
|
|
|
|
* path="/manager/checkout-order/{order_id}",
|
|
|
|
|
* path="/manager/checkout-order/{id}",
|
|
|
|
|
* summary="V2-订单结算",
|
|
|
|
|
* description="交互流程如下:初次请求带上just_check参数,将返回to_recharge_total或to_refund_total值;如果to_recharge_total大于0表示需要充值,充值完成之后,去除just_check参数再次提交;如果to_refund_total大于0表示需要退款,根据返回的退款方式操作后,去除just_check参数再次提交",
|
|
|
|
|
* @OA\Parameter(name="token", in="query", @OA\Schema(type="string"), required=true, description="token"),
|
|
|
|
|
* @OA\Parameter(name="order_id", in="path", @OA\Schema(type="integer"), required=true, description="订单id"),
|
|
|
|
|
* @OA\Parameter(name="id", in="path", @OA\Schema(type="integer"), required=true, description="订单id"),
|
|
|
|
|
* @OA\Parameter(name="to_date", in="query", @OA\Schema(type="date"), required=true, description="结算到的日子"),
|
|
|
|
|
* @OA\Parameter(name="just_check", in="query", @OA\Schema(type="boolean"), required=false, description="是否只是check一下要多少钱"),
|
|
|
|
|
* @OA\Response(
|
|
|
|
|
|