mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-24 17:27:55 -05:00
81 lines
2.6 KiB
PHP
81 lines
2.6 KiB
PHP
<div id="required_fields_message"><?php echo $this->lang->line('common_fields_required_message'); ?></div>
|
|
|
|
<ul id="error_message_box" class="error_message_box"></ul>
|
|
|
|
<?php echo form_open('suppliers/save/'.$person_info->person_id, array('id'=>'supplier_form', 'class'=>'form-horizontal')); ?>
|
|
<fieldset id="supplier_basic_info">
|
|
<div class="form-group form-group-sm">
|
|
<?php echo form_label($this->lang->line('suppliers_company_name'), 'company_name', array('class'=>'required control-label col-xs-3')); ?>
|
|
<div class='col-xs-8'>
|
|
<?php echo form_input(array(
|
|
'name'=>'company_name',
|
|
'id'=>'company_name_input',
|
|
'class'=>'form-control input-sm',
|
|
'value'=>$person_info->company_name)
|
|
);?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-group-sm">
|
|
<?php echo form_label($this->lang->line('suppliers_agency_name'), 'agency_name', array('class'=>'control-label col-xs-3')); ?>
|
|
<div class='col-xs-8'>
|
|
<?php echo form_input(array(
|
|
'name'=>'agency_name',
|
|
'id'=>'agency_name_input',
|
|
'class'=>'form-control input-sm',
|
|
'value'=>$person_info->agency_name)
|
|
);?>
|
|
</div>
|
|
</div>
|
|
|
|
<?php $this->load->view("people/form_basic_info"); ?>
|
|
|
|
<div class="form-group form-group-sm">
|
|
<?php echo form_label($this->lang->line('suppliers_account_number'), 'account_number', array('class'=>'control-label col-xs-3')); ?>
|
|
<div class='col-xs-8'>
|
|
<?php echo form_input(array(
|
|
'name'=>'account_number',
|
|
'id'=>'account_number',
|
|
'class'=>'form-control input-sm',
|
|
'value'=>$person_info->account_number)
|
|
);?>
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
<?php echo form_close(); ?>
|
|
|
|
<script type="text/javascript">
|
|
//validation and submit handling
|
|
$(document).ready(function()
|
|
{
|
|
$('#supplier_form').validate($.extend({
|
|
submitHandler:function(form)
|
|
{
|
|
$(form).ajaxSubmit({
|
|
success:function(response)
|
|
{
|
|
dialog_support.hide();
|
|
table_support.handle_submit('<?php echo site_url('suppliers'); ?>', response);
|
|
},
|
|
dataType:'json'
|
|
});
|
|
|
|
},
|
|
rules:
|
|
{
|
|
company_name: "required",
|
|
first_name: "required",
|
|
last_name: "required",
|
|
email: "email"
|
|
},
|
|
messages:
|
|
{
|
|
company_name: "<?php echo $this->lang->line('suppliers_company_name_required'); ?>",
|
|
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'); ?>"
|
|
}
|
|
}, form_support.error));
|
|
});
|
|
|
|
</script>
|