cmc-sales/php/app/views/products/view.ctp

56 lines
1.7 KiB
Plaintext
Raw Permalink Normal View History

2010-05-30 22:54:44 -07:00
<?php echo $javascript->link('costing_dialog'); ?>
<div class="products view">
<h2><?php __('Product: '.$product['Product']['title']);?></h2>
<dl><?php $i = 0; $class = ' class="altrow"';?>
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Principle'); ?></dt>
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
<?php echo $html->link($product['Principle']['name'], array('controller'=> 'principles', 'action'=>'view', $product['Principle']['id'])); ?>
&nbsp;
</dd>
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Title'); ?></dt>
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
<?php echo $product['Product']['title']; ?>
&nbsp;
</dd>
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Description'); ?></dt>
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
<?php echo $product['Product']['description']; ?>
&nbsp;
</dd>
2011-11-13 18:40:06 -08:00
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Item Code'); ?></dt>
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
2011-11-13 18:40:06 -08:00
<?php echo $product['Product']['item_code']; ?>
&nbsp;
</dd>
2011-11-13 18:40:06 -08:00
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Item Decription'); ?></dt>
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
2011-11-13 18:40:06 -08:00
<?php echo $product['Product']['item_description']; ?>
&nbsp;
</dd>
2011-11-13 18:40:06 -08:00
</dl>
</div>
2009-04-23 18:21:22 -07:00
<div class="actions">
<ul>
<li><?php echo $html->link(__('Edit Product', true), array('action'=>'edit', $product['Product']['id'])); ?> </li>
<li><?php echo $html->link(__('Add Costing', true), array('controller'=>'costings', 'action'=>'add/productid:'.$product['Product']['id']));?></li>
2010-05-30 22:54:44 -07:00
<button id="addCostingDialog">Add Costing</button>
</ul>
</div>
<div id="costingdiv"></div>