56 lines
1.7 KiB
PHP
Executable file
56 lines
1.7 KiB
PHP
Executable file
<?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'])); ?>
|
|
|
|
</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']; ?>
|
|
|
|
</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']; ?>
|
|
|
|
</dd>
|
|
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Item Code'); ?></dt>
|
|
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
|
|
<?php echo $product['Product']['item_code']; ?>
|
|
|
|
</dd>
|
|
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Item Decription'); ?></dt>
|
|
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
|
|
<?php echo $product['Product']['item_description']; ?>
|
|
|
|
</dd>
|
|
|
|
</dl>
|
|
</div>
|
|
|
|
<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>
|
|
|
|
<button id="addCostingDialog">Add Costing</button>
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="costingdiv"></div>
|
|
|
|
|
|
|
|
|