| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?php
- /**
- * The edit view file of makeup module of Ranzhi.
- *
- * @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 makeup
- * @version $Id$
- * @link http://www.ranzhi.org
- */
- ?>
- <?php include '../../common/view/header.modal.html.php';?>
- <?php include $app->getModuleRoot() . 'common/view/datepicker.html.php';?>
- <?php include $app->getModuleRoot() . 'common/view/chosen.html.php';?>
- <?php js::set('signIn', $config->attend->signInLimit)?>
- <?php js::set('signOut', $config->attend->signOutLimit)?>
- <?php js::set('workingHours', $config->attend->workingHours)?>
- <form id='ajaxForm' method='post' action="<?php echo $this->createLink('makeup', 'edit', "id=$makeup->id")?>">
- <table class='table table-form table-condensed'>
- <tr>
- <th class='w-70px'><?php echo $lang->makeup->status;?></th>
- <td class='text-warning'><?php echo $lang->makeup->statusList[$makeup->status];?></td>
- <td></td>
- </tr>
- <tr>
- <th><?php echo $lang->makeup->begin?></th>
- <td>
- <div class='input-group'>
- <span class='input-group-addon'><?php echo $lang->makeup->date?></span>
- <?php echo html::input('begin', $makeup->begin, "class='form-control form-date date-picker-down'")?>
- <span class='input-group-addon fix-border'><?php echo $lang->makeup->time?></span>
- <?php echo html::input('start', $makeup->start, "class='form-control form-time date-picker-down'")?>
- </div>
- </td>
- <td></td>
- </tr>
- <tr>
- <th><?php echo $lang->makeup->end?></th>
- <td>
- <div class='input-group'>
- <span class='input-group-addon'><?php echo $lang->makeup->date?></span>
- <?php echo html::input('end', $makeup->end, "class='form-control form-date date-picker-down'")?>
- <span class='input-group-addon fix-border'><?php echo $lang->makeup->time?></span>
- <?php echo html::input('finish', $makeup->finish, "class='form-control form-time date-picker-down'")?>
- </div>
- </td>
- <td></td>
- </tr>
- <tr>
- <th><?php echo $lang->makeup->hours?></th>
- <td>
- <div class='input-group'>
- <?php echo html::input('hours', $makeup->hours, "class='form-control'")?>
- <span class='input-group-addon'><?php echo $lang->makeup->hoursTip?></span>
- </div>
- </td>
- <td></td>
- </tr>
- <tr>
- <th><?php echo $lang->makeup->leave;?></th>
- <td><?php echo html::select('leave[]', $leaves, $makeup->leave, "class='form-control chosen' multiple")?></td>
- <td></td>
- </tr>
- <tr>
- <th><?php echo $lang->makeup->desc?></th>
- <td><?php echo html::textarea('desc', $makeup->desc, "class='form-control'")?></td>
- <td></td>
- </tr>
- <tr>
- <th></th>
- <td><?php echo baseHTML::submitButton();?></td>
- <td></td>
- </tr>
- </table>
- </form>
- <script>
- $(document).ready(function()
- {
- $('#begin, #start, #end, #finish').change(function()
- {
- var begin = $('#begin').val();
- var end = $('#end').val();
- var start = $('#start').val();
- var finish = $('#finish').val();
- if(!begin || !end || !start || !finish) return false;
- begin = begin.replace(/-/g, '/');
- end = end.replace(/-/g, '/');
- var beginTime = Date.parse(new Date(begin + ' ' + start));
- var endTime = Date.parse(new Date(end + ' ' + finish));
- if(beginTime > endTime) return false;
- var hours = Math.round((endTime - beginTime)/(3600*1000)*100)/100;
- $('#hours').val(hours);
- });
- })
- </script>
- <?php include '../../common/view/footer.modal.html.php';?>
|