优惠信息
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>订单下单前优惠信息展示情况接口
<strong>如果订单金额为0不需要请求微信支付宝流程,0元课程直接报成功</strong></li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>order/course_order_info</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>参数</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>课程id</td>
</tr>
<tr>
<td style="text-align: left;">select_course_id</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td>组合课选择的课程id</td>
</tr>
<tr>
<td style="text-align: left;">anew</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">int</td>
<td>是否选择重新下单,1=是,0=否</td>
</tr>
</tbody>
</table>
<p><strong>// 如果组合课只选择了一门课程,则把它当成单门课逻辑去计算。如组合课A,包含课程A、B、C、D,只选择A结算时,课程id传参为A课程id</strong></p>
<h5>返回示例</h5>
<pre><code> {
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;ok&quot;,
&quot;data&quot;: {
&quot;id&quot;: 212, //课程详情内容
&quot;title&quot;: &quot;测试发布系列课&quot;,
&quot;type&quot;: 3,
&quot;user_id&quot;: 1,
&quot;user_name&quot;: &quot;一宠三花迷😜&quot;,
&quot;head_img&quot;: &quot;https://wxt-1304049341.cos.ap-nanjing.myqcloud.com/1654493897IMG_9346_326326.jpeg&quot;,
&quot;total_section&quot;: 2, // 讲数/章节数
&quot;duration&quot;: 0,
&quot;total_duration&quot;: 10, // 授课时长,分钟
&quot;total_course_section&quot;: 12, // 总讲数(系列课时才会返回)
&quot;price&quot;: &quot;10.00&quot;,
&quot;old_price&quot;: &quot;20.00&quot;,
&quot;discount&quot;: { //优惠信息,空对象时没有优惠项目(只有系列课才会返回)
&quot;count&quot;: 2, //优惠条数,如果此条件等于系列课中的总课程数,选择全部优惠时无法下单(客户端需要再此做判断)
&quot;discounts_price_count&quot;: 10,
&quot;apply_course_list&quot;: [ //优惠明细
{
&quot;course_id&quot;: 115,
&quot;price&quot;: &quot;5.00&quot;, //金额
&quot;title&quot;: &quot;仓鸮一家的故事&quot; //优惠课程
},
{
&quot;course_id&quot;: 116,
&quot;price&quot;: &quot;5.00&quot;,
&quot;title&quot;: &quot;测试课程&quot;
}
]
},
&quot;select_course_list&quot;: [ //组合课明细(只有系列课才会返回此字段);优惠金额不返回,由客户端计算sum(price)-sum(now_price)
{
&quot;id&quot;: 278,
&quot;type&quot;: 1,
&quot;title&quot;: &quot;苏老师测试直播课程&quot;,
&quot;thumb_image&quot;: &quot;https://test-1304049341.cos.ap-nanjing.myqcloud.com/1685412910thumb.png&quot;,
&quot;price&quot;: &quot;10.00&quot;, //原价
&quot;now_price&quot;: 8 //现价
},
{
&quot;id&quot;: 286,
&quot;type&quot;: 1,
&quot;title&quot;: &quot;苏老师测试直播课程2&quot;,
&quot;thumb_image&quot;: &quot;https://test-1304049341.cos.ap-nanjing.myqcloud.com/1685412910thumb.png&quot;,
&quot;price&quot;: &quot;10.00&quot;,
&quot;now_price&quot;: 8
}
],
&quot;order_info&quot;: { // 有数据时对应展示的支付金额和优惠金额使用下边返回的数据
//为空代表不存在相同订单
// 存在相同订单时优惠明细不可看,不可选择,只展示优惠金额即可
&quot;id&quot;: 1278, //订单id
&quot;type&quot;: 4,
&quot;course_id&quot;: 303,
&quot;price&quot;: &quot;0.01&quot;, //订单金额
&quot;is_discount&quot;: 1, //是否使用了优惠
&quot;discount_price&quot;: &quot;2.00&quot;, //优惠金额
&quot;discount_course_id&quot;: &quot;300,301&quot; //选择优惠的课程
},
}
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>