073 销售额按客户列表
<h5>请求URL</h5>
<ul>
<li><code>http://happysell.com/api/job/work_sell_record_customer</code></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;">code</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>1上月 2本月 3本年 0看日期</td>
</tr>
<tr>
<td style="text-align: left;">start_date</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>开始日期</td>
</tr>
<tr>
<td style="text-align: left;">end_date</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>结束日期</td>
</tr>
</tbody>
</table>
<pre><code>{
&quot;code&quot;: 1,
&quot;info&quot;: &quot;success&quot;,
&quot;data&quot;: {
&quot;total_amount&quot;: 0,
&quot;total_date&quot;: &quot;2025/01/01 to 2025/01/02&quot;,
&quot;data&quot;: [
{
&quot;customer_name&quot;: &quot;1号客户&quot;,
&quot;phoneNumber&quot;: &quot;25413800000001&quot;,
&quot;amount&quot;: 0
},
{
&quot;customer_name&quot;: &quot;3号客户&quot;,
&quot;phoneNumber&quot;: &quot;25413800000003&quot;,
&quot;amount&quot;: 0
},
{
&quot;customer_name&quot;: &quot;5号客户&quot;,
&quot;phoneNumber&quot;: &quot;25413800000005&quot;,
&quot;amount&quot;: 0
}
]
}
}
</code></pre>