发票签收
<h5>简要描述</h5>
<ul>
<li>实现进项发票签收</li>
</ul>
<h5>服务码</h5>
<ul>
<li>yspt_jxfp_fpqs</li>
</ul>
<h5>数据格式</h5>
<ul>
<li><code>JSON</code></li>
</ul>
<h5>请求数据</h5>
<table>
<thead>
<tr>
<th>参数</th>
<th>参数名</th>
<th>类型</th>
<th>长度</th>
<th>必须</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>fpxx</td>
<td>发票信息</td>
<td>jsonarray</td>
<td></td>
<td>是</td>
<td>发票信息,包以下内容</td>
</tr>
<tr>
<td>fpdm</td>
<td>发票代码</td>
<td>string</td>
<td>14</td>
<td>是</td>
<td>发票代码</td>
</tr>
<tr>
<td>fphm</td>
<td>发票号码</td>
<td>string</td>
<td>8</td>
<td>是</td>
<td>发票号码</td>
</tr>
<tr>
<td>qdfphm</td>
<td>数电发票号码</td>
<td>string</td>
<td>20</td>
<td>是</td>
<td>数电发票号码</td>
</tr>
<tr>
<td>qsr</td>
<td>签收人</td>
<td>string</td>
<td>20</td>
<td>是</td>
<td>签收人姓名</td>
</tr>
<tr>
<td>czlx</td>
<td>操作类型</td>
<td>string</td>
<td>1</td>
<td>是</td>
<td>0 : 取消签收</br>1:签收。默认1</td>
</tr>
</tbody>
</table>
<h5>返回数据</h5>
<table>
<thead>
<tr>
<th>参数</th>
<th>参数名</th>
<th>类型</th>
<th>长度</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>rtnCode</td>
<td>响应代码</td>
<td>string</td>
<td>4</td>
<td>请求结果反馈代码</td>
</tr>
<tr>
<td>rtnMsg</td>
<td>响应消息</td>
<td>string</td>
<td></td>
<td>请求结果反馈信息</td>
</tr>
</tbody>
</table>
<h5>请求示例</h5>
<pre><code class="language-java">{
&quot;fpxx&quot;:
[{
&quot;fpdm&quot;: &quot;&quot;,
&quot;fphm&quot;: &quot;&quot;,
&quot;qdfphm&quot;: &quot;&quot;
}],
&quot;qsr&quot;: &quot;&quot;,
&quot;czlx&quot;: &quot;1&quot;
}</code></pre>
<h5>返回示例</h5>
<pre><code>成功:
{
&quot;rtnCode&quot;:&quot;success&quot;,
&quot;rtnMsg&quot;:&quot;操作成功&quot;
}
失败:
{&quot;rtnCode&quot;:&quot;failure&quot;,&quot;rtnMsg&quot;:&quot;参数错误&quot;}
</code></pre>