cmc-sales/views/customers/find.ctp

19 lines
584 B
Plaintext
Raw Normal View History

2009-03-19 23:02:20 -07:00
2010-02-18 21:38:43 -08:00
<?php echo $javascript->link('autocomplete-customer'); ?>
2009-03-19 23:02:20 -07:00
<div class="customers form">
<?php echo $this->element('tipbox', array('tip' => "Start typing the Company name into the box, a list of results should appear. Select the Customer you're looking for and click 'View'")); ?>
<?php echo $form->create('Customer', array('action'=>'find'));
echo '<h2>Find Customer';
echo $html->image('system-search.png');
echo '</h2>';
2010-02-18 21:38:43 -08:00
echo $form->input('Customer.name', array('Label'=>'Customer Name', 'id'=>'customerName'));
2009-03-19 23:02:20 -07:00
echo $form->end('Find');
?>
</div>