mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-11 17:44:56 +00:00
use keywords for different searches for document reception
This commit is contained in:
parent
6cb5dec1a9
commit
e21e897468
|
@ -373,16 +373,14 @@ $(document).ready( function() {
|
|||
<label class="checkbox" for='expired'><input type="checkbox" id="expired" name="expired" value="1" <?php echo in_array(S_EXPIRED, $status) ? "checked" : ""; ?>><?php printOverallStatusText(S_EXPIRED);?></label>
|
||||
</td>
|
||||
</tr>
|
||||
<?php /* ?>
|
||||
<tr>
|
||||
<td><?php printMLText("reception");?>:</td>
|
||||
<td>
|
||||
<label class="checkbox" for='reception'><input type="checkbox" id="reception" name="reception[]" value="0" <?php echo in_array(0, $reception) ? "checked" : ""; ?>><?php printMLText('reception_noaction'); ?></label>
|
||||
<label class="checkbox" for='reception'><input type="checkbox" id="reception" name="reception[]" value="-1" <?php echo in_array(-1, $reception) ? "checked" : ""; ?>><?php printMLText('reception_rejected'); ?></label>
|
||||
<label class="checkbox" for='reception'><input type="checkbox" id="reception" name="reception[]" value="1" <?php echo in_array(1, $reception) ? "checked" : ""; ?>><?php printMLText('reception_acknowleged'); ?></label>
|
||||
<label class="checkbox" for='reception'><input type="checkbox" id="reception" name="reception[]" value="missingaction" <?php echo in_array('missingaction', $reception) ? "checked" : ""; ?>><?php printMLText('reception_noaction'); ?></label>
|
||||
<label class="checkbox" for='reception'><input type="checkbox" id="reception" name="reception[]" value="hasrejection" <?php echo in_array('hasrejection', $reception) ? "checked" : ""; ?>><?php printMLText('reception_rejected'); ?></label>
|
||||
<label class="checkbox" for='reception'><input type="checkbox" id="reception" name="reception[]" value="hasacknowledge" <?php echo in_array('hasacknowledge', $reception) ? "checked" : ""; ?>><?php printMLText('reception_acknowleged'); ?></label>
|
||||
</td>
|
||||
</tr>
|
||||
<?php */ ?>
|
||||
<tr>
|
||||
<td><?php printMLText("expires");?>:</td>
|
||||
<td>
|
||||
|
|
Loading…
Reference in New Issue
Block a user