成品明细
<h5>简要描述</h5>
<ul>
<li>获取成品明细</li>
<li>
<p>开发人员:陈杰</p>
<h5>请求URL</h5>
</li>
<li><code>http://localhost:port/Retailing/GetProcessGoodsDetail</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>Post</li>
</ul>
<h5>参数</h5>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>nodeCode</td>
<td>是</td>
<td>string</td>
<td>节点编码</td>
</tr>
<tr>
<td>employeeCode</td>
<td>是</td>
<td>string</td>
<td>操作人编码</td>
</tr>
<tr>
<td>condition</td>
<td>是</td>
<td>string</td>
<td>商品编码或商品名称</td>
</tr>
<tr>
<td>bill</td>
<td>是</td>
<td></td>
<td>加工计划单据</td>
</tr>
<tr>
<td>&nbsp;&nbsp;&nbsp;&nbsp;BillNumber</td>
<td>是</td>
<td>string</td>
<td>单据号</td>
</tr>
<tr>
<td>&nbsp;&nbsp;&nbsp;&nbsp;DeptCode</td>
<td>是</td>
<td>string</td>
<td>部门编码</td>
</tr>
</tbody>
</table>
<h5>请求示例</h5>
<pre><code> {
&quot;nodeCode&quot;: &quot;1018&quot;,
&quot;employeeCode&quot;: &quot;9100&quot;,
&quot;bill&quot;: {
&quot;BillNumber&quot;: &quot;202501010001&quot;,
&quot;DeptCode&quot;: &quot;1018&quot;
}
}</code></pre>
<h5>返回示例</h5>
<pre><code>{
&quot;OperateCode&quot;:9998,
&quot;ErrorMessage&quot;: &quot;&quot;,
&quot;obj&quot;: [
{
&quot;DeptCode&quot;: &quot;&quot;,
&quot;BillNumber&quot;: &quot;&quot;,
&quot;InsideId&quot;: 0,
&quot;GoodsCode&quot;: &quot;&quot;,
&quot;Amount&quot;: 0.0,
&quot;ProductionDate&quot;: &quot;&quot;,
&quot;RatioCode&quot;: &quot;&quot;,
&quot;Remark&quot;: &quot;&quot;,
&quot;GoodsName&quot;: &quot;&quot;,
&quot;GoodsSpec&quot;: &quot;&quot;,
&quot;GoodsUnit&quot;: &quot;&quot;,
&quot;RatioName&quot;: &quot;&quot;,
&quot;GoodsStocks&quot;: 0.0,
&quot;isChecked&quot;: false,
&quot;processPlanMaterialDetails&quot;: [
{
&quot;DeptCode&quot;: &quot;&quot;,
&quot;BillNumber&quot;: &quot;&quot;,
&quot;MasterInsideId&quot;: 0,
&quot;InsideId&quot;: 0,
&quot;MaterialCode&quot;: &quot;&quot;,
&quot;MaterialAmount&quot;: 0.0,
&quot;TaxRate&quot;: 0.0,
&quot;MaterialPrice&quot;: 0.0,
&quot;MaterialMoney&quot;: 0.0,
&quot;MaterialTax&quot;: 0.0,
&quot;ProductionDate&quot;: &quot;&quot;,
&quot;Remark&quot;: &quot;&quot;,
&quot;MaterialName&quot;: &quot;&quot;,
&quot;MaterialSpec&quot;: &quot;&quot;,
&quot;MaterialUnit&quot;: &quot;&quot;
}
]
}
]
}</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;">OperateCode</td>
<td style="text-align: left;">int</td>
<td>状态码,9998:成功,其他:失败</td>
</tr>
<tr>
<td style="text-align: left;">ErrorMessage</td>
<td style="text-align: left;">string</td>
<td>异常消息</td>
</tr>
<tr>
<td style="text-align: left;">obj</td>
<td style="text-align: left;">object</td>
<td>返回的数据</td>
</tr>
</tbody>
</table>
<h1>备注</h1>
<ul>
<li>更多返回状态码请看首页的状态码描述</li>
</ul>