���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/adimi/application/modules/web/assets/customer/ |
"use strict"; // Counts and limit for invoice var count = 2; var limits = 500; //Add Invoice Field function addInputField(divName, cgst_status = null, sgst_status = null, igst_status = null) { if (count == limits) { alert("You have reached the limit of adding " + count + " inputs"); } else { var newdiv = document.createElement('tr'); var tabin = "product_name_" + count; $("select.form-control:not(.dont-select-me)").select2({ placeholder: "Select option", allowClear: true }); newdiv.innerHTML = '<tr><td><input type="text" name="product_name" onkeyup="invoice_productList(' + count + ');" class="form-control productSelection" placeholder="' + display('product_name') + '" required="" id="product_name_' + count + '" ><input type="hidden" class="autocomplete_hidden_value product_id_' + count + '" name="product_id[]"/><input type="hidden" class="sl" value="' + count + '"><input type="hidden" class="baseUrl" value="' + base_url + '" /></td><td class="text-center"> <div class="variant_id_div"><select name="variant_id[]" id="variant_id_' + count + '" class="form-control variant_id width_100p" required=""><option value=""></option></select></div><div><select name="color_variant[]" id="variant_color_id_'+count+'" class="form-control color_variant width_100p" ><option value=""></option></select></div> </td><td><input type="text" name="available_quantity[]" class="form-control text-right available_quantity_' + count + '" id="avl_qntt_' + count + '" placeholder="0" readonly="1" readonly=""/></td> <td><input type="text" id="" class="form-control text-right unit_' + count + '" placeholder="' + display('none') + '" readonly="" readonly=""/></td><td><input type="number" name="product_quantity[]" onkeyup="quantity_calculate(' + count + ');" onchange="quantity_calculate(' + count + ');" id="total_qntt_' + count + '" class="form-control text-right" value="1" min="1" required="" /></td><td><input type="number" name="product_rate[]" onkeyup="quantity_calculate(' + count + ');" onchange="quantity_calculate(' + count + ');" placeholder="0.00" id="price_item_' + count + '" class="price_item' + count + ' form-control text-right" required="" min="0" readonly="" /></td><td><input type="number" name="discount[]" onkeyup="quantity_calculate(' + count + ');" onchange="quantity_calculate(' + count + ');" id="discount_' + count + '" class="form-control text-right" placeholder="0.00" min="0" readonly=""/></td><td><input class="total_price form-control text-right" type="text" name="total_price[]" id="total_price_' + count + '" placeholder="0.00" readonly="readonly" readonly=""/></td>' + '<td><input type="hidden" id="cgst_' + count + '" class="cgst"/> <input type="hidden" id="total_cgst_' + count + '" class="total_cgst" name="cgst[]" /> <input type="hidden" name="cgst_id[]" id="cgst_id_' + count + '">' + '<input type="hidden" id="sgst_' + count + '" class="sgst"/> <input type="hidden" id="total_sgst_' + count + '" class="total_sgst" name="sgst[]"/><input type="hidden" name="sgst_id[]" id="sgst_id_' + count + '">' + '<input type="hidden" id="igst_' + count + '" class="igst"/><input type="hidden" id="total_igst_' + count + '" class="total_igst" name="igst[]"/><input type="hidden" name="igst_id[]" id="igst_id_' + count + '">' + '<input type="hidden" id="total_discount_' + count + '" class="" />' + '<input type="hidden" id="all_discount_' + count + '" class="total_discount"/><button style="text-align: right;" class="btn btn-danger" type="button" value="' + display('delete') + '" onclick="deleteRow(this)">' + display('delete') + '</button></td></tr>'; document.getElementById(divName).appendChild(newdiv); document.getElementById(tabin).focus(); count++; $("select.form-control:not(.dont-select-me)").select2({ placeholder: "Select option", allowClear: true }); } } //Select stock by product and variant id $('body').on('change', '.variant_id', function() { var sl = $(this).parent().parent().parent().find(".sl").val(); var product_id = $('.product_id_' + sl).val(); var avl_qntt = $('#avl_qntt_' + sl).val(); var store_id = $('#store_id').val(); var variant_id = $(this).val(); var variant_color = $('#variant_color_id_' + sl).val(); if (store_id == 0) { alert(display('please_select_store')); return false; } $.ajax({ type: "post", async: false, url: base_url + 'web/customer/Corder/check_customer_2d_variant_info', data: { 'csrf_test_name': CSRF_TOKEN, 'product_id': product_id, 'variant_id': variant_id, 'store_id': store_id, 'variant_color': variant_color }, success: function(result) { var res = JSON.parse(result); if (res[0] == 'yes') { $('#avl_qntt_' + sl).val(res[1]); $('#discount_' + sl).val(res[3]); $('#price_item_' + sl).val(res[2]).change(); } else { $('#avl_qntt_' + sl).val(''); alert(display('product_is_not_available_in_this_store')); return false; } }, error: function() { alert('Request Failed, Please try again!'); } }); }); //Select stock by product and color variant id $('body').on('change', '.color_variant', function() { var sl = $(this).parent().parent().parent().find(".sl").val(); var product_id = $('.product_id_' + sl).val(); var avl_qntt = $('#avl_qntt_' + sl).val(); var store_id = $('#store_id').val(); var variant_id = $('#variant_id_' + sl).val(); var variant_color = $(this).val(); if (store_id == 0) { alert(display('please_select_store')); return false; } $.ajax({ type: "post", async: false, url: base_url + 'web/customer/Corder/check_customer_2d_variant_info', data: { csrf_test_name: csrf_test_name, product_id: product_id, variant_id: variant_id, store_id: store_id, variant_color: variant_color }, success: function(result) { var res = JSON.parse(result); if (res[0] == 'yes') { $('#avl_qntt_' + sl).val(res[1]); $('#discount_' + sl).val(res[3]); $('#price_item_' + sl).val(res[2]).change(); } else { $('#avl_qntt_' + sl).val(''); alert(display('product_is_not_available_in_this_store')); return false; } }, error: function() { alert('Request Failed, Please try again!'); } }); });