| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <?php
- /**
- * The edit mobile view file of leave module of ZDOO.
- *
- * @copyright Copyright 2009-2016 青岛易软天创网络科技有限公司(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 leave
- * @version $Id
- * @link http://www.zdoo.com
- */
- if($extView = $this->getExtViewFile(__FILE__)){include $extView; return helper::cd();}?>
- <div class='heading divider'>
- <div class='title'><i class='icon icon-plus'></i> <strong><?php echo $lang->leave->edit;?></strong></div>
- <nav class='nav'><a data-dismiss='display'><i class='icon icon-remove'></i></a></nav>
- </div>
- <form class='content box' id='editLeaveForm' data-form-refresh='#page' method='post' action='<?php echo $this->createLink('leave', 'edit', "leaveID={$leave->id}");?>'>
- <div class='control'>
- <label><?php echo $lang->leave->type;?></label>
- <?php foreach($lang->leave->typeList as $key => $type):?>
- <?php $checked = $leave->type == $key ? "checked='checked'" : '';?>
- <div class='radio inline-block'>
- <input type='radio' name='type' value="<?php echo $key;?>" <?php echo $checked;?>>
- <label for="type"><?php echo $type;?></label>
- </div>
- <?php endforeach;?>
- </div>
- <div class='row'>
- <div class='cell-6'>
- <div class='control'>
- <label for='begin'><?php echo $lang->leave->begin;?></label>
- <input type='date' class='input' id='begin' name='begin' value="<?php echo $leave->begin;?>" placeholder='<?php echo $lang->required;?>'>
- </div>
- </div>
- <div class='cell-6'>
- <div class='control'>
- <label for='start'><?php echo $lang->leave->start;?></label>
- <input type='time' class='input' id='start' name='start' value="<?php echo $leave->start;?>" placeholder='<?php echo $lang->required;?>'>
- </div>
- </div>
- </div>
- <div class='row'>
- <div class='cell-6'>
- <div class='control'>
- <label for='end'><?php echo $lang->leave->end;?></label>
- <input type='date' class='input' id='end' name='end' value="<?php echo $leave->end;?>" placeholder='<?php echo $lang->required;?>'>
- </div>
- </div>
- <div class='cell-6'>
- <div class='control'>
- <label for='finish'><?php echo $lang->leave->finish;?></label>
- <input type='time' class='input' id='finish' value="<?php echo $leave->finish;?>" name='finish' placeholder='<?php echo $lang->required;?>'>
- </div>
- </div>
- </div>
- <div class='control'>
- <label for='hours'><?php echo $lang->leave->hours;?></label>
- <?php echo html::input('hours', $leave->hours, "class='input' placeholder='{$lang->required}'");?>
- </div>
- <div class='control'>
- <label for='desc'><?php echo $lang->leave->desc;?></label>
- <?php echo html::textarea('desc', $leave->desc, "rows='3' class='textarea'");?>
- </div>
- </form>
- <div class='footer has-padding'>
- <button type='button' data-submit='#editLeaveForm' class='btn primary'><?php echo $lang->save;?></button>
- </div>
- <script>
- $(function()
- {
- $('#editLeaveForm').modalForm().listenScroll({container: 'parent'});
-
- $('#begin, #start, #end, #finish').on('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 hours = 0;
- var beginTime = Date.parse(new Date(begin + ' ' + start));
- var endTime = Date.parse(new Date(end + ' ' + finish));
- var workingHours = <?php echo $config->attend->workingHours;?>;
- if(beginTime > endTime) return false;
- if(begin == end)
- {
- hours = Math.round((endTime - beginTime)/(3600*1000)*100)/100;
- if(hours > workingHours) hours = parseFloat(workingHours);
- }
- else
- {
- var signOut = <?php echo json_encode($config->attend->signOutLimit);?>;
- var signIn = <?php echo json_encode($config->attend->signInLimit);?>;
- var signOutTime = Date.parse(new Date(begin + ' ' + signOut));
- var signInTime = Date.parse(new Date(end + ' ' + signIn));
- var hoursStart = 0;
- var hoursEnd = 0;
- var hoursContent = 0;
- if(beginTime < signOutTime) hoursStart = Math.round((signOutTime - beginTime)/(3600*1000)*100)/100;
- if(hoursStart > workingHours) hoursStart = parseFloat(workingHours);
- if(endTime > signInTime) hoursEnd = Math.round((endTime - signInTime)/(3600*1000)*100)/100;
- if(hoursEnd > workingHours) hoursEnd = parseFloat(workingHours);
- var days = Math.floor((Date.parse(new Date(end)) - Date.parse(new Date(begin)))/(24*3600*1000));
- if(days > 1) hoursContent = (days - 1) * workingHours;
- hours = hoursStart + hoursEnd + hoursContent;
- }
- $('#hours').val(hours);
- });
- });
- </script>
|