| Server IP : 103.161.17.216 / Your IP : 216.73.216.1 Web Server : nginx/1.18.0 System : Linux tipsysaigoncharming 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/app.ansachsongkhoe.net/public/js/ |
Upload File : |
$(document).ready(function() {
//Add products
if ($('#search_product_for_srock_adjustment').length > 0) {
//Add Product
$('#search_product_for_srock_adjustment')
.autocomplete({
source: function(request, response) {
$.getJSON(
'/products/list',
{ location_id: $('#location_id').val(), term: request.term },
response
);
},
minLength: 2,
response: function(event, ui) {
if (ui.content.length == 1) {
ui.item = ui.content[0];
if (ui.item.qty_available > 0 && ui.item.enable_stock == 1) {
$(this)
.data('ui-autocomplete')
._trigger('select', 'autocompleteselect', ui);
$(this).autocomplete('close');
}
} else if (ui.content.length == 0) {
swal(LANG.no_products_found);
}
},
focus: function(event, ui) {
if (ui.item.qty_available <= 0) {
return false;
}
},
select: function(event, ui) {
if (ui.item.qty_available > 0) {
$(this).val(null);
stock_adjustment_product_row(ui.item.variation_id);
} else {
alert(LANG.out_of_stock);
}
},
})
.autocomplete('instance')._renderItem = function(ul, item) {
if (item.qty_available <= 0) {
var string = '<li class="ui-state-disabled">' + item.name;
if (item.type == 'variable') {
string += '-' + item.variation;
}
string += ' (' + item.sub_sku + ') (Out of stock) </li>';
return $(string).appendTo(ul);
} else if (item.enable_stock != 1) {
return ul;
} else {
var string = '<div>' + item.name;
if (item.type == 'variable') {
string += '-' + item.variation;
}
string += ' (' + item.sub_sku + ') </div>';
return $('<li>')
.append(string)
.appendTo(ul);
}
};
}
$('select#location_id').change(function() {
if ($(this).val()) {
$('#search_product_for_srock_adjustment').removeAttr('disabled');
} else {
$('#search_product_for_srock_adjustment').attr('disabled', 'disabled');
}
$('table#stock_adjustment_product_table tbody').html('');
$('#product_row_index').val(0);
update_table_total();
});
$(document).on('change', 'input.product_quantity', function() {
update_table_row($(this).closest('tr'));
});
$(document).on('change', 'input.product_unit_price', function() {
update_table_row($(this).closest('tr'));
});
$(document).on('click', '.remove_product_row', function() {
swal({
title: LANG.sure,
icon: 'warning',
buttons: true,
dangerMode: true,
}).then(willDelete => {
if (willDelete) {
$(this)
.closest('tr')
.remove();
update_table_total();
}
});
});
//Date picker
$('#transaction_date').datetimepicker({
format: moment_date_format + ' ' + moment_time_format,
ignoreReadonly: true,
});
$('form#stock_adjustment_form').validate();
stock_adjustment_table = $('#stock_adjustment_table').DataTable({
processing: true,
serverSide: true,
ajax: '/stock-adjustments',
columnDefs: [
{
targets: 0,
orderable: false,
searchable: false,
},
],
aaSorting: [[1, 'desc']],
columns: [
{ data: 'action', name: 'action' },
{ data: 'transaction_date', name: 'transaction_date' },
{ data: 'ref_no', name: 'ref_no' },
{ data: 'location_name', name: 'BL.name' },
{ data: 'adjustment_type', name: 'adjustment_type' },
{ data: 'final_total', name: 'final_total' },
{ data: 'total_amount_recovered', name: 'total_amount_recovered' },
{ data: 'additional_notes', name: 'additional_notes' },
{ data: 'added_by', name: 'u.first_name' },
],
fnDrawCallback: function(oSettings) {
__currency_convert_recursively($('#stock_adjustment_table'));
},
});
var detailRows = [];
$(document).on('click', 'button.delete_stock_adjustment', function() {
swal({
title: LANG.sure,
icon: 'warning',
buttons: true,
dangerMode: true,
}).then(willDelete => {
if (willDelete) {
var href = $(this).data('href');
$.ajax({
method: 'DELETE',
url: href,
dataType: 'json',
success: function(result) {
if (result.success) {
toastr.success(result.msg);
stock_adjustment_table.ajax.reload();
} else {
toastr.error(result.msg);
}
},
});
}
});
});
});
function stock_adjustment_product_row(variation_id) {
var row_index = parseInt($('#product_row_index').val());
var location_id = $('select#location_id').val();
$.ajax({
method: 'POST',
url: '/stock-adjustments/get_product_row',
data: { row_index: row_index, variation_id: variation_id, location_id: location_id },
dataType: 'html',
success: function(result) {
$('table#stock_adjustment_product_table tbody').append(result);
update_table_total();
$('#product_row_index').val(row_index + 1);
},
});
}
function update_table_total() {
var table_total = 0;
$('table#stock_adjustment_product_table tbody tr').each(function() {
var this_total = parseFloat(__read_number($(this).find('input.product_line_total')));
if (this_total) {
table_total += this_total;
}
});
$('input#total_amount').val(table_total);
$('span#total_adjustment').text(__number_f(table_total));
}
function update_table_row(tr) {
var quantity = parseFloat(__read_number(tr.find('input.product_quantity')));
var unit_price = parseFloat(__read_number(tr.find('input.product_unit_price')));
var row_total = 0;
if (quantity && unit_price) {
row_total = quantity * unit_price;
}
tr.find('input.product_line_total').val(__number_f(row_total));
update_table_total();
}
$(document).on('shown.bs.modal', '.view_modal', function() {
__currency_convert_recursively($('.view_modal'));
});