库存分布详情接口
<p><strong>简要描述:</strong> </p>
<ul>
<li>商品详情接口</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://xx.com/dms/sales-order-app/get-stock-info</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;">buy_org_id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>当前 账套id(门店id)</td>
</tr>
<tr>
<td style="text-align: left;">parts_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>{
&quot;errCode&quot;: 1000,
&quot;errMsg&quot;: &quot;请求成功&quot;,
&quot;data&quot;: {
&quot;self_store_warehouse&quot;: [
{
&quot;position_code&quot;: &quot;&quot;,
&quot;store_name&quot;: &quot;经十东路仓&quot;,
&quot;store_count&quot;: 10159
},
{
&quot;position_code&quot;: &quot;&quot;,
&quot;store_name&quot;: &quot;凤凰山仓&quot;,
&quot;store_count&quot;: 9
}
],
&quot;self_company_warehouse&quot;: [
{
&quot;company_name&quot;: &quot;北园-济南祝舜路店&quot;,
&quot;store_name&quot;: &quot;经十东路仓&quot;,
&quot;store_count&quot;: 10159
},
{
&quot;company_name&quot;: &quot;北园-济南祝舜路店&quot;,
&quot;store_name&quot;: &quot;东京1号&quot;,
&quot;store_count&quot;: 3086
},
{
&quot;company_name&quot;: &quot;北园-济南祝舜路店&quot;,
&quot;store_name&quot;: &quot;凤凰山仓&quot;,
&quot;store_count&quot;: 9
},
{
&quot;company_name&quot;: &quot;北园-济南祝舜路店&quot;,
&quot;store_name&quot;: &quot;圣罗萨解放东路仓&quot;,
&quot;store_count&quot;: 0
}
],
&quot;share_stores_stock&quot;: [
{
&quot;warehouse_name&quot;: &quot;中驰连锁仓库&quot;,
&quot;warehouse_org_id&quot;: &quot;1&quot;,
&quot;warehouse_org_name&quot;: &quot;优配车联&quot;,
&quot;warehouse_company&quot;: &quot;优配车联&quot;,
&quot;useable_count&quot;: 443
},
{
&quot;warehouse_name&quot;: &quot;章丘店&quot;,
&quot;warehouse_org_id&quot;: &quot;144&quot;,
&quot;warehouse_org_name&quot;: &quot;北园-章丘绣水大街店&quot;,
&quot;warehouse_company&quot;: &quot;优配车联&quot;,
&quot;useable_count&quot;: 2
},
{
&quot;warehouse_name&quot;: &quot;大连店仓库&quot;,
&quot;warehouse_org_id&quot;: &quot;113&quot;,
&quot;warehouse_org_name&quot;: &quot;培训专用-直营门店&quot;,
&quot;warehouse_company&quot;: &quot;大连分公司&quot;,
&quot;useable_count&quot;: 1
}
]
}
}</code></pre>
<p><strong>参数说明</strong> </p>
<p><strong>---本店信息---self_store_warehouse---</strong></p>
<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;">store_name</td>
<td style="text-align: left;">string</td>
<td>仓库名称</td>
</tr>
<tr>
<td style="text-align: left;">store_count</td>
<td style="text-align: left;">string</td>
<td>仓库可用数量</td>
</tr>
<tr>
<td style="text-align: left;">position_code</td>
<td style="text-align: left;">string</td>
<td>库位</td>
</tr>
</tbody>
</table>
<p><strong>---分公司信息---self_company_warehouse---</strong></p>
<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;">store_name</td>
<td style="text-align: left;">string</td>
<td>仓库名称</td>
</tr>
<tr>
<td style="text-align: left;">store_count</td>
<td style="text-align: left;">string</td>
<td>仓库可用数量</td>
</tr>
</tbody>
</table>
<p><strong>---共享信息---share_stores_stock---</strong></p>
<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;">warehouse_org_name</td>
<td style="text-align: left;">string</td>
<td>门店名称</td>
</tr>
<tr>
<td style="text-align: left;">useable_count</td>
<td style="text-align: left;">string</td>
<td>仓库可用数量</td>
</tr>
</tbody>
</table>
<p><strong>备注</strong> </p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>