mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-03 15:07:53 -05:00
239 lines
7.7 KiB
PHP
239 lines
7.7 KiB
PHP
<div id="required_fields_message"><?php echo $this->lang->line('items_edit_fields_you_want_to_update'); ?></div>
|
|
|
|
<ul id="error_message_box" class="error_message_box"></ul>
|
|
|
|
<?php echo form_open('items/bulk_update/', array('id'=>'item_form', 'class'=>'form-horizontal')); ?>
|
|
<fieldset id="bulk_item_basic_info">
|
|
<div class="form-group form-group-sm">
|
|
<?php echo form_label($this->lang->line('items_name'), 'name', array('class'=>'control-label col-xs-3')); ?>
|
|
<div class='col-xs-8'>
|
|
<?php echo form_input(array(
|
|
'name'=>'name',
|
|
'id'=>'name',
|
|
'class'=>'form-control input-sm')
|
|
);?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-group-sm">
|
|
<?php echo form_label($this->lang->line('items_category'), 'category', array('class'=>'control-label col-xs-3')); ?>
|
|
<div class='col-xs-8'>
|
|
<div class="input-group">
|
|
<span class="input-group-addon input-sm"><span class="glyphicon glyphicon-tag"></span></span>
|
|
<?php echo form_input(array(
|
|
'name'=>'category',
|
|
'id'=>'category',
|
|
'class'=>'form-control input-sm')
|
|
);?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-group-sm">
|
|
<?php echo form_label($this->lang->line('items_supplier'), 'supplier', array('class'=>'control-label col-xs-3')); ?>
|
|
<div class='col-xs-8'>
|
|
<?php echo form_dropdown('supplier_id', $suppliers, '', array('class'=>'form-control'));?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-group-sm">
|
|
<?php echo form_label($this->lang->line('items_cost_price'), 'cost_price', array('class'=>'control-label col-xs-3')); ?>
|
|
<div class='col-xs-4'>
|
|
<div class="input-group input-group-sm">
|
|
<?php if (!$this->config->item('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'=>'cost_price',
|
|
'id'=>'cost_price',
|
|
'class'=>'form-control input-sm')
|
|
);?>
|
|
<?php if ($this->config->item('currency_side')): ?>
|
|
<span class="input-group-addon input-sm"><b><?php echo $this->config->item('currency_symbol'); ?></b></span>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-group">
|
|
<?php echo form_label($this->lang->line('items_unit_price'), 'unit_price', array('class'=>'control-label col-xs-3')); ?>
|
|
<div class='col-xs-4'>
|
|
<div class="input-group input-group-sm">
|
|
<?php if (!$this->config->item('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'=>'unit_price',
|
|
'id'=>'unit_price',
|
|
'class'=>'form-control input-sm')
|
|
);?>
|
|
<?php if ($this->config->item('currency_side')): ?>
|
|
<span class="input-group-addon input-sm"><b><?php echo $this->config->item('currency_symbol'); ?></b></span>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-group-sm">
|
|
<?php echo form_label($this->lang->line('items_tax_1'), 'tax_percent_1', array('class'=>'control-label col-xs-3')); ?>
|
|
<div class='col-xs-4'>
|
|
<?php echo form_input(array(
|
|
'name'=>'tax_names[]',
|
|
'id'=>'tax_name_1',
|
|
'class'=>'form-control input-sm',
|
|
'value'=>$this->config->item('default_tax_1_name'))
|
|
);?>
|
|
</div>
|
|
<div class="col-xs-4">
|
|
<div class="input-group input-group-sm">
|
|
<?php echo form_input(array(
|
|
'name'=>'tax_percents[]',
|
|
'id'=>'tax_percent_name_1',
|
|
'class'=>'form-control input-sm',
|
|
'value'=>to_tax_decimals($this->config->item('default_tax_1_rate')))
|
|
);?>
|
|
<span class="input-group input-group-addon"><b>%</b></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-group-sm">
|
|
<?php echo form_label($this->lang->line('items_tax_2'), 'tax_percent_2', array('class'=>'control-label col-xs-3')); ?>
|
|
<div class='col-xs-4'>
|
|
<?php echo form_input(array(
|
|
'name'=>'tax_names[]',
|
|
'id'=>'tax_name_2',
|
|
'class'=>'form-control input-sm',
|
|
'value'=>$this->config->item('default_tax_2_name'))
|
|
);?>
|
|
</div>
|
|
<div class="col-xs-4">
|
|
<div class="input-group input-group-sm">
|
|
<?php echo form_input(array(
|
|
'name'=>'tax_percents[]',
|
|
'id'=>'tax_percent_name_2',
|
|
'class'=>'form-control input-sm',
|
|
'value'=>to_tax_decimals($this->config->item('default_tax_2_rate')))
|
|
);?>
|
|
<span class="input-group input-group-addon"><b>%</b></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-group-sm">
|
|
<?php echo form_label($this->lang->line('items_reorder_level'), 'reorder_level', array('class'=>'control-label col-xs-3')); ?>
|
|
<div class='col-xs-4'>
|
|
<?php echo form_input(array(
|
|
'name'=>'reorder_level',
|
|
'id'=>'reorder_level',
|
|
'class'=>'form-control input-sm')
|
|
);?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-group-sm">
|
|
<?php echo form_label($this->lang->line('items_description'), 'description', array('class'=>'control-label col-xs-3')); ?>
|
|
<div class='col-xs-8'>
|
|
<?php echo form_textarea(array(
|
|
'name'=>'description',
|
|
'id'=>'description',
|
|
'class'=>'form-control input-sm')
|
|
);?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-group-sm">
|
|
<?php echo form_label($this->lang->line('items_allow_alt_description'), 'allow_alt_description', array('class'=>'control-label col-xs-3')); ?>
|
|
<div class='col-xs-8'>
|
|
<?php echo form_dropdown('allow_alt_description', $allow_alt_description_choices, '', array('class'=>'form-control'));?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-group-sm">
|
|
<?php echo form_label($this->lang->line('items_is_serialized'), 'is_serialized', array('class'=>'control-label col-xs-3')); ?>
|
|
<div class='col-xs-8'>
|
|
<?php echo form_dropdown('is_serialized', $serialization_choices, '', array('class'=>'form-control'));?>
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
<?php echo form_close(); ?>
|
|
|
|
<script type='text/javascript'>
|
|
//validation and submit handling
|
|
$(document).ready(function()
|
|
{
|
|
$("#category").autocomplete({source: "<?php echo site_url('items/suggest_category');?>",appendTo:'.modal-content',delay:10});
|
|
|
|
var confirm_message = false;
|
|
$("#tax_percent_name_2, #tax_name_2").prop('disabled', true),
|
|
$("#tax_percent_name_1, #tax_name_1").blur(function() {
|
|
var disabled = !($("#tax_percent_name_1").val() + $("#tax_name_1").val());
|
|
$("#tax_percent_name_2, #tax_name_2").prop('disabled', disabled);
|
|
confirm_message = disabled ? "" : "<?php echo $this->lang->line('items_confirm_bulk_edit_wipe_taxes') ?>";
|
|
});
|
|
|
|
$('#item_form').validate($.extend({
|
|
submitHandler:function(form)
|
|
{
|
|
if(!confirm_message || confirm(confirm_message))
|
|
{
|
|
//Get the selected ids and create hidden fields to send with ajax submit.
|
|
var selected_item_ids=get_selected_values();
|
|
for(k=0;k<selected_item_ids.length;k++)
|
|
{
|
|
$(form).append("<input type='hidden' name='item_ids[]' value='"+selected_item_ids[k]+"' />");
|
|
}
|
|
|
|
$(form).ajaxSubmit({
|
|
success:function(response)
|
|
{
|
|
dialog_support.hide();
|
|
post_bulk_form_submit(response);
|
|
},
|
|
dataType:'json'
|
|
});
|
|
}
|
|
},
|
|
rules:
|
|
{
|
|
unit_price:
|
|
{
|
|
number:true
|
|
},
|
|
tax_percent:
|
|
{
|
|
number:true
|
|
},
|
|
quantity:
|
|
{
|
|
number:true
|
|
},
|
|
reorder_level:
|
|
{
|
|
number:true
|
|
}
|
|
},
|
|
messages:
|
|
{
|
|
unit_price:
|
|
{
|
|
number:"<?php echo $this->lang->line('items_unit_price_number'); ?>"
|
|
},
|
|
tax_percent:
|
|
{
|
|
number:"<?php echo $this->lang->line('items_tax_percent_number'); ?>"
|
|
},
|
|
quantity:
|
|
{
|
|
number:"<?php echo $this->lang->line('items_quantity_number'); ?>"
|
|
},
|
|
reorder_level:
|
|
{
|
|
number:"<?php echo $this->lang->line('items_reorder_level_number'); ?>"
|
|
}
|
|
|
|
}
|
|
}, dialog_support.error));
|
|
});
|
|
</script>
|