731 lines
34 KiB
PHP
731 lines
34 KiB
PHP
<?php include('techsyn_header.php'); ?>
|
|
<!-- Main Content Container for side bar and body-->
|
|
<div class="main-container ace-save-state" id="main-container">
|
|
<script type="text/javascript">
|
|
try {
|
|
ace.settings.loadState('main-container')
|
|
} catch (e) {}
|
|
</script>
|
|
<?php include('techsyn_sidebar.php'); ?>
|
|
<!--breadcrumb-->
|
|
<div class="main-content">
|
|
<div class="main-content-inner">
|
|
<div class="breadcrumbs ace-save-state" id="breadcrumbs">
|
|
<ul class="breadcrumb">
|
|
<li class="#">Item Indent</li>
|
|
<li class="active">Add Indent Item</li>
|
|
</ul>
|
|
</div>
|
|
<!-- End of breadcrumb -->
|
|
<?php
|
|
$i = 0;
|
|
if (isset($_REQUEST['flex_procurement_id'])) {
|
|
$sql = "select procurement.procurement_id, procurement.procurement_refno,procurement.procurement_date,procurement.remarks from procurement where procurement.procurement_id='" . $_REQUEST['flex_procurement_id'] . "' and ohc_type_id = '" . $_SESSION['current_ohcttype'] . "' ";
|
|
//echo "query:".$sql;
|
|
$result = mysqli_query($conn, $sql);
|
|
$num_rows = @mysqli_num_rows($result);
|
|
$row = null;
|
|
if ($num_rows > 0) {
|
|
$row = @mysqli_fetch_array($result);
|
|
}
|
|
}
|
|
?>
|
|
|
|
<div class="page-content">
|
|
|
|
<div class="box box-primary" style="width: 99.5%;">
|
|
|
|
|
|
<style>
|
|
.loader {
|
|
border: 16px solid #f3f3f3;
|
|
/* Light grey */
|
|
border-top: 16px solid #3498db;
|
|
/* Blue */
|
|
border-radius: 50%;
|
|
width: 120px;
|
|
height: 120px;
|
|
animation: spin 2s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
</style>
|
|
<form id="indent_procurement_form" method="post">
|
|
<!-- box-body-->
|
|
<div class="box-body">
|
|
<div class="row" style="margin-left: 50px; margin-right: 50px">
|
|
<div class="col-sm-3">
|
|
<div class="form-group">
|
|
<label>PROCUREMENT DATE</label>
|
|
<div class="input-group date">
|
|
<div class="input-group-addon">
|
|
<i class="fa fa-calendar"></i>
|
|
</div>
|
|
<input class="form-control date-picker"
|
|
value="<?php echo date_format(date_create($row['procurement_date']), "d/m/Y") ?>"
|
|
name="procurement_date" id="procurement_date" type="text"
|
|
data-date-format="dd/mm/yyyy" />
|
|
</div>
|
|
<!-- /.input group -->
|
|
</div>
|
|
</div>
|
|
<div class="form-group col-sm-3">
|
|
<label>Procurement Ref No</label>
|
|
<input class="form-control" type="text" name="ref_no" id="ref_no"
|
|
value='<?php echo $row['procurement_refno'] ?>' />
|
|
<!-- <input type="hidden" name="flex_procurement_id" id="flex_procurement_id" value="<?php echo $procurement_id ?>"> -->
|
|
<input type="hidden" name="procurement_id" id="procurement_id"
|
|
value="<?php echo $_REQUEST['flex_procurement_id'] ?>">
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<div class="form-group">
|
|
<label>Procurement Remarks</label>
|
|
<textarea name="remarks" id="remarks" rows="3"
|
|
class="autosize-transition form-control"
|
|
style="overflow: hidden; overflow-wrap: break-word; resize: horizontal; height: 52px;"><?php echo $row['remarks'] ?></textarea>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<input type="hidden" id="ohc_loc" name="ohc_loc">
|
|
<div class="row" style="margin-left:50px; margin-right: 50px">
|
|
<div class="col-sm-6">
|
|
<div class="form-group">
|
|
<input type="hidden" name="ind_id" id="ind_id" value="" />
|
|
<input type="hidden" name="ind_item_grn_no" id="ind_item_grn_no" value="" />
|
|
<label>Select Indent</label> <select class="form-control select2" id="indent_id"
|
|
name="indent_id" data-placeholder="select Indent" style="width: 100%;"
|
|
onchange="getRequisitionItem(this.value)">
|
|
<option value=""></option>
|
|
<?php
|
|
// $sql_pending_req = "select distinct(a.item_grn_no),a.indent_id,a.*,b.* from grn_items a left join indent_master b on a.indent_id=b.indent_id where a.status='GRN_APPROVED' and a.indent_id in (select indent_id from grn_master where status!='COMPLETED') group by a.item_grn_no";
|
|
$sql_pending_req = "select a.*,b.* from indent_master a left join indent_items b on a.indent_id = b.indent_id where a.status='APPROVED' and a.ohc_type_id = '" . $_SESSION['current_ohcttype']. "'";
|
|
$result_pending_req = @mysqli_query($conn, $sql_pending_req);
|
|
$temp = "";
|
|
|
|
while ($row_pending_req = @mysqli_fetch_assoc($result_pending_req)) {
|
|
error_log("indent query" .$sql_pending_req);
|
|
error_log("indent get data ".print_r($row_pending_req,true));
|
|
// if ($temp == $row_pending_req['indent_id']) {
|
|
// continue;
|
|
// }
|
|
?>
|
|
|
|
|
|
<option
|
|
value="<?php echo $row_pending_req['indent_id']; ?>">
|
|
|
|
<?php echo $row_pending_req['indent_ref_no']. ' (' . $row_pending_req['indent_date'] . ')' ; ?>
|
|
</option>
|
|
<?php
|
|
// $temp = $row_pending_req['indent_id'];
|
|
}
|
|
?>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="loader row" style="display:none" id="loader"></div>
|
|
<div class="row" style="margin-left: 50px; margin-right: 50px">
|
|
<div class="col-sm-12">
|
|
<table id="myTable" class="table table-bordered order-list">
|
|
<thead>
|
|
<tr>
|
|
<th>Item</th>
|
|
<th>Indent Qty</th>
|
|
<th>Unit</th>
|
|
<th>Batch No</th>
|
|
<th>Net Value</th>
|
|
<th>Expiry Date</th>
|
|
<th>Item Remark</th>
|
|
<th>Delete</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id='table_body_a'>
|
|
<div class="my_body" id="my_body">
|
|
<tr>
|
|
<td style="width: 30%"><select class="form-control select2"
|
|
id="item_id0" name="item_id0"
|
|
data-placeholder="Choose a item..." style="width: 100%;"
|
|
onchange="getUnitForChildItem('child_item_unit',this.value,'0')">
|
|
</select></td>
|
|
<td style="width: 10%"><input type="number" name="item_qty0"
|
|
id="item_qty0" />
|
|
</td>
|
|
<td style="width: 8%">
|
|
<div id="child_item_unit0"></div>
|
|
</td>
|
|
<td style="width: 10%"><input type="text" name="batch0" id="batch0"
|
|
class="form-control">
|
|
</td>
|
|
<td style="width: 10%"><input type="number" name="net_value0"
|
|
id="net_value0" onchange="" class="form-control" /></td>
|
|
|
|
<td style="width:10%">
|
|
<input class="form-control" name="expiry_date0"
|
|
id="expiry_date0" type="date" />
|
|
|
|
|
|
</td>
|
|
<td style="width:30%">
|
|
<input type="text" name="remarks0" id="remarks0"
|
|
class="form-control" class="form-control" />
|
|
|
|
</td>
|
|
|
|
<td style="width: 10%"></td>
|
|
</tr>
|
|
|
|
</div>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr style="margin-left: 10px;">
|
|
<td colspan="8" style="text-align: left;"><input type="button"
|
|
class="btn btn-lg btn-block " id="addrow" value="Add Row" />
|
|
<input type="hidden" name="count_items" id="count_items"
|
|
value="1" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- End box-body-->
|
|
<!--box-footer-->
|
|
<div class="box-footer" style="text-align: center">
|
|
<button class="btn btn-info save_button" type="button" onclick="validate();">
|
|
<i class="ace-icon fa fa-floppy-o bigger-110"></i> Save
|
|
</button>
|
|
|
|
<button class="btn btn-warning" type="reset">
|
|
<i class="ace-icon fa fa-undo bigger-110"></i> Reset
|
|
</button>
|
|
</div>
|
|
<!--End box-footer-->
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<!-- End of page-content -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
function validate() {
|
|
var ref_no = $('#ref_no').val();
|
|
|
|
if (ref_no == '' || ref_no == null) {
|
|
BootstrapDialog.alert('PLEASE ENERT PROC. REF. NO. !');
|
|
|
|
} else {
|
|
save();
|
|
}
|
|
}
|
|
</script>
|
|
<style>
|
|
#modal-add-ailment {
|
|
overflow-y: scroll;
|
|
}
|
|
</style>
|
|
<?php include('techsyn_footer.php'); ?>
|
|
<script type="text/javascript">
|
|
jQuery(function($) {
|
|
var myTable =
|
|
$('#dynamic-table')
|
|
.DataTable({
|
|
bAutoWidth: false,
|
|
"aoColumns": [{
|
|
"bSortable": false
|
|
},
|
|
null, null, null, null, null,
|
|
{
|
|
"bSortable": false
|
|
}
|
|
],
|
|
"aaSorting": [],
|
|
select: {
|
|
style: 'multi'
|
|
}
|
|
});
|
|
var defaultCopyAction = myTable.button(1).action();
|
|
myTable.button(1).action(function(e, dt, button, config) {
|
|
defaultCopyAction(e, dt, button, config);
|
|
$('.dt-button-info').addClass('gritter-item-wrapper gritter-info gritter-center white');
|
|
});
|
|
var defaultColvisAction = myTable.button(0).action();
|
|
myTable.button(0).action(function(e, dt, button, config) {
|
|
defaultColvisAction(e, dt, button, config);
|
|
if ($('.dt-button-collection > .dropdown-menu').length == 0) {
|
|
$('.dt-button-collection')
|
|
.wrapInner('<ul class="dropdown-menu dropdown-light dropdown-caret dropdown-caret" />')
|
|
.find('a').attr('href', '#').wrap("<li />")
|
|
}
|
|
$('.dt-button-collection').appendTo('.tableTools-container .dt-buttons')
|
|
});
|
|
setTimeout(function() {
|
|
$($('.tableTools-container')).find('a.dt-button').each(function() {
|
|
var div = $(this).find(' > div').first();
|
|
if (div.length == 1) div.tooltip({
|
|
container: 'body',
|
|
title: div.parent().text()
|
|
});
|
|
else $(this).tooltip({
|
|
container: 'body',
|
|
title: $(this).text()
|
|
});
|
|
});
|
|
}, 500);
|
|
myTable.on('select', function(e, dt, type, index) {
|
|
if (type === 'row') {
|
|
$(myTable.row(index).node()).find('input:checkbox').prop('checked', true);
|
|
}
|
|
});
|
|
myTable.on('deselect', function(e, dt, type, index) {
|
|
if (type === 'row') {
|
|
$(myTable.row(index).node()).find('input:checkbox').prop('checked', false);
|
|
}
|
|
});
|
|
$('th input[type=checkbox], td input[type=checkbox]').prop('checked', false);
|
|
$('#dynamic-table > thead > tr > th input[type=checkbox], #dynamic-table_wrapper input[type=checkbox]').eq(
|
|
0).on('click', function() {
|
|
var th_checked = this.checked;
|
|
$('#dynamic-table').find('tbody > tr').each(function() {
|
|
var row = this;
|
|
if (th_checked) myTable.row(row).select();
|
|
else myTable.row(row).deselect();
|
|
});
|
|
});
|
|
$('#dynamic-table').on('click', 'td input[type=checkbox]', function() {
|
|
var row = $(this).closest('tr').get(0);
|
|
if (this.checked) myTable.row(row).deselect();
|
|
else myTable.row(row).select();
|
|
});
|
|
$(document).on('click', '#dynamic-table .dropdown-toggle', function(e) {
|
|
e.stopImmediatePropagation();
|
|
e.stopPropagation();
|
|
e.preventDefault();
|
|
});
|
|
var active_class = 'active';
|
|
$('#simple-table > thead > tr > th input[type=checkbox]').eq(0).on('click', function() {
|
|
var th_checked = this.checked;
|
|
$(this).closest('table').find('tbody > tr').each(function() {
|
|
var row = this;
|
|
if (th_checked) $(row).addClass(active_class).find('input[type=checkbox]').eq(0)
|
|
.prop('checked', true);
|
|
else $(row).removeClass(active_class).find('input[type=checkbox]').eq(0).prop(
|
|
'checked', false);
|
|
});
|
|
});
|
|
$('#simple-table').on('click', 'td input[type=checkbox]', function() {
|
|
var $row = $(this).closest('tr');
|
|
if ($row.is('.detail-row ')) return;
|
|
if (this.checked) $row.addClass(active_class);
|
|
else $row.removeClass(active_class);
|
|
});
|
|
$('[data-rel="tooltip"]').tooltip({
|
|
placement: tooltip_placement
|
|
});
|
|
|
|
function tooltip_placement(context, source) {
|
|
var $source = $(source);
|
|
var $parent = $source.closest('table')
|
|
var off1 = $parent.offset();
|
|
var w1 = $parent.width();
|
|
var off2 = $source.offset();
|
|
if (parseInt(off2.left) < parseInt(off1.left) + parseInt(w1 / 2)) return 'right';
|
|
return 'left';
|
|
}
|
|
/***************/
|
|
$('.show-details-btn').on('click', function(e) {
|
|
e.preventDefault();
|
|
$(this).closest('tr').next().toggleClass('open');
|
|
$(this).find(ace.vars['.icon']).toggleClass('fa-angle-double-down').toggleClass(
|
|
'fa-angle-double-up');
|
|
});
|
|
/***************/
|
|
})
|
|
|
|
function save() {
|
|
$.ajax({
|
|
url: 'save_procurement.php ',
|
|
type: "POST",
|
|
data: $("#indent_procurement_form").serialize(),
|
|
success: function(data) { //alert(data);
|
|
BootstrapDialog.show({
|
|
title: 'Information',
|
|
message: 'Procurement Saved Successfully..',
|
|
buttons: [{
|
|
label: 'OK',
|
|
action: function(dialog) {
|
|
location.href = "procurement_list.php";
|
|
}
|
|
}]
|
|
});
|
|
|
|
return;
|
|
|
|
|
|
},
|
|
error: function(data) {
|
|
BootstrapDialog.alert('Error Saving Procurement');
|
|
return;
|
|
}
|
|
});
|
|
$('.close').click();
|
|
// location.href="procurement_list.php";
|
|
}
|
|
$('.date-picker').datepicker({
|
|
autoclose: true,
|
|
format: 'dd/mm/yyyy'
|
|
}).next().on(ace.click_event, function() {
|
|
$(this).prev().focus();
|
|
});
|
|
</script>
|
|
<!-- bootstrap & fontawesome -->
|
|
<link rel="stylesheet" href="assets/font-awesome/4.5.0/css/font-awesome.min.css" />
|
|
<!-- page specific plugin styles -->
|
|
<link rel="stylesheet" href="assets/css/jquery-ui.custom.min.css" />
|
|
<link rel="stylesheet" href="assets/css/chosen.min.css" />
|
|
<link rel="stylesheet" href="assets/css/bootstrap-datepicker3.min.css" />
|
|
<link rel="stylesheet" href="assets/css/bootstrap-timepicker.min.css" />
|
|
<link rel="stylesheet" href="assets/css/daterangepicker.min.css" />
|
|
<link rel="stylesheet" href="assets/css/bootstrap-datetimepicker.min.css" />
|
|
<link rel="stylesheet" href="assets/css/bootstrap-colorpicker.min.css" />
|
|
<script type="text/javascript" src="js/typeahead.bundle.js"></script>
|
|
<script src="assets/js/jquery-ui.custom.min.js"></script>
|
|
<script src="assets/js/jquery.ui.touch-punch.min.js"></script>
|
|
<script src="assets/js/chosen.jquery.min.js"></script>
|
|
<script src="assets/js/spinbox.min.js"></script>
|
|
<script src="assets/js/bootstrap-datepicker.min.js"></script>
|
|
<script src="assets/js/bootstrap-timepicker.min.js"></script>
|
|
<script src="assets/js/jquery.dataTables.min.js"></script>
|
|
<script src="assets/js/jquery.dataTables.bootstrap.min.js"></script>
|
|
<script src="assets/js/dataTables.buttons.min.js"></script>
|
|
<script src="assets/js/buttons.flash.min.js"></script>
|
|
<script src="assets/js/buttons.html5.min.js"></script>
|
|
<script src="assets/js/buttons.print.min.js"></script>
|
|
<script src="assets/js/buttons.colVis.min.js"></script>
|
|
<script src="assets/js/dataTables.select.min.js"></script>
|
|
<script src="assets/js/moment.min.js"></script>
|
|
<script src="assets/js/daterangepicker.min.js"></script>
|
|
<script src="assets/js/bootstrap-datetimepicker.min.js"></script>
|
|
<script src="assets/js/bootstrap-colorpicker.min.js"></script>
|
|
<script src="assets/js/jquery.knob.min.js"></script>
|
|
<script src="assets/js/autosize.min.js"></script>
|
|
<script src="assets/js/jquery.inputlimiter.min.js"></script>
|
|
<script src="assets/js/jquery.maskedinput.min.js"></script>
|
|
<script src="assets/js/bootstrap-tag.min.js"></script>
|
|
<script src="assets/js/ace-elements.min.js"></script>
|
|
<script type="text/javascript">
|
|
var requisition_items = "";
|
|
var content = "";
|
|
var item_batch = "";
|
|
var selected_items = [];
|
|
|
|
|
|
function getRequisitionItem(indent_id) {
|
|
$('#my_body').remove();
|
|
$.ajax({
|
|
url: 'get_indent_items.php',
|
|
type: 'POST',
|
|
data: {
|
|
indent_id: indent_id
|
|
},
|
|
dataType: 'json',
|
|
success: function(data) {
|
|
// content+="<option></option>";
|
|
$("#ind_id").val(indent_id);
|
|
counter = $("#count_items").val();
|
|
if (data != null && data != "") {
|
|
var ohc_loc = "";
|
|
requisition_items = data;
|
|
content = '';
|
|
for (var i = 0; i < data.length; i++) {
|
|
content += `
|
|
<div id = "my_body">
|
|
<tr>
|
|
<td style="width:30%">
|
|
<select class="form-control select2" id="item_id` + i + `" name="item_id` + i + `" data-placeholder="Choose a item..." style="width: 100%;">
|
|
<option value='` + data[i].item_id + `'>` + data[i].itemwithformname + `(` + data[i].item_code + `)</option>
|
|
</select>
|
|
</td>
|
|
<td style="width:10%">
|
|
<input type="number" name="item_qty` + i + `" id="item_qty` + i + `" value='` + data[i].indent_qty + `' />
|
|
</td>
|
|
<td style="width:8%"><div id="child_item_unit` + i + `"></div></td>
|
|
<td style="width:10%">
|
|
<input type="text" name="batch` + i + `" id="batch` + i + `" class="form-control" >
|
|
</td>
|
|
<td style="width:10%">
|
|
<input type="number" name="net_value` + i + `" id="net_value` + i + `" class="form-control"/>
|
|
</td>
|
|
<td style="width:10%">
|
|
<input class="form-control" name="expiry_date` + i + `" id="expiry_date` + i + `" type="date" />
|
|
</td>
|
|
<td style="width:30%">
|
|
<input type="text" name="remarks` + i + `" id="remarks` + i + `" class="form-control"/>
|
|
</td>
|
|
<td><a href="#" class="btn-lg" data-toggle="tooltip" id="deletebtn" title="Delete"><span class="glyphicon glyphicon-trash"></span></a></td>
|
|
</tr>
|
|
</div>
|
|
`;
|
|
// setRequisitionQty(data[i].item_id,i);
|
|
// getUnitForChildItem('child_item_unit',data[i].item_id,i)
|
|
$("#item_id" + i).trigger("chosen:updated");
|
|
// content+="<option value='"+data[i].item_id+"'>"+data[i].item_name+"("+data[i].item_code+")</option>"
|
|
ohc_loc = data[i].ohc_location_id;
|
|
//selected_items.push(data[i].item_id);
|
|
counter++;
|
|
// <td style="width:10%"><a href="#" class="btn-lg" data-toggle="tooltip" id="deletebtn" title="Delete"><span class="glyphicon glyphicon-trash"></span></a></td>
|
|
}
|
|
$("#count_items").val(counter - 1);
|
|
|
|
}
|
|
$("#ohc_loc").val(ohc_loc);
|
|
$("#table_body_a").html(content);
|
|
for (var i = 0; i < data.length; i++) {
|
|
getUnitForChildItem('child_item_unit', data[i].item_id, i);
|
|
}
|
|
},
|
|
error: function(data) {
|
|
BootstrapDialog.alert('Error In Fetching Requisition Items');
|
|
}
|
|
});
|
|
}
|
|
|
|
var counter = "";
|
|
$("#addrow").on("click", function() {
|
|
counter = $("#count_items").val();
|
|
var itemOptions = "";
|
|
console.log(requisition_items);
|
|
// if(requisition_items.length>parseInt(counter)){
|
|
for (k = 0; k < requisition_items.length; k++) {
|
|
itemOptions += "<option value='" + requisition_items[k].item_id + "'>" + requisition_items[k]
|
|
.itemwithformname + "(" + requisition_items[k].item_code + ")</option>";
|
|
}
|
|
var newRow = $("<tr>");
|
|
var cols = "";
|
|
var select_treatment = "";
|
|
select_treatment += "<select ";
|
|
select_treatment += "id=\"item_id" + counter + "\"name=\"item_id" + counter +
|
|
"\" style=\"width: 100%;\" data-placeholder=\"Choose a item...\" class=\"form-control select2\"";
|
|
//select_treatment+="style=\"display: none;\"";
|
|
select_treatment += " onchange=\"getUnitForChildItem('child_item_unit',this.value," + counter + ")\">";
|
|
select_treatment += "<option value=\"\"> </option>";
|
|
select_treatment += itemOptions
|
|
select_treatment += "</select>";
|
|
cols += '<td>' + select_treatment + '</td>';
|
|
cols += '<td><input type=\"number\" name=\"item_qty' + counter + '" id="item_qty' + counter + '" ></td>';
|
|
cols += '<td><div id=\"child_item_unit' + counter + '" ></div></td>'
|
|
cols += '<td><input type="text" class="form-control" id="batch' + counter + '" name="batch' + counter +
|
|
'"></td>';
|
|
cols += '<td><input type="number" class="form-control" id="net_value' + counter + '" name="net_value' +
|
|
counter + '"/></td>';
|
|
cols += '<td><input class="form-control" name="expiry_date' + counter + '" id="expiry_date' + counter +
|
|
'" type="date" /></td>'
|
|
cols += '<td><input type="text" class="form-control" id="remarks' + counter + '" name="remarks' + counter +
|
|
'"></td>'
|
|
cols +=
|
|
'<td><a href="#" class="btn-lg" data-toggle="tooltip" id="deletebtn" title="Delete"><span class="glyphicon glyphicon-trash"></span></a></td>';
|
|
newRow.append(cols);
|
|
$("table.order-list").append(newRow);
|
|
var item_id = $("#item_id" + (counter - 1)).val();
|
|
// var counter1=counter-1;
|
|
// var element = document.getElementById('item_id'+counter);
|
|
/*for (var i = 0; i < element.options.length; i++) {
|
|
if(item_id==element.options[i].value && parseFloat($("#req_qty"+counter1).html())-parseFloat($("#issue_qty"+counter1).val())>0 ){
|
|
element.options[i]
|
|
}
|
|
}*/
|
|
// jQuery.each(selected_items, function(index,item) {
|
|
// $("#item_id"+counter+" option[value='"+item+"']").each(function() {
|
|
// $(this).remove();
|
|
// });
|
|
// })
|
|
$('.select2').select2();
|
|
/* $(".select2 option[value='475']").each(function() {
|
|
$(this).remove();
|
|
});*/
|
|
//$('#item_id'+counter).chosen({allow_single_deselect:true});
|
|
//$('#item_id'+counter).next().css({'width': $('#item_id'+counter).parent().width()});
|
|
counter++;
|
|
$("#count_items").val(counter);
|
|
$('.date-picker').datepicker({
|
|
autoclose: true,
|
|
todayHighlight: true
|
|
});
|
|
// }
|
|
});
|
|
$("table.order-list").on("click", "#deletebtn", function(event) {
|
|
// selected_items = jQuery.grep(selected_items, function(value) {
|
|
// return value != $("#item_id" + (counter - 1)).val();
|
|
// });
|
|
$(this).closest("tr").remove();
|
|
/*counter -= 1;
|
|
$("#count_items").val(counter);*/
|
|
});
|
|
/*$("#item_id"+(parseInt($("#count_items").val())-1)).on('change', function() {
|
|
var item_id=this.value;
|
|
selected_items= jQuery.grep(selected_items, function(value) {
|
|
return value !=item_id ;
|
|
});
|
|
});*/
|
|
</script>
|
|
<link rel="stylesheet" href="css/select2.min.css">
|
|
<script src="js/select2.full.min.js"></script>
|
|
<script type="text/javascript">
|
|
jQuery(function($) {
|
|
$('.select2').select2()
|
|
$('#id-disable-check').on('click', function() {
|
|
var inp = $('#form-input-readonly').get(0);
|
|
if (inp.hasAttribute('disabled')) {
|
|
inp.setAttribute('readonly', 'true');
|
|
inp.removeAttribute('disabled');
|
|
inp.value = "This text field is readonly!";
|
|
} else {
|
|
inp.setAttribute('disabled', 'disabled');
|
|
inp.removeAttribute('readonly');
|
|
inp.value = "This text field is disabled!";
|
|
}
|
|
});
|
|
if (!ace.vars['touch']) {
|
|
$('.chosen-select').chosen({
|
|
allow_single_deselect: true
|
|
});
|
|
$(window)
|
|
.off('resize.chosen')
|
|
.on('resize.chosen', function() {
|
|
$('.chosen-select').each(function() {
|
|
var $this = $(this);
|
|
$this.next().css({
|
|
'width': $this.parent().width()
|
|
});
|
|
})
|
|
}).trigger('resize.chosen');
|
|
//resize chosen on sidebar collapse/expand
|
|
$(document).on('settings.ace.chosen', function(e, event_name, event_val) {
|
|
if (event_name != 'sidebar_collapsed') return;
|
|
$('.chosen-select').each(function() {
|
|
var $this = $(this);
|
|
$this.next().css({
|
|
'width': $this.parent().width()
|
|
});
|
|
})
|
|
});
|
|
$('#chosen-multiple-style .btn').on('click', function(e) {
|
|
var target = $(this).find('input[type=radio]');
|
|
var which = parseInt(target.val());
|
|
if (which == 2) $('#form-field-select-4').addClass('tag-input-style');
|
|
else $('#form-field-select-4').removeClass('tag-input-style');
|
|
});
|
|
}
|
|
$('[data-rel=tooltip]').tooltip({
|
|
container: 'body'
|
|
});
|
|
$('[data-rel=popover]').popover({
|
|
container: 'body'
|
|
});
|
|
autosize($('textarea[class*=autosize]'));
|
|
$('textarea.limited').inputlimiter({
|
|
remText: '%n character%s remaining...',
|
|
limitText: 'max allowed : %n.'
|
|
});
|
|
//"jQuery UI Slider"
|
|
//range slider tooltip example
|
|
$("#slider-range").css('height', '200px').slider({
|
|
orientation: "vertical",
|
|
range: true,
|
|
min: 0,
|
|
max: 100,
|
|
values: [17, 67],
|
|
slide: function(event, ui) {
|
|
var val = ui.values[$(ui.handle).index() - 1] + "";
|
|
if (!ui.handle.firstChild) {
|
|
$("<div class='tooltip right in' style='display:none;left:16px;top:-6px;'><div class='tooltip-arrow'></div><div class='tooltip-inner'></div></div>")
|
|
.prependTo(ui.handle);
|
|
}
|
|
$(ui.handle.firstChild).show().children().eq(1).text(val);
|
|
}
|
|
}).find('span.ui-slider-handle').on('blur', function() {
|
|
$(this.firstChild).hide();
|
|
});
|
|
$("#slider-range-max").slider({
|
|
range: "max",
|
|
min: 1,
|
|
max: 10,
|
|
value: 2
|
|
});
|
|
$("#slider-eq > span").css({
|
|
width: '90%',
|
|
'float': 'left',
|
|
margin: '15px'
|
|
}).each(function() {
|
|
// read initial values from markup and remove that
|
|
var value = parseInt($(this).text(), 10);
|
|
$(this).empty().slider({
|
|
value: value,
|
|
range: "min",
|
|
animate: true
|
|
});
|
|
});
|
|
$("#slider-eq > span.ui-slider-purple").slider('disable'); //disable third item
|
|
$('#id-input-file-1 , #id-input-file-2').ace_file_input({
|
|
no_file: 'No File ...',
|
|
btn_choose: 'Choose',
|
|
btn_change: 'Change',
|
|
droppable: false,
|
|
onchange: null,
|
|
thumbnail: false //| true | large
|
|
//whitelist:'gif|png|jpg|jpeg'
|
|
//blacklist:'exe|php'
|
|
//onchange:''
|
|
//
|
|
});
|
|
//pre-show a file name, for example a previously selected file
|
|
//$('#id-input-file-1').ace_file_input('show_file_list', ['myfile.txt'])
|
|
//datepicker plugin
|
|
//link
|
|
$('.date-picker').datepicker({
|
|
autoclose: true,
|
|
todayHighlight: true
|
|
})
|
|
//show datepicker when clicking on the icon
|
|
.next().on(ace.click_event, function() {
|
|
$(this).prev().focus();
|
|
});
|
|
//chosen plugin inside a modal will have a zero width because the select element is originally hidden
|
|
//and its width cannot be determined.
|
|
//so we set the width after modal is show
|
|
$('#modal-form').on('shown.bs.modal', function() {
|
|
if (!ace.vars['touch']) {
|
|
$(this).find('.chosen-container').each(function() {
|
|
$(this).find('a:first-child').css('width', '210px');
|
|
$(this).find('.chosen-drop').css('width', '210px');
|
|
$(this).find('.chosen-search input').css('width', '200px');
|
|
});
|
|
}
|
|
})
|
|
/**
|
|
//or you can activate the chosen plugin after modal is shown
|
|
//this way select element becomes visible with dimensions and chosen works as expected
|
|
$('#modal-form').on('shown', function () {
|
|
$(this).find('.modal-chosen').chosen();
|
|
})
|
|
*/
|
|
$(document).one('ajaxloadstart.page', function(e) {
|
|
autosize.destroy('textarea[class*=autosize]')
|
|
$('.limiterBox,.autosizejs').remove();
|
|
$('.daterangepicker.dropdown-menu,.colorpicker.dropdown-menu,.bootstrap-datetimepicker-widget.dropdown-menu')
|
|
.remove();
|
|
});
|
|
});
|
|
</script>
|