查询订单状态
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>查询订单状态</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://open.yiqida.cn/api/MovieOpen/QueryMovieOrder?timestamp=当前时间戳13位&amp;userName=登录账号&amp;sign=签名</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;">external_orderno</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td>第三方外部单号</td>
</tr>
<tr>
<td style="text-align: left;">orderNo</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td>亿奇达订单号</td>
</tr>
</tbody>
</table>
<h5>请求josn</h5>
<pre><code> {
&quot;external_orderno&quot;: &quot;test99&quot;,
&quot;orderNo&quot;: &quot;&quot;
}</code></pre>
<h5>签名说明</h5>
<pre><code> 假如密钥值为:1234567890
timestamp的值为:1756972222538
加密串:1756972222538{&quot;external_orderno&quot;:&quot;test001&quot;,&quot;orderNo&quot;:&quot;&quot;}1234567890
sign值为:75b83efcf9f67a921f20bad6f461d938
</code></pre>
<h5>返回示例</h5>
<pre><code> {
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;操作成功&quot;,
&quot;data&quot;: {
&quot;orderNo&quot;: &quot;B320250904150005276741258&quot;,
&quot;externalOrderno&quot;: &quot;test99&quot;,
&quot;status&quot;: 5,
&quot;movieName&quot;: null,
&quot;tickets&quot;: null,
&quot;payPrice&quot;: 0.000,
&quot;addTime&quot;: &quot;2025-09-04 15:00:06&quot;
},
&quot;sum&quot;: 0
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">orderNo</td>
<td style="text-align: left;">string</td>
<td>亿奇达订单号</td>
</tr>
<tr>
<td style="text-align: left;">externalOrderno</td>
<td style="text-align: left;">string</td>
<td>第三方外部单号</td>
</tr>
<tr>
<td style="text-align: left;">status</td>
<td style="text-align: left;">int</td>
<td>状态: 4=成功 ; 5=失败</td>
</tr>
<tr>
<td style="text-align: left;">movieName</td>
<td style="text-align: left;">string</td>
<td>电影名称</td>
</tr>
<tr>
<td style="text-align: left;">tickets</td>
<td style="text-align: left;">string</td>
<td>取票码 json 字符串:[{"ticketInfo":"200839003","ticketImg":"<a href="http://yingpiao.oss-cn-shenzhen.aliyuncs.com/images/7569e871-e252db.png"},{"ticketInfo":"2062017971","ticketImg":"http://yingpiao.oss-cn-shenzhen.aliyuncs.com/images/e34b3139-95b5093.png"">http://yingpiao.oss-cn-shenzhen.aliyuncs.com/images/7569e871-e252db.png"},{"ticketInfo":"2062017971","ticketImg":"http://yingpiao.oss-cn-shenzhen.aliyuncs.com/images/e34b3139-95b5093.png"</a>;}] 取票码(ticketInfo)+凭证图片地址(ticketImg)</td>
</tr>
<tr>
<td style="text-align: left;">payPrice</td>
<td style="text-align: left;">string</td>
<td>订单金额</td>
</tr>
<tr>
<td style="text-align: left;">addTime</td>
<td style="text-align: left;">string</td>
<td>下单时间</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>external_orderno 和 orderNo 不能同时为空</li>
</ul>