获取加工计划单
<h5>简要描述</h5>
<ul>
<li>获取加工计划单</li>
<li>
<p>开发人员:陈杰</p>
<h5>请求URL</h5>
</li>
<li><code>http://localhost:port/Retailing/GetProcessPlanInfo</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>billStatus</td>
<td>是</td>
<td>int</td>
<td>【-1:获取全部计划单】, 【0:获取未确认计划单】,【1:获取已确认计划单】</td>
</tr>
<tr>
<td>startDate</td>
<td>否</td>
<td>string</td>
<td>开始时间yyyy-MM-dd,搜索条件,可不传</td>
</tr>
<tr>
<td>endDate</td>
<td>否</td>
<td>string</td>
<td>结束时间yyyy-MM-dd ,搜索条件,可不传</td>
</tr>
</tbody>
</table>
<h5>请求示例</h5>
<pre><code> {
&quot;nodeCode&quot;: &quot;1018&quot;,
&quot;startDate&quot;: &quot;yyyy-MM-dd&quot;,
&quot;endDate&quot;: &quot;yyyy-MM-dd&quot;,
}</code></pre>
<h5>返回示例</h5>
<pre><code>{
&quot;OperateCode&quot;:9998,
&quot;ErrorMessage&quot;: &quot;&quot;,
&quot;obj&quot;: [{
&quot;ModifyTime&quot;: &quot;&quot;,
&quot;ModifierName&quot;: &quot;&quot;,
&quot;ModifierCode&quot;: &quot;&quot;,
&quot;CreateTime&quot;: &quot;&quot;,
&quot;CreatorName&quot;: &quot;&quot;,
&quot;CreatorCode&quot;: &quot;&quot;,
&quot;Remark&quot;: &quot;&quot;,
&quot;StallCode&quot;: &quot;&quot;,
&quot;BillStatus&quot;: 0,
&quot;PlanEndDate&quot;: &quot;&quot;,
&quot;PlanStartDate&quot;: &quot;&quot;,
&quot;BillNumber&quot;: &quot;&quot;,
&quot;DeptCode&quot;: &quot;&quot;,
&quot;DeptName&quot;: &quot;&quot;,
&quot;StatusName&quot;: &quot;未确认&quot;,
&quot;ProcessPlanDetails&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;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>