分配车辆获取数据信息
<p><strong>简要描述:</strong> </p>
<ul>
<li>分配车辆获取数据信息</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://xx.com/Admin/NewCarType/assign_vehicles</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>GET </li>
</ul>
<p><strong>参数:</strong> </p>
<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;">order_id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>订单ID</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
"order_details":{
"total_price":"320000.00",//订单总额
"payment_method":"全款",//付款方式
"car_payment_paid":"320000.00",//已付车款
"unpaid_amount":0,//未付金额
"card_deposit_paid":0//已付上牌押金
},
"customer_demand":[
{
"config_id":"45",//车型ID
"type_name":"阿斯顿·马丁DB9 2011款 6.0L Touchtronic Coupe",//车型
"color":"星际蓝",//颜色
"base_price":"-",//销售指导价
"car_price":"160000.00",//售价/单台
"on_plate_fee":"0.00",//上牌押金/单台
"car_num":"1",//台数
"deal_price":"160000.00"//合计
}
],
"config_ids":[//车型ID集合 获取分配车辆时候传送的值
"45"
]
}</code></pre>