| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?php
- /**
- * The create 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', 'create')?>">
- <table class='table table-form table-condensed'>
- <tr>
- <th class='w-70px'><?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', $date, "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', $config->attend->signInLimit, "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', $date, "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', $config->attend->signOutLimit, "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', '', "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, '', "class='form-control chosen' multiple")?></td>
- <td></td>
- </tr>
- <tr>
- <th><?php echo $lang->makeup->desc?></th>
- <td><?php echo html::textarea('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);
- });
- $('#begin').change();
- })
- </script>
- <?php include '../../common/view/footer.modal.html.php';?>
|