Beispiel #1
0
" <?php 
echo !SI_Config::canEdit('invoice_logo') ? 'READONLY' : '';
?>
>
		</td>
	</tr>
	<tr>
		<td class="dg_data_cell_1">Default Payment Terms</td>
		<td class="dg_data_cell_1">Select the payment terms you want to be the default entry when creating invoices, you can always change the payment terms when you create the invoice.</td>
		<td class="dg_data_cell_1">
		<select name="params[invoice_terms]" class="input_text" <?php 
echo !SI_Config::canEdit('invoice_terms') ? 'READONLY' : '';
?>
>
			<?php 
echo SI_Invoice::getTermsSelectTags();
?>
		</select>
		</td>
	</tr>
	<tr>
		<td class="dg_data_cell_1">Invoice Note</td>
		<td class="dg_data_cell_1">A small bit of text that is added to the footer of every invoice.</td>
		<td class="dg_data_cell_1">
		<textarea size="5" cols="20" name="params[invoice_note]" class="input_text" size="35" <?php 
echo !SI_Config::canEdit('invoice_note') ? 'READONLY' : '';
?>
><?php 
echo $GLOBALS['CONFIG']['invoice_note'];
?>
</textarea>
Beispiel #2
0
?>
"></td>
</tr>
<tr>
	<td class="form_field_header_cell">Zip:</td>
	<td class="form_field_cell"><input name="zip" class="input_text" size="10" type="text" value="<?php 
echo $invoice->zip;
?>
"></td>
</tr>
<tr>
	<td class="form_field_header_cell">Terms:</td>
	<td class="form_field_cell">
		<select name="terms" class="input_text">
			<?php 
echo SI_Invoice::getTermsSelectTags($invoice->terms);
?>
		</select>
	</td>
</tr>
<tr>
	<td class="form_field_header_cell">Rate Structure:</td>
	<td class="form_field_cell">
		<select name="discount_line" class="input_text">
			<option value="N">Do Not Recalculate Discount</option>
			<option value="Y">Recalculate Discount, if setup for company</option>
		</select>
	</td>
</tr>
<tr>
	<td class="form_field_header_cell">Amount Due:</td>