33 lines
895 B
PHP
Executable file
33 lines
895 B
PHP
Executable file
<?
|
|
echo $javascript->link('ckeditor/ckeditor');
|
|
echo $javascript->link('ckeditor/adapters/jquery');
|
|
echo $javascript->link('edit_product');
|
|
?>
|
|
|
|
<div class="products form">
|
|
<?php echo $form->create('Product');?>
|
|
<fieldset>
|
|
<legend><?php __('Edit Product');?></legend>
|
|
<?php
|
|
echo $form->input('id');
|
|
echo $form->input('principle_id');
|
|
echo $form->input('title');
|
|
|
|
echo $form->input('description');
|
|
|
|
|
|
echo $form->input('model_number');
|
|
echo $form->input('model_number_format');
|
|
echo $form->input('cost_price_each');
|
|
echo $form->input('our_discount');
|
|
echo $form->input('packing_each');
|
|
echo $form->input('shipping_weight_each');
|
|
echo $form->input('shipping_cost_each');
|
|
echo $form->input('duty');
|
|
echo $form->input('sellprice_each');
|
|
echo $form->input('notes');
|
|
?>
|
|
</fieldset>
|
|
<?php echo $form->end(array('label' => 'Edit Product', 'class'=>'wymupdate'));?>
|
|
</div>
|