获取指定服务的服务单
<p><strong>请求URI:</strong></p>
<ul>
<li><code>/service/bill</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>GET <code>AUTH</code></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;">service_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;">apply_archive_id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>家庭档案id 0=非档案成员使用</td>
</tr>
</tbody>
</table>
<ul>
<li>can_use_bill.take_service_charge_switch=1的服务单均不再收取服务费</li>
<li>can_use_bill.take_service_charge_switch=0且apply_archive_id>0的不收取服务费</li>
<li>can_use_bill.take_service_charge_switch=0且apply_archive_id=0的收取服务费</li>
<li>can_use_count为0的时候表示无可用服务单,走订单-下单(使用)接口</li>
</ul>
<p><strong>返回示例:</strong></p>
<pre><code class="language-json">{
&quot;msg&quot;: &quot;请求成功&quot;,
&quot;data&quot;: {
&quot;can_use_bill&quot;: {//可使用的服务单
&quot;id&quot;: 1491,//服务单id 发起使用时使用
&quot;user_uid&quot;: &quot;b449c270dc3745ca9644d309dac5bd51&quot;,
&quot;order_no&quot;: &quot;250102775340001&quot;,
&quot;service_id&quot;: 70,
&quot;service_info&quot;: {
&quot;id&quot;: 70,
&quot;title&quot;: &quot;专家病情解读(专科专家)&quot;,
&quot;detail&quot;: &quot;&quot;,
&quot;sort_id&quot;: 49,
&quot;unit_type&quot;: 1,
&quot;sale_price&quot;: 100,
&quot;cover_image&quot;: &quot;&quot;,
&quot;online_switch&quot;: 1,
&quot;create_datetime&quot;: &quot;2025-01-01 13:50:31&quot;,
&quot;update_datetime&quot;: &quot;2025-01-02 21:32:10&quot;,
&quot;list_show_switch&quot;: 1,
&quot;unit_type_payload&quot;: 1,
&quot;member_buy_max_qty&quot;: 0,
&quot;member_buy_min_qty&quot;: 0,
&quot;member_show_switch&quot;: 1,
&quot;member_select_switch&quot;: 0
},
&quot;service_sale_price&quot;: 39900,
&quot;apply_switch&quot;: 0,
&quot;apply_assign_date&quot;: null,
&quot;apply_real_name&quot;: &quot;&quot;,
&quot;apply_phone&quot;: null,
&quot;apply_archive_id&quot;: 0,
&quot;unify_result_data&quot;: null,
&quot;pay_result_datetime&quot;: null,
&quot;pay_type&quot;: 0,
&quot;total_price&quot;: 0,
&quot;pay_result_data&quot;: null,
&quot;schedule_status&quot;: 1000,
&quot;mode_type&quot;: 2000,
&quot;finish_switch&quot;: 0,
&quot;finish_result_data&quot;: null,
&quot;finish_datetime&quot;: null,
&quot;create_datetime&quot;: &quot;2025-01-02 21:32:14&quot;,
&quot;update_datetime&quot;: &quot;2025-01-05 12:01:21&quot;,
&quot;take_service_charge_switch&quot;: 0//已收取手续费 0=否 1=是
},
&quot;can_use_count&quot;: 13,//可使用服务单数量
&quot;is_member&quot;: 0,//当前用户是否会员 0=否 1=是
&quot;total_price&quot;: 45800,//总价
&quot;service_charge_price&quot;: 5900,//手续费
&quot;service_sale_price&quot;: 39900//服务单当时售价
},
&quot;code&quot;: 0
}</code></pre>
<ul>
<li>使用非档案成员时的服务费只用余额收取</li>
<li>非档案成员的手续费率是全局手续费率</li>
<li>非档案成员的手续非收取判断为
<ul>
<li>如果服务单已收取服务费则不收取</li>
<li>如果服务单为未收取服务费且使用人为非家庭档案成员则收取服务类售价的15%作为手续费</li>
<li>如果服务单为未收取服务费且使用人为家庭档案成员则不收取</li>
</ul></li>
</ul>