mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-31 21:25:33 +08:00
120 lines
3.5 KiB
HTML
120 lines
3.5 KiB
HTML
<!--
|
||
Copyright 2012-2026 ShopeX (https://www.shopex.cn)
|
||
|
||
Licensed under the Apache License, Version 2.0 (the "License");
|
||
you may not use this file except in compliance with the License.
|
||
You may obtain a copy of the License at
|
||
|
||
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
||
Unless required by applicable law or agreed to in writing, software
|
||
distributed under the License is distributed on an "AS IS" BASIS,
|
||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
See the License for the specific language governing permissions and
|
||
limitations under the License.
|
||
-->
|
||
|
||
<div class="tableform">
|
||
<div class="division">
|
||
<table width='100%' cellspacing="0" cellpadding="0" class="gridlist">
|
||
<tr>
|
||
<td colspan="4"><h4>基本信息</h4></td>
|
||
</tr>
|
||
<tr>
|
||
<th style='text-align:right;'>供应商编码:</th>
|
||
<td>
|
||
<{$supplier.bn}>
|
||
</td>
|
||
<th style='text-align:right;'>供应商名称:</th>
|
||
<td><{$supplier.name}></td>
|
||
</tr>
|
||
<tr>
|
||
<th style='text-align:right;'>供应商缩写:</th>
|
||
<td>
|
||
<{$supplier.brief}>
|
||
</td>
|
||
<th style='text-align:right;'>地区</th>
|
||
<td><{$supplier.area|region}></td>
|
||
</tr>
|
||
|
||
<tr>
|
||
<th style='text-align:right;'>电话:</th>
|
||
<td>
|
||
<{$supplier.telphone}>
|
||
</td>
|
||
<th style='text-align:right;'>详细地址:</th>
|
||
<td><{$supplier.addr}></td>
|
||
</tr>
|
||
<tr>
|
||
<th style='text-align:right;'>传真</th>
|
||
<td><{$supplier.fax}></td>
|
||
<th style='text-align:right;'>邮编:</th>
|
||
<td><{$supplier.zip}></td>
|
||
</tr>
|
||
<tr>
|
||
<th style='text-align:right;'>采购员:</th>
|
||
<td><{$supplier.operator}></td>
|
||
<th style='text-align:right;'>信用等级:</th>
|
||
<td>
|
||
<{if $supplier.credit_lv }>
|
||
<{$supplier.credit_lv}>分
|
||
<{else}>
|
||
未评分
|
||
<{/if}>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th style='text-align:right;'>供应品牌:</th>
|
||
<td colspan="3">
|
||
<{foreach from=$brand item=item key=key}>
|
||
<{$item}>
|
||
<{/foreach}>
|
||
</td>
|
||
</tr>
|
||
|
||
<tr>
|
||
<th style='text-align:right;'>备注:</th>
|
||
<td colspan="3"><{$supplier.memo}></td>
|
||
</tr>
|
||
|
||
<tr>
|
||
<td colspan="4"><h4>联系人信息</h4></td>
|
||
</tr>
|
||
<{foreach from=$supplier.contacter item=items}>
|
||
<tr>
|
||
<th style='text-align:right;'>联系人:</th>
|
||
<td>
|
||
<{$items.name}>
|
||
</td>
|
||
<th style='text-align:right;'>电话:</th>
|
||
<td><{$items.telphone}></td>
|
||
</tr>
|
||
<tr>
|
||
<th style='text-align:right;'>E-mail:</th>
|
||
<td>
|
||
<{$items.email}>
|
||
</td>
|
||
<th style='text-align:right;'>qq/旺旺:</th>
|
||
<td><{$items.qqwangwang}></td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="4"><b></b></td>
|
||
</tr>
|
||
<{/foreach}>
|
||
|
||
|
||
<tr>
|
||
<td colspan="4"><h4>财务信息</h4></td>
|
||
</tr>
|
||
<tr>
|
||
<th style='text-align:right;'>银行帐号:</th>
|
||
<td>
|
||
<{$supplier.account}>
|
||
</td>
|
||
<th style='text-align:right;'>开户行</th>
|
||
<td><{$supplier.bank}></td>
|
||
</tr>
|
||
|
||
</table>
|
||
</div>
|
||
</div> |