westdc-zf1/application/default/views/scripts/data/order.phtml

162 lines
6.4 KiB
PHTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
$this->headTitle($this->config->title->site);
$this->headTitle($this->config->title->data);
$this->headTitle('离线申请');
$this->headTitle()->setSeparator(' - ');
$this->breadcrumb('<a href="/">首页</a>');
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
$this->breadcrumb('离线申请');
$this->breadcrumb()->setSeparator(' > ');
?>
<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)) { ?>
<?php if(!empty($this->jump_url)) {?>
<div class="alert <?= $this->AlertType;?>">
<a data-dismiss="alert" class="close">×</a>
<?php echo $this->msg ?>
</div>
<?php if(!empty($this->jump_url)) { ?>
<br /><a href="<?= $this->jump_url ?>">如果页面没有自动跳转请点击这里</a>
<script language="javascript">setTimeout("self.location='<?php echo $this->jump_url ?>'",3000);</script>
<?php } ?>
<?php } ?>
<?php }else{?>
<?php if(!empty($this->error)) { ?>
<div class="alert alert-block alert-error fade in" id="Alert-error-box">
<a class="close" data-dismiss="alert" href="#">×</a>
<?php if(!is_array($this->error)) { ?><h4 class="alert-heading"><?= $this->error ?></h4><?php } else { ?>
<ul>
<?php foreach($this->error as $v) { ?>
<li><?= $v ?></li>
<?php } ?>
</ul>
<?php } ?>
</div>
<?php } ?>
<!-- content -->
<?php if ($this->dataorder0) : ?>
<div id="row">
<h4>正在下载中的在线数据(<a href="/data/order/finish/all">完成所有</a> <a href="/data/order/cancel/all">取消所有</a></h4>
<table class="table table-bordered table-striped">
<thead>
<th>开始时间</th>
<th>数据名称</th>
<th>操作</th>
</thead>
<tbody>
<?php foreach($this->dataorder0 as $order) : ?>
<tr>
<td><?php echo date('Y-m-d H:i:s',strtotime($order['ts_created'])); ?></td>
<td><a href="<?php echo $order['uuid']; ?>"><?php echo $order['title']; ?></a></td>
<td></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
<?php endif; ?>
<?php if ($this->dataorder1) : ?>
<hr />
<div id="row">
<h4>准备提交的离线申请(<a href="/data/order/apply/all">提交所有离线申请</a></h4>
<table class="table table-bordered table-striped">
<thead>
<th>申请时间</th>
<th>数据类型</th>
<th>数据名称</th>
<th>操作</th>
</thead>
<tbody>
<?php foreach($this->dataorder1 as $order) : ?>
<tr>
<td><?php echo date('Y-m-d H:i:s',strtotime($order['ts_created'])); ?></td>
<td><?php print $order['datatype']?'离线数据':'在线数据'; ?></td>
<td><a href="<?php echo $order['uuid']; ?>"><?php echo $order['title']; ?></a></td>
<td><a href="/data/order/apply/<?php echo $order['id']; ?>" class="btn btn-primary btn-small">离线申请</a>
<a href="/data/order/cancel/<?php echo $order['id']; ?>" class="btn btn-small">取消下载</a></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
<?php endif; ?>
<?php if ($this->dataorder2) : ?>
<hr />
<div id="row">
<h4>已提交的离线申请(<a href="/data/order/pdf/1">生成PDF离线数据申请表</a> </h4>
<table class="table table-bordered table-striped">
<thead>
<th>申请时间</th>
<th>数据名称</th>
<th>申请状态</th>
</thead>
<tbody>
<?php foreach($this->dataorder2 as $order) : ?>
<tr>
<td><?php echo date('Y-m-d H:i:s',strtotime($order['ts_created'])); ?></td>
<td><a href="<?php echo $order['uuid']; ?>"><?php echo $order['title']; ?></a></td>
<td>
<?php switch($order['status']) {
case 2:
echo "请生成PDF申请表";
echo ' <a href="/data/order/cancel/'.$order['id'].'">取消</a>';
break;
case 3:
echo "请打印并邮寄申请表";
break;
case 4:
echo "已收到申请,请等待审批";
break;
case 5:
echo "已通过申请,请查收邮件";
break;
default:
break;
}
?>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
<?php endif; ?>
<?php if ($this->dataorder3) : ?>
<hr />
<div id="row">
<h4>已通过的离线申请</h4>
<table class="table table-bordered table-striped">
<thead>
<th>申请时间</th>
<th>数据名称</th>
<th>通过时间</th>
</thead>
<tbody>
<?php foreach($this->dataorder3 as $order) : ?>
<tr>
<td><?php echo date('Y-m-d H:i:s',strtotime($order['ts_created'])); ?></td>
<td><a href="<?php echo $order['uuid']; ?>"><?php echo $order['title']; ?></a></td>
<td><?php echo date('Y-m-d H:i:s',strtotime($order['ts_approved'])); ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
<?php endif; ?>
<!-- /content -->
<?php }?>
</div><!--/span-->
</div><!--/row-->