mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-25 01:37:59 -05:00
141 lines
4.0 KiB
PHP
141 lines
4.0 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('giftcards/save/'.$giftcard_id, array('id'=>'giftcard_form', 'class'=>'form-horizontal')); ?>
|
|
<fieldset id="giftcard_basic_info">
|
|
<div class="form-group form-group-sm">
|
|
<?php echo form_label($this->lang->line('giftcards_person_id'), 'name', array('class'=>'control-label col-xs-3')); ?>
|
|
<div class='col-xs-8'>
|
|
<?php echo form_input(array(
|
|
'name'=>'person_name',
|
|
'id'=>'person_name',
|
|
'class'=>'form-control input-sm',
|
|
'value'=>$selected_person_name)
|
|
);?>
|
|
<?php echo form_hidden('person_id', $selected_person_id);?>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
$class = '';
|
|
if($this->config->item('giftcard_number') == 'series')
|
|
{
|
|
$class = ' required';
|
|
}
|
|
?>
|
|
<div class="form-group form-group-sm">
|
|
<?php echo form_label($this->lang->line('giftcards_giftcard_number'), 'name', array('class'=>'control-label col-xs-3'.$class)); ?>
|
|
<div class='col-xs-4'>
|
|
<?php echo form_input(array(
|
|
'name'=>'giftcard_number',
|
|
'id'=>'giftcard_number',
|
|
'class'=>'form-control input-sm',
|
|
'value'=>$giftcard_number)
|
|
);?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-group-sm">
|
|
<?php echo form_label($this->lang->line('giftcards_card_value'), 'name', array('class'=>'required control-label col-xs-3')); ?>
|
|
<div class='col-xs-4'>
|
|
<div class="input-group input-group-sm">
|
|
<?php if (!currency_side()): ?>
|
|
<span class="input-group-addon input-sm"><b><?php echo $this->config->item('currency_symbol'); ?></b></span>
|
|
<?php endif; ?>
|
|
<?php echo form_input(array(
|
|
'name'=>'value',
|
|
'id'=>'value',
|
|
'class'=>'form-control input-sm',
|
|
'value'=>to_currency_no_money($giftcard_value))
|
|
);?>
|
|
<?php if (currency_side()): ?>
|
|
<span class="input-group-addon input-sm"><b><?php echo $this->config->item('currency_symbol'); ?></b></span>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
<?php echo form_close(); ?>
|
|
|
|
<script type="text/javascript">
|
|
//validation and submit handling
|
|
$(document).ready(function()
|
|
{
|
|
$("input[name='person_name']").change(function() {
|
|
if( ! $("input[name='person_name']").val() ) {
|
|
$("input[name='person_id']").val('');
|
|
}
|
|
});
|
|
|
|
var fill_value = function(event, ui) {
|
|
event.preventDefault();
|
|
$("input[name='person_id']").val(ui.item.value);
|
|
$("input[name='person_name']").val(ui.item.label);
|
|
};
|
|
|
|
var autocompleter = $("#person_name").autocomplete({
|
|
source: '<?php echo site_url("customers/suggest"); ?>',
|
|
minChars: 0,
|
|
delay: 15,
|
|
cacheLength: 1,
|
|
appendTo: '.modal-content',
|
|
select: fill_value,
|
|
focus: fill_value
|
|
});
|
|
|
|
// declare submitHandler as an object.. will be reused
|
|
var submit_form = function() {
|
|
$(this).ajaxSubmit({
|
|
success: function(response)
|
|
{
|
|
dialog_support.hide();
|
|
table_support.handle_submit('<?php echo site_url($controller_name); ?>', response);
|
|
},
|
|
error: function(jqXHR, textStatus, errorThrown)
|
|
{
|
|
table_support.handle_submit('<?php echo site_url($controller_name); ?>', {message: errorThrown});
|
|
},
|
|
dataType:'json'
|
|
});
|
|
};
|
|
|
|
$('#giftcard_form').validate($.extend({
|
|
submitHandler:function(form)
|
|
{
|
|
submit_form.call(form)
|
|
},
|
|
rules:
|
|
{
|
|
<?php if($this->config->item('giftcard_number') == "series"){ ?>
|
|
giftcard_number:
|
|
{
|
|
required:true,
|
|
number:true
|
|
},
|
|
<?php } ?>
|
|
value:
|
|
{
|
|
required:true,
|
|
number:true
|
|
}
|
|
},
|
|
messages:
|
|
{
|
|
<?php if($this->config->item('giftcard_number') == "series"){ ?>
|
|
giftcard_number:
|
|
{
|
|
required:"<?php echo $this->lang->line('giftcards_number_required'); ?>",
|
|
number:"<?php echo $this->lang->line('giftcards_number'); ?>"
|
|
},
|
|
<?php } ?>
|
|
value:
|
|
{
|
|
required:"<?php echo $this->lang->line('giftcards_value_required'); ?>",
|
|
number:"<?php echo $this->lang->line('giftcards_value'); ?>"
|
|
}
|
|
}
|
|
}, form_support.error));
|
|
});
|
|
</script>
|