2009-01-12 21:13:18 -08:00
|
|
|
<div class="quoteProducts form">
|
|
|
|
|
<?php echo $form->create('QuoteProduct');?>
|
|
|
|
|
<fieldset>
|
|
|
|
|
<legend><?php __('Add QuoteProduct');?></legend>
|
|
|
|
|
<?php
|
2009-08-13 19:09:47 -07:00
|
|
|
echo $form->input('item_number');
|
2009-01-12 21:13:18 -08:00
|
|
|
echo $form->input('option');
|
|
|
|
|
echo $form->input('quantity');
|
2009-08-13 19:09:47 -07:00
|
|
|
echo $form->input('cost_price');
|
2009-01-12 21:13:18 -08:00
|
|
|
echo $form->input('currency_id');
|
2009-08-13 19:09:47 -07:00
|
|
|
echo $form->input('our_discount');
|
2009-01-12 21:13:18 -08:00
|
|
|
echo $form->input('packing');
|
2009-08-13 19:09:47 -07:00
|
|
|
echo $form->input('shipping_weight');
|
|
|
|
|
echo $form->input('shipping_cost');
|
|
|
|
|
echo $form->input('exchange_rate');
|
2009-01-12 21:13:18 -08:00
|
|
|
echo $form->input('duty');
|
|
|
|
|
echo $form->input('finance');
|
|
|
|
|
echo $form->input('misc');
|
2009-08-13 19:09:47 -07:00
|
|
|
echo $form->input('gross_sell_price');
|
|
|
|
|
echo $form->input('target_gp');
|
2009-01-12 21:13:18 -08:00
|
|
|
echo $form->input('title');
|
|
|
|
|
echo $form->input('description');
|
|
|
|
|
echo $form->input('quote_id');
|
|
|
|
|
echo $form->input('product_id');
|
|
|
|
|
echo $form->input('discount');
|
|
|
|
|
?>
|
|
|
|
|
</fieldset>
|
|
|
|
|
<?php echo $form->end('Submit');?>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="actions">
|
|
|
|
|
<ul>
|
2009-08-13 19:09:47 -07:00
|
|
|
<li><?php echo $html->link(__('List QuoteProducts', true), array('action' => 'index'));?></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 Quotes', true), array('controller' => 'quotes', 'action' => 'index')); ?> </li>
|
|
|
|
|
<li><?php echo $html->link(__('New Quote', true), array('controller' => 'quotes', 'action' => 'add')); ?> </li>
|
|
|
|
|
<li><?php echo $html->link(__('List Products', true), array('controller' => 'products', 'action' => 'index')); ?> </li>
|
|
|
|
|
<li><?php echo $html->link(__('New Product', true), array('controller' => 'products', 'action' => 'add')); ?> </li>
|
2009-01-12 21:13:18 -08:00
|
|
|
</ul>
|
|
|
|
|
</div>
|