| 15219 |
manas |
1 |
<div class="callhistories form">
|
|
|
2 |
<?php echo $this->Form->create('Callhistory'); ?>
|
|
|
3 |
<fieldset>
|
|
|
4 |
<legend><?php echo __('Add Callhistory'); ?></legend>
|
|
|
5 |
<?php
|
|
|
6 |
echo $this->Form->input('retailer_id');
|
|
|
7 |
echo $this->Form->input('agent_id');
|
|
|
8 |
echo $this->Form->input('mobile_number');
|
|
|
9 |
echo $this->Form->input('call_type');
|
|
|
10 |
echo $this->Form->input('sms_verified');
|
|
|
11 |
echo $this->Form->input('call_time');
|
|
|
12 |
echo $this->Form->input('duration_sec');
|
|
|
13 |
echo $this->Form->input('call_disposition');
|
|
|
14 |
echo $this->Form->input('disposition_description');
|
|
|
15 |
?>
|
|
|
16 |
</fieldset>
|
|
|
17 |
<?php echo $this->Form->end(__('Submit')); ?>
|
|
|
18 |
</div>
|
|
|
19 |
<div class="actions">
|
|
|
20 |
<h3><?php echo __('Actions'); ?></h3>
|
|
|
21 |
<ul>
|
|
|
22 |
|
|
|
23 |
<li><?php echo $this->Html->link(__('List Callhistories'), array('action' => 'index')); ?></li>
|
|
|
24 |
<li><?php echo $this->Html->link(__('List Retailers'), array('controller' => 'retailers', 'action' => 'index')); ?> </li>
|
|
|
25 |
<li><?php echo $this->Html->link(__('New Retailer'), array('controller' => 'retailers', 'action' => 'add')); ?> </li>
|
|
|
26 |
<li><?php echo $this->Html->link(__('List Agents'), array('controller' => 'agents', 'action' => 'index')); ?> </li>
|
|
|
27 |
<li><?php echo $this->Html->link(__('New Agent'), array('controller' => 'agents', 'action' => 'add')); ?> </li>
|
|
|
28 |
</ul>
|
|
|
29 |
</div>
|