File: /www/wwwroot/oa.sanjiangapp.com/app/oa/refund/view/review.html.php
<?php
/**
* The review view file of refund 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 refund
* @version $Id$
* @link http://www.zdoo.com
*/
?>
<?php include '../../../sys/common/view/header.modal.html.php';?>
<?php include '../../../sys/common/view/kindeditor.html.php';?>
<?php js::set('detail', !empty($refund->detail) ? true : false);?>
<form method='post' id='ajaxForm' action='<?php echo inlink('review', "refundID={$refund->id}")?>'>
<div class='refundTable'>
<table class='table table-fixed table-bordered'>
<thead>
<tr class='text-center'>
<th class='w-80px'><?php echo $lang->refund->date;?></th>
<th class='w-80px'><?php echo $lang->refund->dept;?></th>
<th class='w-80px'><?php echo $lang->refund->money;?></th>
<th class='w-80px'><?php echo $lang->refund->invoice;?></th>
<th class='w-80px'><?php echo $lang->refund->status;?></th>
<th class='w-150px'><?php echo $lang->refund->category;?></th>
<th class='text-nowrap'><?php echo $lang->refund->desc;?></th>
<th class='w-60px'><?php echo $lang->refund->reviewStatusList['pass'];?></th>
</tr>
</thead>
<?php if(!empty($refund->detail)):?>
<?php foreach($refund->detail as $detail):?>
<tr class='text-center'>
<td><?php echo formatTime($detail->date, DT_DATE1);?></td>
<td><?php echo zget($deptList, $refund->dept);?></td>
<td class='text-right'><?php echo zget($currencySign, $detail->currency) . "<span class='detailMoney'>" . $detail->money . "</span>";?></td>
<td class='text-right'><?php echo zget($currencySign, $detail->currency) . $detail->invoice;?></td>
<td><?php echo $lang->refund->statusList[$detail->status];?></td>
<td class='text-ellipsis' title="<?php echo zget($categories, $detail->category, ' ');?>"><?php echo zget($categories, $detail->category, ' ');?></td>
<td class='text-ellipsis' title="<?php echo $detail->desc;?>"><?php echo $detail->desc;?></td>
<td>
<div class='checkbox-primary'>
<input type='checkbox' name="statusList[<?php echo $detail->id?>]" value='1' id="status<?php echo $detail->id;?>" <?php echo $detail->status == 'reject' ? '' : "checked='checked'";?>><label for="status<?php echo $detail->id;?>"></label>
</div>
</td>
</tr>
<?php endforeach;?>
<?php else:?>
<tr class='text-center'>
<td><?php echo formatTime($refund->date, DT_DATE1);?></td>
<td><?php echo zget($deptList, $refund->dept);?></td>
<td class='text-right'><?php echo zget($currencySign, $refund->currency) . "<span class='detailMoney'>" . $refund->money . "</span>";?></td>
<td class='text-right'><?php echo zget($currencySign, $refund->currency) . "<span class='detailMoney'>" . $refund->invoice . "</span>";?></td>
<td><?php echo $lang->refund->statusList[$refund->status];?></td>
<td class='text-ellipsis' title="<?php echo zget($categories, $refund->category, ' ');?>"><?php echo zget($categories, $refund->category, ' ');?></td>
<td class='text-ellipsis' title="<?php echo $refund->desc;?>"><?php echo $refund->desc;?></td>
<td>
<div class='checkbox-primary'>
<input type='checkbox' name='status' value='1' id="status<?php echo $refund->id;?>" <?php echo $refund->status == 'reject' ? '' : "checked='checked'";?>><label for="status<?php echo $refund->id;?>"></label>
</div>
</td>
</tr>
<?php endif;?>
</table>
</div>
<table class='table table-form'>
<tr class='reviewMoney'>
<th class='w-70px text-center text-middle'><?php echo $lang->refund->reviewMoney;?></th>
<td class='w-300px'>
<div class='input-group'>
<?php echo html::input('money', $refund->money, "class='form-control'");?>
<span class='input-group-addon'><?php echo zget($lang->currencyList, $refund->currency, $refund->currency);?></span>
</div>
</td>
<td></td>
</tr>
<tr class='reason'>
<th class='w-70px text-center text-middle'><?php echo $lang->comment;?></th>
<td colspan='2'><?php echo html::textarea("reason", '', "class='form-control'");?></td>
</tr>
<tr>
<th></th>
<td class='form-actions'><?php echo html::submitButton();?></td>
<td></td>
</tr>
</table>
</form>
<?php include '../../../sys/common/view/footer.modal.html.php';?>