HEX
Server: nginx/1.22.1
System: Linux VM-16-9-centos 3.10.0-1160.99.1.el7.x86_64 #1 SMP Wed Sep 13 14:19:20 UTC 2023 x86_64
User: www (1001)
PHP: 7.3.31
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/oa.sanjiangapp.com/app/crm/contact/view/x.view.html.php
<?php
/**
 * The detail 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      Gang Liu <liugang@cnezsoft.com>
 * @package     contact
 * @version     $Id$
 * @link        http://www.zdoo.com
 */
?>
<?php include '../../../sys/common/view/header.lite.html.php';?>
<?php include '../../../sys/common/view/kindeditor.html.php';?>
<div class='xuanxuan-card'>
  <div class='panel'>
    <div class='panel-heading'><strong><?php echo $lang->contact->basicInfo;?></strong></div>
    <div class='panel-body'>
      <table class='table table-info'>
        <tr>
          <th class='w-70px'><?php echo $lang->contact->realname;?></th>
          <td><?php echo  $contact->realname;?></td>
        </tr>
        <tr>
          <th><?php echo $lang->contact->customer;?></th>
          <td>
            <?php
            if(isset($customers[$contact->customer])) echo html::a($this->createLink('customer', 'view', "customerID={$contact->customer}"), $customers[$contact->customer]);
            if($contact->maker) echo " ({$lang->resume->maker})";
            ?>
          </td>
        </tr>
        <?php if($contact->dept):?>
        <tr>
          <th><?php echo $lang->resume->dept;?></th>
          <td><?php echo  $contact->dept;?></td>
        </tr>
        <?php endif;?>
        <?php if($contact->title):?>
        <tr>
          <th><?php echo $lang->resume->title;?></th>
          <td><?php echo  $contact->title;?></td>
        </tr>
        <?php endif;?>
        <?php if($contact->join):?>
        <tr>
          <th><?php echo $lang->resume->join;?></th>
          <td><?php echo formatTime($contact->join, DT_DATE1);?></td>
        </tr>
        <?php endif;?>
        <?php if(formatTime($contact->birthday, DT_DATE1)):?>
        <tr>
          <th><?php echo $lang->contact->birthday;?></th>
          <td><?php echo formatTime($contact->birthday, DT_DATE1);?></td>
        </tr>
        <?php endif;?>
        <?php if($contact->gender != 'u'):?>
        <tr>
          <th><?php echo $lang->contact->gender;?></th>
          <td><?php echo zget($lang->genderList, $contact->gender, '');?></td>
        </tr>
        <?php endif;?>
        <?php if(formatTime($contact->createdDate)):?>
        <tr>
          <th><?php echo $lang->contact->createdDate;?></th>
          <td><?php echo formatTime($contact->createdDate, DT_DATETIME1);?></td>
        </tr>
        <?php endif;?>
      </table>
    </div>
  </div>
  <div class='panel'>
    <div class='panel-heading'><strong><?php echo $lang->contact->contactInfo;?></strong></div>
    <div class='panel-body'>
      <table class='table table-info contact-info'>
        <tr>
          <td>
            <div class='row'>
              <div class='col-sm-11'>
                <dl class='contact-info'>
                <?php foreach($config->contact->contactWayList as $item):?>
                <?php if(!empty($contact->{$item})):?>
                  <dd>
                    <span><?php echo $lang->contact->{$item};?></span>
                    <?php $site = isset($config->company->name) ? $config->company->name : '';?>
                    <?php if($item == 'qq') echo html::a("http://wpa.qq.com/msgrd?v=3&uin={$contact->$item}&site={$site}&menu=yes", $contact->$item, "target='_blank'");?>
                    <?php if($item == 'email') echo html::mailto($contact->{$item}, $contact->{$item});?>
                    <?php if($item != 'qq' and $item != 'email') echo $contact->{$item};?>
                  </dd>
                <?php endif;?>
                <?php endforeach;?>
                </dl>
                <p class='vcard'><?php echo html::image(inlink('vcard', "contactID={$contact->id}"))?></p>
              </div>
              <div class='col-sm-1'><i class='btn-vcard icon icon-qrcode icon-large'> </i></div>
            </div>
          </td>
        </tr>
      </table>
    </div>
  </div>
  <?php if($resumes):?>
  <div class='panel'>
    <div class='panel-heading'>
      <div class='row'>
      <div class='col-sm-3'><strong><?php echo $lang->contact->resume;?></strong></div>
      <div class='col-sm-4 text-center'><strong><?php echo $lang->resume->customer;?></strong></div>
      <div class='col-sm-2'><strong><?php echo $lang->resume->dept;?></strong></div>
      <div class='col-sm-3 text-center'><strong><?php echo $lang->resume->title;?></strong></div>
      </div>
    </div>
    <table class='table table-data'>
      <?php foreach($resumes as $resume):?>
      <tr class='text-center'>
        <td class='w-p25'><?php echo formatTime($resume->join, DT_DATE1) . $lang->minus . formatTime($resume->left, DT_DATE1);?></td>
        <td class='w-p30'><?php if(isset($customers[$resume->customer])) echo $customers[$resume->customer]?></td>
        <td class='w-p20'><?php echo $resume->dept?></td>
        <td class='w-p25'><?php echo $resume->title?></td>
     </tr>
      <?php endforeach;?>
    </table>
  </div>
  <?php endif;?>
  <?php if($addresses):?>
  <div class='panel'>
    <div class='panel-heading'><strong><?php echo $lang->contact->address;?></strong></div>
    <table class='table table-data'>
      <?php foreach($addresses as $address):?>
      <tr>
        <td><?php echo $address->title . $lang->colon . $address->fullLocation;?></td>
      </tr>
      <?php endforeach;?>
    </table>
  </div>
  <?php endif;?>
  <?php if($contact->desc):?>
  <div class='panel'>
    <div class='panel-heading'><strong><?php echo $lang->contact->desc;?></strong></div>
    <div class='panel-body'><?php echo $contact->desc;?></div>
  </div>
  <?php endif;?>
  <?php if($fileList) echo $this->fetch('file', 'printFiles', array('files' => $fileList, 'fieldset' => 'true'))?>
  <?php echo $this->fetch('action', 'history', "objectType=contact&objectID={$contact->id}")?>
  <div class='page-actions'>
    <?php
    echo "<div class='btn-group'>";
    commonModel::printLink('action', 'createRecord', "objectType=contact&objectID={$contact->id}&customer={$contact->customer}&history=", $lang->contact->record, "data-toggle='modal' data-width='800' class='btn'");
    commonModel::printLink('address', 'browse', "objectType=contact&objectID=$contact->id", $lang->contact->address, "data-toggle='modal' class='btn'");
    commonModel::printLink('resume', 'browse', "contactID=$contact->id", $lang->contact->resume, "data-toggle='modal' class='btn'");
    echo "</div>";

    echo "<div class='btn-group'>";
    commonModel::printLink('contact', 'edit', "contactID=$contact->id", $lang->edit, "class='btn'");
    commonModel::printLink('contact', 'delete', "contactID=$contact->id", $lang->delete, "class='deleter btn'");
    echo html::a('#commentBox', $this->lang->comment, "class='btn btn-default' onclick=setComment()");
    echo "</div>";

    echo html::backButton();
    ?>
  </div>
  <fieldset id='commentBox' class='hide'>
    <legend><?php echo $lang->comment;?></legend>
    <form id='ajaxForm' method='post' action='<?php echo inlink('edit', "contactID={$contact->id}&comment=true")?>'>
      <div class='form-group'><?php echo html::textarea('comment', '',"rows='5' class='w-p100'");?></div>
      <?php echo html::submitButton();?>
    </form>
  </fieldset>      
</div>
<?php include '../../common/view/footer.html.php';?>