Files
LittleBeast/view/openprovider/listcustomers.maron
2026-04-28 14:39:26 +09:00

31 lines
998 B
Plaintext

{@ include(common/header) @}
<a href="/openprovider/createcustomer">顧客様の追加</a><br />
検索<br />
{@ if (isset($data['data']['results'])) @}
<table>
<thead>
<tr>
<th>名前</th>
<th>会社名</th>
<th>メールアドレス</th>
<th>ハンドル</th>
<th>メモ</th>
</tr>
</thead>
<tbody>
{@ foreach ($data['data']['results'] as $d) @}
<tr>
<td><a href="/openprovider/getcustomer/{{ $d['handle'] }}">{{ $d['name']['full_name'] }}</a></td>
<td>{{ $d['company_name'] }}</td>
<td>{{ $d['email'] }}</td>
<td>{{ $d['handle'] }}</td>
<td></td>
</tr>
{@ endforeach @}
</tbody>
</table>
<p>結果数:{{ $data['data']['total'] }}</p>
{@ else @}
<p>何も見つけられませんでした。</p>
{@ endif @}
{@ include(common/footer) @}