<div class="invoices form">
<?php echo $this->Form->create('Invoice'); ?>
	<fieldset>
		<legend><?php echo __('Add Invoice'); ?></legend>
	<?php
		echo $this->Form->input('subscription_id');
		echo $this->Form->input('invoiceperiod');
		echo $this->Form->input('network_id');
		echo $this->Form->input('network_name');
		echo $this->Form->input('profile_id');
		echo $this->Form->input('profileEmail');
		echo $this->Form->input('invoiceninjaId');
		echo $this->Form->input('clientId');
		echo $this->Form->input('product_id');
		echo $this->Form->input('displayInvoiceId');
		echo $this->Form->input('serviceStartDate');
		echo $this->Form->input('serviceEndDate');
		echo $this->Form->input('country_id');
		echo $this->Form->input('paymentGateway');
		echo $this->Form->input('monthlyFee');
		echo $this->Form->input('userCount');
		echo $this->Form->input('usageFee');
		echo $this->Form->input('lateFee');
		echo $this->Form->input('paidStatus');
		echo $this->Form->input('paidAmount');
		echo $this->Form->input('paidDate');
		echo $this->Form->input('paidBy');
		echo $this->Form->input('batchProcessDate');
	?>
	</fieldset>
<?php echo $this->Form->end(__('Submit')); ?>
</div>
<div class="actions">
	<h3><?php echo __('Actions'); ?></h3>
	<ul>

		<li><?php echo $this->Html->link(__('List Invoices'), array('action' => 'index')); ?></li>
		<li><?php echo $this->Html->link(__('List Subscriptions'), array('controller' => 'subscriptions', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Subscription'), array('controller' => 'subscriptions', 'action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Networks'), array('controller' => 'networks', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Network'), array('controller' => 'networks', 'action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Profiles'), array('controller' => 'profiles', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Profile'), array('controller' => 'profiles', 'action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Products'), array('controller' => 'products', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Product'), array('controller' => 'products', 'action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Countries'), array('controller' => 'countries', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Country'), array('controller' => 'countries', 'action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Sslpayments'), array('controller' => 'sslpayments', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Sslpayment'), array('controller' => 'sslpayments', 'action' => 'add')); ?> </li>
	</ul>
</div>
