订单弃审
<p><strong>简要描述:</strong> </p>
<ul>
<li>订单弃审接口 </li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://localhost:8080/api/billoperation/apiaction?token=12345678</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST </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;">billnum</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>单据编码</td>
</tr>
<tr>
<td style="text-align: left;">action</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>操作类型 unapprove</td>
</tr>
<tr>
<td style="text-align: left;">ids</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">List</td>
<td>需要弃审订单id,多张用“,”分隔</td>
</tr>
<tr>
<td style="text-align: left;">partParam</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">Map</td>
<td>订单-时间戳关系映射</td>
</tr>
<tr>
<td style="text-align: left;">externalData</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">Map</td>
<td>弃审原因 需传参数=cUnApproveReason</td>
</tr>
</tbody>
</table>
<p><strong>请求示例</strong></p>
<pre><code>{
"billnum":"ec_tradeorder",
"action":"unapprove",
"ids":"1752411407356160",
"partParam":{
"1752411407356160":"2020-05-25 12:16:43"
},
"externalData":{
"cUnApproveReason":"门店拒单"
}
}</code></pre>
<p><strong>返回示例</strong></p>
<pre><code>{"code":200,"message":"[{\"code\":\"1\",\"isShowMsg\":true,\"externalMap\":{},\"failCount\":\"0\",\"sucIdAndPubts\":{\"1752411407356160\":1592902019000},\"successCount\":\"1\",\"isExcuteAction\":true,\"actionName\":\"订单弃审\"},{\"code\":\"1\",\"isShowMsg\":false,\"externalMap\":{},\"failCount\":\"0\",\"sucIdAndPubts\":{\"1752411407356160\":1592902019000},\"successCount\":\"1\",\"isExcuteAction\":true,\"actionName\":\"提交存量\"}]"}</code></pre>
<p><strong>返回参数说明</strong> </p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<p><strong>备注</strong> </p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>