Files
opensourcepos/application/views/giftcards/form.php
2018-07-05 18:09:42 +02:00

159 lines
4.3 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'), 'person_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'), 'giftcard_number', 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'), 'giftcard_amount', 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"><?php echo $this->config->item('currency_symbol'); ?></span>
<?php endif; ?>
<?php echo form_input(array(
'name'=>'giftcard_amount',
'id'=>'giftcard_amount',
'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'); ?></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() {
!$(this).val() && $(this).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);
};
$('#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
});
$('#giftcard_form').validate($.extend({
submitHandler: function(form) {
$(form).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'
});
},
errorLabelContainer: '#error_message_box',
rules:
{
<?php
if($this->config->item('giftcard_number') == 'series')
{
?>
giftcard_number:
{
required: true,
number: true
},
<?php
}
?>
giftcard_amount:
{
required: true,
remote:
{
url: "<?php echo site_url($controller_name . '/ajax_check_number_giftcard')?>",
type: 'POST',
data: {
'amount': $('#giftcard_amount').val()
},
dataFilter: function(data) {
var response = JSON.parse(data);
$('#giftcard_amount').val(response.giftcard_amount);
return response.success;
}
}
}
},
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
}
?>
giftcard_amount:
{
required: "<?php echo $this->lang->line('giftcards_value_required'); ?>",
remote: "<?php echo $this->lang->line('giftcards_value'); ?>"
}
}
}, form_support.error));
});
</script>