File: /www/wwwroot/oa.sanjiangapp.com/app/crm/contact/view/browse.html.php
<?php
/**
* The browse view file of contact module of ZDOO.
*
* @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL (http://zpl.pub/page/zplv12.html)
* @author Tingting Dai <daitingting@xirangit.com>
* @package contact
* @version $Id$
* @link http://www.zdoo.com
*/
?>
<?php include '../../common/view/header.html.php';?>
<?php js::set('mode', $mode);?>
<?php js::set('status', $status);?>
<?php $extendFields = $this->contact->getFlowExtendFields();?>
<li id='bysearchTab'><?php echo html::a('javascript:;', "<i class='icon-search icon'></i>" . $lang->search->common)?></li>
<div id='menuActions'>
<?php if(commonModel::hasPriv('contact', 'export')):?>
<div class='btn-group'>
<button data-toggle='dropdown' class='btn btn-secondary dropdown-toggle' type='button'><?php echo $lang->exportIcon . $lang->export;?> <span class='caret'></span></button>
<ul id='exportActionMenu' class='dropdown-menu'>
<li><?php commonModel::printLink('contact', 'export', "type=contact&mode=all", $lang->exportAll, "class='iframe' data-width='700'");?></li>
<li><?php commonModel::printLink('contact', 'export', "type=contact&mode=thisPage", $lang->exportThisPage, "class='iframe' data-width='700'");?></li>
</ul>
</div>
<?php endif;?>
<?php commonModel::printLink('contact', 'create', '', "<i class='icon-plus'></i> {$lang->contact->create}", "class='btn btn-primary'")?>
</div>
<div class='main-table' data-ride='table'>
<table class='table has-sort-head' id='contactList'>
<thead>
<tr>
<?php $vars = "mode={$mode}&status={$status}&origin={$origin}&orderBy=%s&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}&pageID={$pager->pageID}";?>
<th class='w-60px'> <?php commonModel::printOrderLink('id', $orderBy, $vars, $lang->contact->id);?></th>
<th class='w-100px'><?php commonModel::printOrderLink('realname', $orderBy, $vars, $lang->contact->realname);?></th>
<th><?php commonModel::printOrderLink('customer', $orderBy, $vars, $lang->contact->customer);?></th>
<th class='w-80px'> <?php commonModel::printOrderLink('gender', $orderBy, $vars, $lang->contact->gender);?></th>
<th class='w-200px'><?php commonModel::printOrderLink('phone', $orderBy, $vars, $lang->contact->phone . $lang->slash . $lang->contact->mobile);?></th>
<th class='w-200px'><?php commonModel::printOrderLink('email', $orderBy, $vars, $lang->contact->email);?></th>
<th class='w-100px'><?php commonModel::printOrderLink('qq', $orderBy, $vars, $lang->contact->qq);?></th>
<th class='w-100px'><?php commonModel::printOrderLink('weixin', $orderBy, $vars, $lang->contact->weixin);?></th>
<?php foreach($extendFields as $extendField) echo "<th class='" . ($extendField->width != 'auto' ? "w-{$extendField->width}px" : '') . "'>{$extendField->name}</th>";?>
<th class='text-center w-<?php echo $lang->contact->actionWidth;?>px'><?php echo $lang->actions;?></th>
</tr>
</thead>
<tbody>
<?php foreach($contacts as $contact):?>
<tr>
<td><?php echo $contact->id;?></td>
<td><?php echo html::a(inlink('view', "contactID=$contact->id&status=$contact->status"), $contact->realname);?></td>
<td class='c-name'><?php if(!empty($customers[$contact->customer])) echo html::a($this->createLink('customer', 'view', "customerID=$contact->customer"), $customers[$contact->customer]);?></td>
<td><?php echo zget($lang->genderList, $contact->gender, '');?></td>
<td>
<?php $divider = (!empty($contact->phone) && !empty($contact->mobile)) ? $lang->slash : '';?>
<?php echo $contact->phone . $divider . $contact->mobile;?>
</td>
<td><?php echo html::mailto($contact->email, $contact->email)?></td>
<td><?php echo empty($contact->qq) ? '' : html::a("tencent://Message/?Uin={$contact->qq}&websiteName=ZDOO&Menu=yes", $contact->qq, "target='_blank'")?></td>
<td><?php echo empty($contact->weixin) ? '' : $contact->weixin;?></td>
<?php foreach($extendFields as $extendField) echo "<td>" . $this->loadModel('flow')->getFieldValue($extendField, $contact) . "</td>";?>
<td class='actions'>
<?php
commonModel::printLink('action', 'createRecord', "objectType=contact&objectID={$contact->id}&customer={$contact->customer}", $lang->contact->record, "data-toggle='modal' data-width='800'");
commonModel::printLink('address', 'browse', "objectType=contact&objectID=$contact->id", $lang->contact->address, "data-toggle='modal'");
commonModel::printLink('contact', 'edit', "contactID=$contact->id", $lang->edit);
commonModel::printLink('contact', 'vcard', "contactID=$contact->id", $lang->contact->qrcode, "data-toggle='lightbox' data-group=$contact->id");
echo "<div class='dropdown'><a data-toggle='dropdown' href='javascript:;'>" . $this->lang->more . "<span class='caret'></span> </a><ul class='dropdown-menu pull-right'>";
commonModel::printLink('resume', 'browse', "contactID=$contact->id", $lang->contact->resume, "data-toggle='modal'", '', '', 'li');
commonModel::printLink('contact', 'delete', "contactID=$contact->id", $lang->delete, "class='reloadDeleter'", '', '', 'li');
echo '</ul></div>';
?>
</td>
</tr>
<?php endforeach;?>
</tbody>
</table>
<div class='table-footer'><?php $pager->show();?></div>
</div>
<?php include '../../common/view/footer.html.php';?>