INR symbol
This commit is contained in:
parent
8743ebea83
commit
c9571be6d3
@ -183,7 +183,8 @@ class purchaseorder extends BaseController
|
||||
// $data['MaxPODate'] = $this->purchaseorder_model->getLastCreatedPODate();
|
||||
$data['MaxPODate'] = $this->purchaseorder_model->getLastReleasedPODate();
|
||||
$data['Currency']=$this->purchaseorder_model->GetCurrencytype();
|
||||
//print_r($data['Currency']);
|
||||
$data['INRSYMBOL']=$this->purchaseorder_model->GetINRCurrencytype('INR');
|
||||
//print_r($data['INRSYMBOL']);
|
||||
|
||||
|
||||
// $data[$Rate->ExchangeRate]=$Rate->ExchangeRate;
|
||||
@ -270,6 +271,7 @@ class purchaseorder extends BaseController
|
||||
$data['MaterialList'] = $result;//$this->purchaseorder_model->getRawMaterialList($ReqType,$ReqArray);
|
||||
$data['Suplist'] = $this->purchaseorder_model->getSupplierName();
|
||||
$data['Payment']=$this->purchaseorder_model->getSupplierPayment();
|
||||
$data['INRSYMBOL']=$this->purchaseorder_model->GetINRCurrencytype('INR');
|
||||
/* Cost code from Requisition - Client Review Fix
|
||||
Start here */
|
||||
$ReqDetails = $this->purchaseorder_model->getRequistDetails($ReqArray);
|
||||
|
||||
@ -668,6 +668,15 @@ function GetCurrencytype()
|
||||
return $query->result();
|
||||
}
|
||||
|
||||
function GetINRCurrencytype($Currency_Code='')
|
||||
{
|
||||
$subQuery='select FontCode2000 from T_Currency_Details where Currency_Code=?';
|
||||
$query=$this->db->query($subQuery,array($Currency_Code));
|
||||
//print_r($this->db->last_query());
|
||||
return $query->result();
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -23,6 +23,18 @@ $DeliverSchedule='';
|
||||
$MaxPoDate = '';
|
||||
$AvlAmount = 0;
|
||||
$Value="₹";
|
||||
|
||||
|
||||
if(!empty($INRSYMBOL))
|
||||
{
|
||||
|
||||
foreach($INRSYMBOL as $INRS)
|
||||
{
|
||||
$INRSYM=$INRS->FontCode2000;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
if(!empty($MaxPODate))
|
||||
{
|
||||
foreach ($MaxPODate as $date)
|
||||
@ -946,7 +958,7 @@ $(document).ready(function () {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<label><?php echo "Rate ($Value)";?></label>
|
||||
<label><?php echo "Rate ($INRSYM)";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'Rate','value' => set_value('Rate'),'id'=>'Rate', 'class' => 'form-control num' ,'onkeypress'=>'return isNumberKey(event);' ,'onchange'=>'Ratechange()' );
|
||||
@ -955,7 +967,7 @@ $(document).ready(function () {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<label><?php echo "Basic Amount ($Value);"?></label>
|
||||
<label><?php echo "Basic Amount ($INRSYM);"?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtBasicValue','value' => set_value('txtBasicValue'),'id'=>'txtBasicValue', 'class' => 'form-control num' ,'readonly' => 'true');
|
||||
@ -1054,7 +1066,7 @@ $(document).ready(function () {
|
||||
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-5 col-md-offset-4" align="right">
|
||||
<label><?php echo "Total Order Value ($Value)";?></label>
|
||||
<label><?php echo "Total Order Value ($INRSYM)";?></label>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<div class="form-group">
|
||||
@ -1187,7 +1199,7 @@ $(document).ready(function () {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<label><?php echo "Rate ($Value)";?></label>
|
||||
<label><?php echo "Rate ($INRSYM)";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'EditRate','value' => set_value('EditRate'),'id'=>'EditRate', 'class' => 'form-control num' ,'onkeypress'=>'return isNumberKey(event);' ,'onchange'=>'EditRatechange()' );
|
||||
@ -1196,7 +1208,7 @@ $(document).ready(function () {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<label><?php echo "Basic Amount ($Value)";?></label>
|
||||
<label><?php echo "Basic Amount ($INRSYM)";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtEditBasicValue','value' => set_value('txtEditBasicValue'),'id'=>'txtEditBasicValue', 'class' => 'form-control num' ,'readonly' => 'true');
|
||||
@ -1295,7 +1307,7 @@ $(document).ready(function () {
|
||||
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-5 col-md-offset-4" align="right">
|
||||
<label><?php echo "Total Order Value ($Value)";?></label>>
|
||||
<label><?php echo "Total Order Value ($INRSYM)";?></label>>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<div class="form-group">
|
||||
|
||||
@ -29,6 +29,16 @@ if(!empty($AvlBudAmt))
|
||||
|
||||
}
|
||||
|
||||
if(!empty($INRSYMBOL))
|
||||
{
|
||||
|
||||
foreach($INRSYMBOL as $INRS)
|
||||
{
|
||||
$INRSYM=$INRS->FontCode2000;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
foreach ($PaymentTerms as $TER)
|
||||
{
|
||||
$Terms=$TER->PaymentTerms;
|
||||
@ -2183,7 +2193,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label>Rate</label>
|
||||
<label><?php echo "Rate In ($INRSYM)";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'Rate','value' => set_value('Rate'),'id'=>'Rate', 'class' => 'form-control num' ,'onkeypress'=>'return isNumberKey(event);','onchange'=>'change()' );
|
||||
@ -2192,7 +2202,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label>Basic Amount</label>
|
||||
<label><?php echo "Basic Amount ($INRSYM)";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtBasicValue','value' => set_value('txtBasicValue'),'id'=>'txtBasicValue', 'class' => 'form-control num' ,'readonly' => 'true');
|
||||
@ -2237,7 +2247,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label>Discounted Amount </label>
|
||||
<label><?php echo "Discounted Amount In ($INRSYM)";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtAfterDiscount','value' => set_value('txtAfterDiscount'),'id'=>'txtAfterDiscount', 'class' => 'form-control num' ,'readonly' => 'true');
|
||||
@ -2247,7 +2257,7 @@ body {
|
||||
</div>
|
||||
<div id="Vat" >
|
||||
<div class="col-md-2" >
|
||||
<label>Vat in %</label>
|
||||
<label><?php echo "VAT Amount ($INRSYM)";?>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtVat','value' => set_value('txtVat'),'id'=>'txtVat', 'class' => 'form-control num','onchange'=>'calculateVat(0);' );
|
||||
@ -2321,7 +2331,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label>Packaging Amount </label>
|
||||
<label><?php echo "Packaging Amount ($INRSYM)";?> </label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtAfterPackaging','value' => set_value('txtAfterPackaging'),'id'=>'txtAfterPackaging', 'class' => 'form-control num' ,'readonly' => 'true');
|
||||
@ -2339,7 +2349,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label>GST Amount</label>
|
||||
<label><?php echo "GST Amount ($INRSYM)";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtAfterGST','value' => set_value('txtAfterGST'),'id'=>'txtAfterGST', 'class' => 'form-control num' ,'readonly' => 'true');
|
||||
@ -2362,7 +2372,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label> Excise Duty Amount</label>
|
||||
<label> <?php echo "Excise Duty Amount ($INRSYM)";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtAfterExciseDuty','value' => set_value('txtAfterExciseDuty'),'id'=>'txtAfterExciseDuty', 'class' => 'form-control num' ,'readonly' => 'true');
|
||||
@ -2380,7 +2390,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label>Other Taxes Amount</label>
|
||||
<label><?php echo "Other Taxes Amount ($INRSYM)";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtAfterOtherTax','value' => set_value('txtAfterOtherTax'),'id'=>'txtAfterOtherTax', 'class' => 'form-control num' ,'readonly' => 'true');
|
||||
@ -2426,7 +2436,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label>Freight Amount </label>
|
||||
<label><?php echo "Freight Amount ($INRSYM)";?> </label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtAfterFreight','value' => set_value('txtAfterFreight'),'id'=>'txtAfterFreight', 'class' => 'form-control num' ,'readonly' => 'true');
|
||||
@ -2574,7 +2584,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label>Rate</label>
|
||||
<label><?php echo "Rate In ($INRSYM)";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'EditRate','value' => set_value('EditRate'),'id'=>'EditRate', 'class' => 'form-control num' ,'onkeypress'=>'return isNumberKey(event);','onchange'=>'Editchange()','style'=>'text-align:right;' );
|
||||
@ -2583,7 +2593,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label>Basic Amount</label>
|
||||
<label><?php echo "Basic Amount ($INRSYM)";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtEditBasicValue','value' => set_value('txtEditBasicValue'),'id'=>'txtEditBasicValue', 'class' => 'form-control num' ,'readonly' => 'true','style'=>'text-align:right;');
|
||||
@ -2628,7 +2638,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label>Discounted Amount </label>
|
||||
<label><?php echo "Discounted Amount In ($INRSYM)";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtEditAfterDiscount','value' => set_value('txtEditAfterDiscount'),'id'=>'txtEditAfterDiscount', 'class' => 'form-control num' ,'readonly' => 'true','style'=>'text-align:right;');
|
||||
@ -2648,7 +2658,7 @@ body {
|
||||
|
||||
</div>
|
||||
<div class="col-md-2" >
|
||||
<label>Vat Amount </label>
|
||||
<label><?php echo "Vat Amount ($INRSYM)";?> </label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtEditAfterVat','value' => set_value('txtEditAfterVat'),'id'=>'txtEditAfterVat', 'class' => 'form-control num' ,'readonly' => 'true','onkeypress'=>'return isNumberKey(event);','style'=>'text-align:right;');
|
||||
@ -2716,7 +2726,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label>Packaging Amount</label>
|
||||
<label><?php echo "Packaging Amount ($INRSYM)";?> </label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtEditAfterPackaging','value' => set_value('txtEditAfterPackaging'),'id'=>'txtEditAfterPackaging', 'class' => 'form-control num' ,'readonly' => 'true','style'=>'text-align:right;');
|
||||
@ -2757,7 +2767,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label> Excise Duty Amount</label>
|
||||
<label> <?php echo "Excise Duty Amount ($INRSYM)";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtEditAfterExciseDuty','value' => set_value('txtEditAfterExciseDuty'),'id'=>'txtEditAfterExciseDuty', 'class' => 'form-control num' ,'readonly' => 'true','style'=>'text-align:right;');
|
||||
@ -2775,7 +2785,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label>Other Taxes Amount</label>
|
||||
<label><?php echo "Other Taxes Amount ($INRSYM)";?></label>s
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtEditAfterOtherTax','value' => set_value('txtEditAfterOtherTax'),'id'=>'txtEditAfterOtherTax', 'class' => 'form-control num' ,'readonly' => 'true','style'=>'text-align:right;');
|
||||
@ -2821,7 +2831,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label>Freight Amount </label>
|
||||
<label><?php echo "Freight Amount ($INRSYM)";?> </label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtEditAfterFreight','value' => set_value('txtEditAfterFreight'),'id'=>'txtEditAfterFreight', 'class' => 'form-control num' ,'readonly' => 'true','style'=>'text-align:right;');
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
<?php
|
||||
E<?php
|
||||
$AvlAmount = 0;
|
||||
$ReqType ='';
|
||||
$Value='';
|
||||
@ -209,7 +209,7 @@ if(!empty($RequistionDetails))
|
||||
<div style="border:2px solid #333">
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-11">
|
||||
<center><b><h2>Siddharth Industries - Edit Import Purchase Order</h2></b></center>
|
||||
<center><b><h2>Siddharth Industries - Edit Import Purchase Order-<?php echo "$PONO"?></h2></b></center>
|
||||
</div>
|
||||
<!--<div class="col-md-1"><br/>
|
||||
<a class="btn btn-info" href="<?php echo base_url(); ?>purchaseorder/CreateimportPOPrint" target="_blank">Print</a>
|
||||
|
||||
@ -1929,7 +1929,7 @@ function USRate()
|
||||
$('#ExchangeRt').val(txtexchangerate);
|
||||
var txtINRvalue=txtbasics*txtexchangerate;
|
||||
$('#INRBasicvalues').val(txtINRvalue)
|
||||
$('#INRBasicvalue').val(txtINRvalue);
|
||||
$('#INRBasicvalue').val(Math.round(txtINRvalue));
|
||||
$('#BasicPriceTax').val(txtINRvalue);
|
||||
//txtINR = Math.ceil(txtINR*10)/10;
|
||||
txtINR = Math.round(txtINRvalue);
|
||||
@ -1977,7 +1977,7 @@ function Ratechange(){
|
||||
var txtQuantity = parseFloat( $('#Quantity').val());
|
||||
var txtUnitPrice = parseFloat($('#Rate').val());
|
||||
var Tot = txtQuantity * txtUnitPrice
|
||||
$('#txtBasicValue').val(Tot);
|
||||
$('#txtBasicValue').val(Math.round(Tot));
|
||||
}
|
||||
}
|
||||
|
||||
@ -2751,7 +2751,7 @@ function CalculateCtable()
|
||||
}
|
||||
else
|
||||
{
|
||||
$('#purchaserate').val(txtpurchaserate);
|
||||
$('#purchaserate').val(Math.round(txtpurchaserate));
|
||||
}
|
||||
|
||||
txtgrossexp=parseFloat($('#Grossexpenses').val());
|
||||
|
||||
@ -25,6 +25,20 @@ if(!empty($AvlBudAmt))
|
||||
$AvlAmount = $AvlBudAmt;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
if(!empty($INRSYMBOL))
|
||||
{
|
||||
|
||||
foreach($INRSYMBOL as $INRS)
|
||||
{
|
||||
$INRSYM=$INRS->FontCode2000;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
//echo "$INRSYM";
|
||||
?>
|
||||
<style>
|
||||
|
||||
@ -2174,7 +2188,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label><?php echo "Rate In ($Value)";?></label>
|
||||
<label><?php echo "Rate In ($INRSYM)";?></label>
|
||||
<!-- <label>Rate</label> -->
|
||||
<div class="form-group">
|
||||
<?php
|
||||
@ -2184,7 +2198,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label><?php echo "Basic Amount ($Value)";?></label>
|
||||
<label><?php echo "Basic Amount ($INRSYM)";?></label>
|
||||
<!-- <label>Basic Amount</label> -->
|
||||
<div class="form-group">
|
||||
<?php
|
||||
@ -2231,7 +2245,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label><?php echo "Discounted Amount In ($Value)";?></label>
|
||||
<label><?php echo "Discounted Amount In ($INRSYM)";?></label>
|
||||
<!-- <label>Discounted Amount </label>
|
||||
--> <div class="form-group">
|
||||
<?php
|
||||
@ -2251,7 +2265,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2" >
|
||||
<p id=labelvat> <label><?php echo "VAT Amount ($Value)";?></label></p>
|
||||
<p id=labelvat> <label><?php echo "VAT Amount ($INRSYM)";?></label></p>
|
||||
<!-- <label>Vat Amount </label> -->
|
||||
<div class="form-group">
|
||||
<?php
|
||||
@ -2318,7 +2332,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label><?php echo "Packaging Amount ($Value)";?> </label>
|
||||
<label><?php echo "Packaging Amount ($INRSYM)";?> </label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtAfterPackaging','value' => set_value('txtAfterPackaging'),'id'=>'txtAfterPackaging', 'class' => 'form-control' ,'readonly' => 'true');
|
||||
@ -2336,7 +2350,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label><?php echo "GST Amount ($Value)";?></label>
|
||||
<label><?php echo "GST Amount ($INRSYM)";?></label>
|
||||
<!-- <label>GST Amount</label> -->
|
||||
<div class="form-group">
|
||||
<?php
|
||||
@ -2360,7 +2374,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label><?php echo "Excise Duty Amount ($Value)";?></label>
|
||||
<label><?php echo "Excise Duty Amount ($INRSYM)";?></label>
|
||||
<!-- <label> Excise Duty Amount</label> -->
|
||||
<div class="form-group">
|
||||
<?php
|
||||
@ -2379,7 +2393,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label><?php echo "Other Taxes Amount ($Value)";?></label>
|
||||
<label><?php echo "Other Taxes Amount ($INRSYM)";?></label>
|
||||
<!-- <label>Other Taxes Amount</label> -->
|
||||
<div class="form-group">
|
||||
<?php
|
||||
@ -2426,7 +2440,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label><?php echo "Freight Amount ($Value)";?></label>
|
||||
<label><?php echo "Freight Amount ($INRSYM)";?></label>
|
||||
<!-- <label>Freight Amount</label> -->
|
||||
<div class="form-group">
|
||||
<?php
|
||||
@ -2451,7 +2465,7 @@ body {
|
||||
<div class="row">
|
||||
<div class="col-md-12" >
|
||||
|
||||
<div class="col-md-4" align="right"> <label><?php echo "Total Order Amount ($Value)";?></label></div>
|
||||
<div class="col-md-4" align="right"> <label><?php echo "Total Order Amount ($INRSYM)";?></label></div>
|
||||
<div class="col-md-4 ">
|
||||
<div class="form-group">
|
||||
<?php
|
||||
@ -2574,7 +2588,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label><?php echo "Rate ($Value);";?></label>
|
||||
<label><?php echo "Rate ($INRSYM);";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'EditRate','value' => set_value('EditRate'),'id'=>'EditRate', 'class' => 'form-control' ,'onkeypress'=>'return isNumberKey(event);','onchange'=>'Editchange()','style'=>'text-align:right;' );
|
||||
@ -2583,7 +2597,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label><?php echo "Basic Amount ($Value)"?></label>
|
||||
<label><?php echo "Basic Amount ($INRSYM)"?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtEditBasicValue','value' => set_value('txtEditBasicValue'),'id'=>'txtEditBasicValue', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;');
|
||||
@ -2628,7 +2642,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label><?php echo "Discounted Amount ($Value)";?> </label>
|
||||
<label><?php echo "Discounted Amount ($INRSYM)";?> </label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtEditAfterDiscount','value' => set_value('txtEditAfterDiscount'),'id'=>'txtEditAfterDiscount', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;');
|
||||
@ -2648,7 +2662,7 @@ body {
|
||||
|
||||
</div>
|
||||
<div class="col-md-2" >
|
||||
<label><?php echo "Vat Amount ($Value)";?> </label>
|
||||
<label><?php echo "Vat Amount ($INRSYM)";?> </label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtEditAfterVat','value' => set_value('txtEditAfterVat'),'id'=>'txtEditAfterVat', 'class' => 'form-control' ,'readonly' => 'true','onkeypress'=>'return isNumberKey(event);','style'=>'text-align:right;');
|
||||
@ -2716,7 +2730,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label><?php echo "Packaging Amount ($Value)";?></label>
|
||||
<label><?php echo "Packaging Amount ($INRSYM)";?></label>
|
||||
<!-- <label>Packaging Amount </label> -->
|
||||
<div class="form-group">
|
||||
<?php
|
||||
@ -2735,7 +2749,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label><?php echo "GST Amount ($Value)";?></label>
|
||||
<label><?php echo "GST Amount ($INRSYM)";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtEditAfterGST','value' => set_value('txtEditAfterGST'),'id'=>'txtEditAfterGST', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;');
|
||||
@ -2758,7 +2772,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label> <?php echo "Excise Duty Amount ($Value)";?></label>
|
||||
<label> <?php echo "Excise Duty Amount ($INRSYM)";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtEditAfterExciseDuty','value' => set_value('txtEditAfterExciseDuty'),'id'=>'txtEditAfterExciseDuty', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;');
|
||||
@ -2776,7 +2790,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label><?php echo "Other Taxes Amount ($Value)";?></label>
|
||||
<label><?php echo "Other Taxes Amount ($INRSYM)";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtEditAfterOtherTax','value' => set_value('txtEditAfterOtherTax'),'id'=>'txtEditAfterOtherTax', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;');
|
||||
@ -2822,7 +2836,7 @@ body {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label><?php echo "Freight Amount ($Value)";?> </label>
|
||||
<label><?php echo "Freight Amount ($INRSYM)";?> </label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtEditAfterFreight','value' => set_value('txtEditAfterFreight'),'id'=>'txtEditAfterFreight', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;');
|
||||
@ -2846,7 +2860,7 @@ body {
|
||||
<div class="row">
|
||||
<div class="col-md-12" >
|
||||
|
||||
<div class="col-md-4" align="right"> <label><?php echo "Total Order Amount : ($Value)";?></label></div>
|
||||
<div class="col-md-4" align="right"> <label><?php echo "Total Order Amount : ($INRSYM)";?></label></div>
|
||||
<div class="col-md-4">
|
||||
<div class="form-group">
|
||||
<?php
|
||||
|
||||
@ -27,6 +27,17 @@ if(!empty($AvlBudAmt))
|
||||
}
|
||||
|
||||
|
||||
if(!empty($INRSYMBOL))
|
||||
{
|
||||
|
||||
foreach($INRSYMBOL as $INRS)
|
||||
{
|
||||
$INRSYM=$INRS->FontCode2000;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
?>
|
||||
<script src="<?php echo base_url(); ?>assets/js/CreatePOValidation.js" type="text/javascript"></script>
|
||||
<script>
|
||||
@ -49,7 +60,10 @@ var AvilBudAmt = '';
|
||||
$("#Deliverydt").datepicker({
|
||||
minDate : 'now',
|
||||
dateFormat: 'mm/dd/yy',changeMonth: true, changeYear: true,yearRange: '0:+10'
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
$('#drpSupplier').change(function() {
|
||||
|
||||
@ -889,7 +903,7 @@ $(document).ready(function () {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<label><?php echo "Rate ($Value)";?></label>
|
||||
<label><?php echo "Rate ($INRSYM)";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'Rate','value' => set_value('Rate'),'id'=>'Rate', 'class' => 'form-control num' ,'onkeypress'=>'return isNumberKey(event);' ,'onchange'=>'Ratechange()' );
|
||||
@ -898,7 +912,7 @@ $(document).ready(function () {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<label><?php echo "Basic Amount ($Value)";?></label>
|
||||
<label><?php echo "Basic Amount ($INRSYM)";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtBasicValue','value' => set_value('txtBasicValue'),'id'=>'txtBasicValue', 'class' => 'form-control num' ,'readonly' => 'true');
|
||||
@ -997,7 +1011,7 @@ $(document).ready(function () {
|
||||
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-5 col-md-offset-4" align="right">
|
||||
<label><?php echo "Total Order value ($Value)";?></label>
|
||||
<label><?php echo "Total Order value ($INRSYM)";?></label>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<div class="form-group">
|
||||
@ -1131,7 +1145,7 @@ $(document).ready(function () {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<label><?php echo "Rate($Value)";?></label>
|
||||
<label><?php echo "Rate($INRSYM)";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'EditRate','value' => set_value('EditRate'),'id'=>'EditRate', 'class' => 'form-control num' ,'onkeypress'=>'return isNumberKey(event);' ,'onchange'=>'EditRatechange()' );
|
||||
@ -1140,7 +1154,7 @@ $(document).ready(function () {
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<label><?php echo "Basic Amount ($Value)";?></label>
|
||||
<label><?php echo "Basic Amount ($INRSYM)";?></label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'txtEditBasicValue','value' => set_value('txtEditBasicValue'),'id'=>'txtEditBasicValue', 'class' => 'form-control num' ,'readonly' => 'true');
|
||||
@ -1240,7 +1254,7 @@ $(document).ready(function () {
|
||||
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-5 col-md-offset-4" align="right">
|
||||
<label><?php echo "Total Order value ($Value)";?></label>>
|
||||
<label><?php echo "Total Order value ($INRSYM)";?></label>>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<div class="form-group">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user