143 lines
5.6 KiB
PHTML
143 lines
5.6 KiB
PHTML
<?php
|
||
$this->headTitle($this->config->title->site);
|
||
$this->headTitle($this->config->title->data);
|
||
$this->headTitle('离线申请');
|
||
$this->headTitle()->setSeparator(' - ');
|
||
$this->nav[] = array('link'=>"/data/order",'title'=>'数据蓝');
|
||
$this->theme->AppendPlus($this,'colorbox');
|
||
$this->theme->AppendPlus($this,'uploadify');
|
||
$this->theme->AppendModel($this,'offlineapp-uploader');
|
||
?>
|
||
<div class="row">
|
||
|
||
<div class="span3">
|
||
<div class="well sidebar-nav">
|
||
<?= $this->partial('account/left.phtml'); ?>
|
||
</div><!--/.well -->
|
||
</div><!--/span-->
|
||
<div class="span9">
|
||
<h3>数据篮</h3>
|
||
<hr />
|
||
<?php
|
||
if(!empty($this->msg))
|
||
{
|
||
echo $this->msg;
|
||
}
|
||
?>
|
||
<ul class="nav nav-tabs">
|
||
|
||
<li id="Nav-order-offline1"><a href="/data/order/ac/offline1">未生成的申请<?= !empty($this->counts['offline1']) ? '<span class="badge badge-info">'.$this->counts['offline1'].'</span>':'' ?></a></li>
|
||
<li id="Nav-order-offline2"><a href="/data/order/ac/offline2">待提交的订单<?= !empty($this->counts['offline2']) ? '<span class="badge badge-info">'.$this->counts['offline2'].'</span>':'' ?></a></li>
|
||
<li id="Nav-order-offline3"><a href="/data/order/ac/offline3">待审批的订单<?= !empty($this->counts['offline3']) ? '<span class="badge badge-info">'.$this->counts['offline3'].'</span>':'' ?></a></li>
|
||
<li id="Nav-order-offline4"><a href="/data/order/ac/offline4">已通过的申请<?= !empty($this->counts['offline4']) ? '<span class="badge badge-info">'.$this->counts['offline4'].'</span>':'' ?></a></li>
|
||
<li id="Nav-order-online"><a href="/data/order/ac/online">在线数据<?= !empty($this->counts['onlineapp']) ? '<span class="badge badge-info">'.$this->counts['onlineapp'].'</span>':'' ?></a></li>
|
||
</ul>
|
||
<!-- content -->
|
||
<?php if (!empty($this->paginator)) : ?>
|
||
<div class="pagenavi"><?= $this->paginator; ?></div>
|
||
<?php if ($this->tabID=='order-offline2') { ?>
|
||
<div class="well alert alert-error">重要说明:完成一个订单需要三个步骤,即<strong>生成pdf</strong>、<strong>上传签字后的pdf</strong>、<strong>确认订单</strong>。请确保上传的pdf和当前订单中的数据相同,否则无法受理。若不相同,请重新生成、上传。</div>
|
||
<?php } ?>
|
||
<table class="table table-bordered table-striped">
|
||
<thead>
|
||
<th>时间</th>
|
||
<th>标题</th>
|
||
<th>
|
||
<?php if ($this->tabID=='order-offline1') {
|
||
echo '<a class="btn btn-primary" href="/data/order/apply/all">全部放入订单</a>(最多5条)';
|
||
} elseif ($this->tabID=='order-offline2') {
|
||
if(count($this->paginator))
|
||
{
|
||
echo '<a class="btn btn-primary" href="/data/order/pdf/1">生成pdf</a> ';
|
||
if($this->offlineappid >1)
|
||
{
|
||
if(empty($this->applicationform))
|
||
{
|
||
echo '<a class="btn btn-primary" href="javascript:void(0);" onclick="upload.showUploadForm('.$this->offlineappid.');">上传pdf</a>';
|
||
}
|
||
else
|
||
{
|
||
echo '<a class="btn btn-warning" href="javascript:void(0);" onclick="upload.showUploadForm('.$this->offlineappid.');">重新上传pdf</a>
|
||
<a class="btn btn-success" href="/data/order/ac/commitapplicationform/?offlineappid='.$this->offlineappid.'">确认订单</a>';
|
||
}
|
||
}
|
||
}
|
||
} elseif ($this->tabID=='order-offline3') {
|
||
if(count($this->paginator))
|
||
{
|
||
echo "请等待审核";
|
||
}
|
||
} elseif ($this->tabID=='order-offline4') {
|
||
echo '通过时间';
|
||
}
|
||
?>
|
||
|
||
</th>
|
||
</thead>
|
||
<tbody>
|
||
<?php foreach($this->paginator as $order) : ?>
|
||
<tr>
|
||
<?php if($order['status'] < 4) { ?>
|
||
<td><?php echo date('Y-m-d H:i:s',strtotime($order['ts_created'])); ?></td>
|
||
<?php }else{ ?>
|
||
<td><?php echo date('Y-m-d H:i:s',strtotime($order['ts_received'])); ?></td>
|
||
<?php } ?>
|
||
<td><a href="/data/<?php echo $order['uuid']; ?>"><?php echo $order['title']; ?></a></td>
|
||
<td>
|
||
<?php
|
||
if ($this->tabID=='order-offline1') {
|
||
echo '<a href="/data/order/apply/'.$order['id'].'" class="btn btn-primary">放入订单</a>
|
||
<a href="/data/order/cancel/'.$order['id'].'" class="btn">移除</a>';
|
||
} elseif ($this->tabID=='order-offline2') {
|
||
switch($order['status']) {
|
||
case 2:
|
||
if(empty($order['applicationform']))
|
||
echo "请生成pdf并上传".' <a class="btn" href="/data/order/cancel/'.$order['id'].'">移除</a>';
|
||
else
|
||
echo '<span class="label label-success">PDF已上传,请确认订单</span>';
|
||
break;
|
||
case 3:
|
||
echo '<span class="label label-success">申请表已上传</span>';
|
||
break;
|
||
default:
|
||
break;
|
||
}
|
||
} elseif ($this->tabID=='order-offline3') {
|
||
switch($order['status']) {
|
||
case 3:
|
||
if(!empty($order['applicationform']))
|
||
echo '<span class="label label-success">申请表已上传</span>';
|
||
else
|
||
echo '<span class="label label-warning">请上传申请表</span>';
|
||
break;
|
||
case 4:
|
||
if(!empty($order['applicationform']))
|
||
{ echo "已收到申请,请等待审批。日期:";echo date('Y-m-d',strtotime($order['ts_received']));}
|
||
else
|
||
echo '<span class="label label-warning">请上传申请表</span>';
|
||
break;
|
||
case 5:
|
||
echo "已通过申请,请查收邮件";
|
||
break;
|
||
default:
|
||
break;
|
||
}
|
||
} elseif ($this->tabID=='order-offline4') {
|
||
echo date('Y-m-d',strtotime($order['ts_approved']));
|
||
}
|
||
?>
|
||
</td>
|
||
</tr>
|
||
<?php endforeach; ?>
|
||
</tbody>
|
||
</table>
|
||
<?php endif; ?>
|
||
<!-- /content -->
|
||
</div><!--/span-->
|
||
</div><!--/row-->
|
||
<script>$('#Nav-<?= $this->tabID?>').addClass("active");</script>
|
||
<script>
|
||
var _this = {};
|
||
</script>
|
||
<?= $this->partial('data/offlineapp-uploaderform.phtml'); ?>
|