Final Commit Prior to Beta Launch

This commit is contained in:
Karl Cordes 2009-01-19 14:33:22 +11:00
parent ab06eb6628
commit 7ab42fa730
3 changed files with 9 additions and 2 deletions

View file

@ -3,7 +3,7 @@
<fieldset>
<legend><?php __('Add Address to Customer: '.$customer['Customer']['name']);?></legend>
<?php
echo $form->input('name', array('label' => 'Name', 'title' => 'A short name for the Address. Eg. \'Head Quarters\' or \'Manufacturing Plant\' '));
echo $form->input('address', array('label' => 'Address', 'title' => 'The Address to be added'));
echo $form->input('city', array('label' => 'City', 'title' => 'Name of the City/Suburb for this Address'));
echo $form->input('state_id');

View file

@ -5,6 +5,8 @@
<?php
echo $form->input('name', array('label'=>'Company Name', 'title' => 'The Company Name. Eg. XYZ Business Pty Ltd'));
echo $form->input('abn', array('label'=>'ABN', 'title' => 'The 11-digit Australian Business Number for the new Customer. Enter numbers only, no dashes or punctuation'));
echo '<br><span>You will be able to add Contacts and Addresses to this Customer after it has been created</span>';
/*
echo '<br><span>Add a Contact to this new Customer</span>';
echo $form->input('Contact.0.first_name');
echo $form->input('Contact.0.last_name');
@ -19,9 +21,13 @@
echo $form->input('Address.0.state_id');
echo $form->input('Address.0.country_id');
echo $form->input('Address.0.type', array('label' => 'Address Type (Billing,Shipping or Both)', 'options' => array('Billing','Shipping', 'Both Shipping and Billing')));
*/
echo $form->end('Submit');
?>
</fieldset>
<?php echo $form->end('Submit');?>
</div>
<div class="actions">
<ul>

View file

@ -4,6 +4,7 @@
<legend><?php __('Edit Quote');?></legend>
<?php
echo $form->input('id');
echo $form->input('date_issued');
echo $form->input('enquiry_id');
echo $form->input('revision');
echo $form->input('first_page');