Merge branch 'sprint209_leiyong_task_58578' into 'master'

* Finish task#58578.

See merge request easycorp/zentaopms!4200
This commit is contained in:
孙广明
2022-06-29 05:34:12 +00:00
13 changed files with 33 additions and 12 deletions
+2 -2
View File
@@ -72,7 +72,7 @@
<td><?php echo html::input('code', $code, "class='form-control' required");?></td><td></td><td></td>
</tr>
<tr>
<th><?php echo $lang->execution->dateRange;?></th>
<th id='dateRange'><?php echo $lang->execution->dateRange;?></th>
<td>
<div class='input-group'>
<?php echo html::input('begin', (isset($plan) && !empty($plan->begin) ? $plan->begin : date('Y-m-d')), "class='form-control form-date' onchange='computeWorkDays()' placeholder='" . $lang->execution->begin . "' required");?>
@@ -80,7 +80,7 @@
<?php echo html::input('end', (isset($plan) && !empty($plan->end) ? $plan->end : ''), "class='form-control form-date' onchange='computeWorkDays()' placeholder='" . $lang->execution->end . "' required");?>
</div>
</td>
<td colspan='2'><?php echo html::radio('delta', $lang->execution->endList , '', "onclick='computeEndDate(this.value)'");?></td>
<td id='dateRangeOption' colspan='2'><?php echo html::radio('delta', $lang->execution->endList , '', "onclick='computeEndDate(this.value)'");?></td>
</tr>
<tr>
<th><?php echo $lang->execution->days;?></th>
+1 -1
View File
@@ -44,7 +44,7 @@
<td><?php echo html::input('code', $execution->code, "class='form-control' required");?></td>
</tr>
<tr>
<th><?php echo $lang->execution->dateRange;?></th>
<th id="dateRange"><?php echo $lang->execution->dateRange;?></th>
<td>
<div class='input-group'>
<?php echo html::input('begin', $execution->begin, "class='form-control form-date' onchange='computeWorkDays()' required placeholder='" . $lang->execution->begin . "'");?>