This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/themes/default/blocks/charge/view.tpl

81 lines
3.1 KiB
Smarty
Raw Normal View History

2009-08-03 04:10:16 +00:00
{assign var=meth value=':'|explode:$VAR._page}
<!-- {$meth.0}:{$meth.1} -->
2009-08-03 04:10:16 +00:00
{$method->exe($meth.0,$meth.1)}
{if ($method->result == false)}
{$block->display('core:method_error')}
{else}
{include file='file:../core/view_pre.tpl'}
2009-08-03 04:10:16 +00:00
<!-- Display the field validation -->
{if $form_validation}
{$block->display('core:alert_fields')}
{/if}
2009-08-03 04:10:16 +00:00
<!-- Display each record -->
<form id="view" method="post" action="" enctype="multipart/form-data">
2009-08-03 04:10:16 +00:00
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="table_background">
<tr>
<td>
<table width="100%" border="0" cellspacing="1" cellpadding="0">
<tr valign="top">
<td class="table_heading">{osb f=tt}</td>
</tr>
<tr valign="top">
<td class="row1">
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
<tr valign="top">
<td style="width: 35%;">{osb f=tf field=date_orig}</td>
<td style="width: 65%;">{$list->date_time($record.date_orig)}</td>
</tr>
<tr valign="top">
<td style="width: 35%;">{osb f=tf field=status}</td>
<td style="width: 65%;">{$list->bool('charge_status',$record.status,'" onchange="submit()')}</td>
</tr>
<tr valign="top">
<td style="width: 35%;">{osb f=tf field=sweep_type}</td>
<td style="width: 65%;">{$list->menu_staticlist('charge_sweep','','charge_sweep_type',$record.sweep_type,'form_menu')}</td>
</tr>
<tr valign="top">
<td style="width: 35%;">{osb f=tf field=account_id}</td>
<td style="width: 65%;">{osb f=html_select_account name='charge_account_id' default=$record.account_id}</td>
</tr>
<tr valign="top">
<td style="width: 35%;">{osb f=tf field=product_id}</td>
<td style="width: 65%;">{$record.product_id}</td>
</tr>
<tr valign="top">
<td style="width: 35%;">{osb f=tf field=service_id}</td>
<td style="width: 65%;">{$record.service_id}</td>
</tr>
<tr valign="top">
<td style="width: 35%;">{osb f=tf field=amount}</td>
<td style="width: 65%;"><input type="text" name="charge_amount" value="{$record.amount}" size="16"/>{$list->currency_iso('')}</td>
</tr>
<tr valign="top">
<td style="width: 35%;">{osb f=tf field=quantity}</td>
<td style="width: 65%;"><input type="text" name="charge_quantity" value="{$record.quantity}" size="3"/></td>
</tr>
<tr valign="top">
<td style="width: 35%;">{osb f=tf field=taxable}</td>
<td style="width: 65%;">{$list->bool('charge_taxable',$record.taxable,'')}</td>
</tr>
<tr valign="top">
<td style="width: 35%;">{osb f=tf field=attributes}</td>
<td style="width: 65%;">{$record.attributes|nl2br|replace:'==':' -> '}</td>
</tr>
</table>
</td>
</tr>
{include file='file:../core/view_tr_submit_delete.tpl'}
</table>
</td>
</tr>
</table>
2009-08-03 04:10:16 +00:00
{include file='file:../core/view_post.tpl'}
</form>
{/if}