mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-28 19:21:05 -05:00
Tom git-svn-id: svn+ssh://jekkos@svn.code.sf.net/p/opensourcepos/code/@24 c3eb156b-1dc0-44e1-88ae-e38439141b53
73 lines
1.9 KiB
PHP
73 lines
1.9 KiB
PHP
<?php
|
|
echo form_open('customers/save/'.$person_info->person_id,array('id'=>'customer_form'));
|
|
?>
|
|
<div id="required_fields_message"><?php echo $this->lang->line('common_fields_required_message'); ?></div>
|
|
<ul id="error_message_box"></ul>
|
|
<fieldset id="customer_basic_info">
|
|
<legend><?php echo $this->lang->line("customers_basic_information"); ?></legend>
|
|
<?php $this->load->view("people/form_basic_info"); ?>
|
|
<div class="field_row clearfix">
|
|
<?php echo form_label($this->lang->line('customers_account_number').':', 'account_number'); ?>
|
|
<div class='form_field'>
|
|
<?php echo form_input(array(
|
|
'name'=>'account_number',
|
|
'id'=>'account_number',
|
|
'value'=>$person_info->account_number)
|
|
);?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="field_row clearfix">
|
|
<?php echo form_label($this->lang->line('customers_taxable').':', 'taxable'); ?>
|
|
<div class='form_field'>
|
|
<?php echo form_checkbox('taxable', '1', $person_info->taxable == '' ? TRUE : (boolean)$person_info->taxable);?>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
echo form_submit(array(
|
|
'name'=>'submit',
|
|
'id'=>'submit',
|
|
'value'=>$this->lang->line('common_submit'),
|
|
'class'=>'submit_button float_right')
|
|
);
|
|
?>
|
|
</fieldset>
|
|
<?php
|
|
echo form_close();
|
|
?>
|
|
<script type='text/javascript'>
|
|
|
|
//validation and submit handling
|
|
$(document).ready(function()
|
|
{
|
|
$('#customer_form').validate({
|
|
submitHandler:function(form)
|
|
{
|
|
$(form).ajaxSubmit({
|
|
success:function(response)
|
|
{
|
|
tb_remove();
|
|
post_person_form_submit(response);
|
|
},
|
|
dataType:'json'
|
|
});
|
|
|
|
},
|
|
errorLabelContainer: "#error_message_box",
|
|
wrapper: "li",
|
|
rules:
|
|
{
|
|
first_name: "required",
|
|
last_name: "required",
|
|
email: "email"
|
|
},
|
|
messages:
|
|
{
|
|
first_name: "<?php echo $this->lang->line('common_first_name_required'); ?>",
|
|
last_name: "<?php echo $this->lang->line('common_last_name_required'); ?>",
|
|
email: "<?php echo $this->lang->line('common_email_invalid_format'); ?>"
|
|
}
|
|
});
|
|
});
|
|
</script>
|