diff --git a/views/addresses/add.ctp b/views/addresses/add.ctp index aee252a6..059f4104 100755 --- a/views/addresses/add.ctp +++ b/views/addresses/add.ctp @@ -3,7 +3,7 @@
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'); diff --git a/views/customers/add.ctp b/views/customers/add.ctp index b0a6f8d7..072cd140 100755 --- a/views/customers/add.ctp +++ b/views/customers/add.ctp @@ -5,6 +5,8 @@ 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 '
You will be able to add Contacts and Addresses to this Customer after it has been created'; + /* echo '
Add a Contact to this new Customer'; 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'); ?> + +
-end('Submit');?> +