{include file='admin/billing/header.html'}
{/if}
+ <div id="exportAccountsButton" class="button button-secondary glm-admin-export-button">Accounts Export</div>
+
<a class="button glm-right button-primary" href="{$thisUrl}?page=glm-members-admin-menu-billing&glm_action=invoices&option=add">Create Invoice</a>
<a class="button glm-right button-primary" href="{$thisUrl}?page=glm-members-admin-menu-billing&glm_action=payments&option=add">Make Payment</a>
- <div id="exportAccountsButton" class="button button-secondary glm-admin-export-button">Accounts Export</div>
{include file='admin/billing/accountSearchForm.html'}
</form>
<input id="member-account" type="hidden" name="filterAccounts" value="{$filterAccounts}">
<input id="account_name" name="searchName" value="" />
</span>
- <br>
- <span class="glm-nowrap">
- <input id="filterPending" name="filterPending" value="1" {if $filterPending}checked{/if} type="checkbox" /> Show Pending Only
- <input id="filterOverdue" name="filterOverdue" value="1" {if $filterOverdue}checked{/if} type="checkbox" /> Show Overdue Only
- </span>
<br>
<span class="glm-nowrap">
<input type="submit" value="Submit">
source: availableAccounts,
select: function( event, ui ){
$('#member-account').val( ui.item.id );
+ $('#searchForm').submit();
+ },
+ change: function( event, ui) {
+ if( ui.item == null ) {
+ $('#member-account').val( '' );
+ $('#searchForm').submit();
+ }
},
});