Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13532 anikendra 1
<div class="orders form">
2
<?php echo $this->Form->create('Order'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Admin Add Order'); ?></legend>
5
	<?php
6
		echo $this->Form->input('user_id');
7
		echo $this->Form->input('store_id');
8
		echo $this->Form->input('store_order_id');
9
		echo $this->Form->input('order_url');
10
		echo $this->Form->input('rawhtml');
11
		echo $this->Form->input('product_name');
12
		echo $this->Form->input('product_code');
13
		echo $this->Form->input('unit_price');
14
		echo $this->Form->input('total_amount');
15
		echo $this->Form->input('customer_name');
16
		echo $this->Form->input('customer_email');
17
		echo $this->Form->input('customer_mobile');
18
		echo $this->Form->input('customer_address');
19
		echo $this->Form->input('status');
20
	?>
21
	</fieldset>
22
<?php echo $this->Form->end(__('Submit')); ?>
23
</div>
24
<div class="actions">
25
	<h3><?php echo __('Actions'); ?></h3>
26
	<ul>
27
 
28
		<li><?php echo $this->Html->link(__('List Orders'), array('action' => 'index')); ?></li>
29
		<li><?php echo $this->Html->link(__('List Users'), array('controller' => 'users', 'action' => 'index')); ?> </li>
30
		<li><?php echo $this->Html->link(__('New User'), array('controller' => 'users', 'action' => 'add')); ?> </li>
31
		<li><?php echo $this->Html->link(__('List Stores'), array('controller' => 'stores', 'action' => 'index')); ?> </li>
32
		<li><?php echo $this->Html->link(__('New Store'), array('controller' => 'stores', 'action' => 'add')); ?> </li>
33
	</ul>
34
</div>