Commit 208cafed authored by Jean-Paul Saman's avatar Jean-Paul Saman

addedit: cosmetics

parent 787b3ace
......@@ -388,17 +388,18 @@ Invoices will not be editable once the status changes from Open for Editing.
</td>
</tr>
<tr valign="top" width="90%">
<td align="right">Invoice Number&nbsp;
<?php echo $invoice_id?>
</td>
<td align="right">Invoice Number</td>
<td align="right"><?php echo $invoice_id?></td>
<td>&nbsp;</td>
</tr>
<tr valign="top" width="90%">
<td align="right">Invoice Tag&nbsp;
<input type="text" name="tag" value="<?php echo $invoice_tag;?>" class="text" pattern="^]s*]d{8}" size=8 />
</td>
<td align="right">Invoice Tag</td>;
<td align="right"><input type="text" name="tag" value="<?php echo $invoice_tag;?>" class="text" pattern="^\s*\d{8}" size=8 /></td>
<td>&nbsp;</td>
</tr>
<tr valign="top" width="90%">
<td align="right">Invoice Status&nbsp;
<td align="right">Invoice Status</td>
<td align="right">
<select name="stat" size="1" class="text">
<option <?php if ($invoice_status == "0") print "selected" ?> value="0">Open for Editing</option>
<option <?php if ($invoice_status == "1") print "selected" ?> value="1">Pending Payment</option>
......@@ -406,8 +407,12 @@ Invoices will not be editable once the status changes from Open for Editing.
<option <?php if ($invoice_status == "3") print "selected" ?> value="3">Loss</option>
</select>
</td>
<td>&nbsp;</td>
</tr>
<tr>
<td align="left">
<input class="button" type="button" name="cancel" value="<?php echo $AppUI->_('cancel');?>" onClick="javascript:if(confirm('Are you sure you want to cancel.')){location.href = './index.php?m=invoice';}" />
</td>
<td align="right">
<input class="button" type="submit" name="submit" value="<?php echo $AppUI->_('submit');?>"/>
</td>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment