33 lines
1.5 KiB
PHP
Executable file
33 lines
1.5 KiB
PHP
Executable file
<div class="quotes form">
|
|
<?php echo $form->create('Quote');?>
|
|
<fieldset>
|
|
<legend><?php __('Add Quote');?></legend>
|
|
<?php
|
|
echo $form->input('enquiry_id');
|
|
echo $form->input('currency_id');
|
|
echo $form->input('revision');
|
|
echo $form->input('delivery_time');
|
|
echo $form->input('payment_terms');
|
|
echo $form->input('days_valid');
|
|
echo $form->input('date_issued');
|
|
echo $form->input('valid_until');
|
|
echo $form->input('delivery_point');
|
|
echo $form->input('exchange_rate');
|
|
echo $form->input('customs_duty');
|
|
echo $form->input('document_id');
|
|
?>
|
|
</fieldset>
|
|
<?php echo $form->end('Submit');?>
|
|
</div>
|
|
<div class="actions">
|
|
<ul>
|
|
<li><?php echo $html->link(__('List Quotes', true), array('action' => 'index'));?></li>
|
|
<li><?php echo $html->link(__('List Enquiries', true), array('controller' => 'enquiries', 'action' => 'index')); ?> </li>
|
|
<li><?php echo $html->link(__('New Enquiry', true), array('controller' => 'enquiries', 'action' => 'add')); ?> </li>
|
|
<li><?php echo $html->link(__('List Currencies', true), array('controller' => 'currencies', 'action' => 'index')); ?> </li>
|
|
<li><?php echo $html->link(__('New Currency', true), array('controller' => 'currencies', 'action' => 'add')); ?> </li>
|
|
<li><?php echo $html->link(__('List Documents', true), array('controller' => 'documents', 'action' => 'index')); ?> </li>
|
|
<li><?php echo $html->link(__('New Document', true), array('controller' => 'documents', 'action' => 'add')); ?> </li>
|
|
</ul>
|
|
</div>
|