|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/irtiweb/CATS/modules/joborders/ |
Upload File : |
<?php /* $Id: AddModalPopup.tpl 3321 2007-10-25 22:03:10Z brian $ */ ?>
<?php TemplateUtility::printModalHeader('Job Order', array('modules/joborders/validator.js')); ?>
<table>
<tr>
<td width="3%">
<img src="images/job_orders.gif" width="24" height="24" border="0" alt="Job Orders" style="margin-top: 3px;" />
</td>
<td><h2>Job Orders: Add Job Order</h2></td>
</tr>
</table>
<p class="noteUnsized">Add Job Order</p>
<script type="text/javascript">
var typeOfAdd="new";
</script>
<table class="editTable" width="100%">
<tr>
<td class="tdData"><input type="radio" name="typeOfAddElement" onclick="document.getElementById('copyFrom').disabled=true; typeOfAdd='new';" checked> Empty Job Order</td>
</tr>
<tr>
<td class="tdData"><input type="radio" name="typeOfAddElement" onclick="document.getElementById('copyFrom').disabled=false; typeOfAdd='existing';"> Copy Existing Job Order</td>
</tr>
<tr id="hideShowCopyExisting">
<td class="tdData">
<select name="copyFrom" id="copyFrom" style="width:350px;" disabled>
<?php foreach($this->rs as $index => $data): ?>
<option value="<?php echo($data['jobOrderID']); ?>"><?php $this->_($data['title'].' ('.$data['companyName'].')'); ?></option>
<?php endforeach; ?>
</select>
</td>
</tr>
</table>
<input type="button" class="button" value="Create Job Order" onclick="parentGoToURL('<?php echo(CATSUtility::getIndexName()); ?>?m=joborders&a=add&jobOrderID='+document.getElementById('copyFrom').value+'&typeOfAdd='+typeOfAdd);"/>
<input type="button" class="button" name="close" value="Close" onclick="parentHidePopWin();" />
</body>
</html>