emergency purchase order modal page bugs - vadivel J
This commit is contained in:
parent
4dbc2ccc11
commit
04c8fa28b4
@ -224,8 +224,7 @@ if (!empty($INRSYMBOL)) {
|
|||||||
|
|
||||||
|
|
||||||
$.each(y, function (idx, obj) {
|
$.each(y, function (idx, obj) {
|
||||||
if(obj.SupplierID === id)
|
if (obj.SupplierID === id) {
|
||||||
{
|
|
||||||
$("#SupAddress").val(obj.Address);
|
$("#SupAddress").val(obj.Address);
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -248,8 +247,7 @@ if (!empty($INRSYMBOL)) {
|
|||||||
$("#CostCenter").empty();
|
$("#CostCenter").empty();
|
||||||
$("#MaterialCode").empty();
|
$("#MaterialCode").empty();
|
||||||
resetTaxField();
|
resetTaxField();
|
||||||
if(id != '0')
|
if (id != '0') {
|
||||||
{
|
|
||||||
var y = <?php //echo json_encode($RequistionDetails, JSON_PRETTY_PRINT)
|
var y = <?php //echo json_encode($RequistionDetails, JSON_PRETTY_PRINT)
|
||||||
?>;
|
?>;
|
||||||
var cost = <?php //echo json_encode($CostList, JSON_PRETTY_PRINT)
|
var cost = <?php //echo json_encode($CostList, JSON_PRETTY_PRINT)
|
||||||
@ -259,8 +257,7 @@ if (!empty($INRSYMBOL)) {
|
|||||||
|
|
||||||
// For Binding DepartmentName
|
// For Binding DepartmentName
|
||||||
$.each(y, function (idx, obj) {
|
$.each(y, function (idx, obj) {
|
||||||
if(obj.ReqNo === id)
|
if (obj.ReqNo === id) {
|
||||||
{
|
|
||||||
$("#deptName").val(obj.DepartmentName);
|
$("#deptName").val(obj.DepartmentName);
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -268,8 +265,7 @@ if (!empty($INRSYMBOL)) {
|
|||||||
// For Binding Cost center for the selected department
|
// For Binding Cost center for the selected department
|
||||||
$("#CostCenter").append($('<option></option>').val("0").html("Select Cost Center"));
|
$("#CostCenter").append($('<option></option>').val("0").html("Select Cost Center"));
|
||||||
$.each(cost, function (idx, obj) {
|
$.each(cost, function (idx, obj) {
|
||||||
if(obj.ReqNo === id)
|
if (obj.ReqNo === id) {
|
||||||
{
|
|
||||||
$("#CostCenter").append($('<option></option>').val(obj.CostCenterCode).html(obj.CostCenterCode + "-" + obj.CostCenterName));
|
$("#CostCenter").append($('<option></option>').val(obj.CostCenterCode).html(obj.CostCenterCode + "-" + obj.CostCenterName));
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -278,8 +274,7 @@ if (!empty($INRSYMBOL)) {
|
|||||||
// For Binding Material list center for the selected Requistion Number
|
// For Binding Material list center for the selected Requistion Number
|
||||||
$("#MaterialCode").append($('<option></option>').val("0").html("Select Material Code"));
|
$("#MaterialCode").append($('<option></option>').val("0").html("Select Material Code"));
|
||||||
$.each(Material, function (idx, obj) {
|
$.each(Material, function (idx, obj) {
|
||||||
if(obj.ReqNo === id)
|
if (obj.ReqNo === id) {
|
||||||
{
|
|
||||||
$("#MaterialCode").append($('<option></option>').val(obj.MaterialCode).html(obj.MaterialCode + "-" + obj.MaterialName));
|
$("#MaterialCode").append($('<option></option>').val(obj.MaterialCode).html(obj.MaterialCode + "-" + obj.MaterialName));
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -287,8 +282,7 @@ if (!empty($INRSYMBOL)) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
|
||||||
alert('Please select the Requisition Number');
|
alert('Please select the Requisition Number');
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -299,15 +293,13 @@ if (!empty($INRSYMBOL)) {
|
|||||||
var id = $('#MaterialCode').val();
|
var id = $('#MaterialCode').val();
|
||||||
RequistQuantity = '';
|
RequistQuantity = '';
|
||||||
resetTaxField();
|
resetTaxField();
|
||||||
if(id != '0')
|
if (id != '0') {
|
||||||
{
|
|
||||||
var y = <?php //echo json_encode($MaterialList, JSON_PRETTY_PRINT)
|
var y = <?php //echo json_encode($MaterialList, JSON_PRETTY_PRINT)
|
||||||
?>;
|
?>;
|
||||||
|
|
||||||
|
|
||||||
$.each(y, function (idx, obj) {
|
$.each(y, function (idx, obj) {
|
||||||
if(obj.MaterialCode === id)
|
if (obj.MaterialCode === id) {
|
||||||
{
|
|
||||||
$("#ItemName").val(obj.MaterialName);
|
$("#ItemName").val(obj.MaterialName);
|
||||||
$("#UOM").val(obj.UOM);
|
$("#UOM").val(obj.UOM);
|
||||||
$("#Quantity").val(obj.Quantity);
|
$("#Quantity").val(obj.Quantity);
|
||||||
@ -315,8 +307,7 @@ if (!empty($INRSYMBOL)) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
|
||||||
alert('Please select the MaterialCode');
|
alert('Please select the MaterialCode');
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -328,21 +319,18 @@ if (!empty($INRSYMBOL)) {
|
|||||||
var id = $('#CostCenter').val();
|
var id = $('#CostCenter').val();
|
||||||
$("#AvlBudAmt").val('');
|
$("#AvlBudAmt").val('');
|
||||||
|
|
||||||
if(id != '0')
|
if (id != '0') {
|
||||||
{
|
|
||||||
var cost = <?php //echo json_encode($CostList, JSON_PRETTY_PRINT)
|
var cost = <?php //echo json_encode($CostList, JSON_PRETTY_PRINT)
|
||||||
?>;
|
?>;
|
||||||
|
|
||||||
$.each(cost, function (idx, obj) {
|
$.each(cost, function (idx, obj) {
|
||||||
if(obj.CostCenterCode === id)
|
if (obj.CostCenterCode === id) {
|
||||||
{
|
|
||||||
$("#AvlBudAmt").val(obj.BudgetAmount);
|
$("#AvlBudAmt").val(obj.BudgetAmount);
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
|
||||||
alert('Please select the MaterialCode');
|
alert('Please select the MaterialCode');
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -1943,6 +1931,7 @@ if (!empty($INRSYMBOL)) {
|
|||||||
$('#POType').val(this.value);
|
$('#POType').val(this.value);
|
||||||
if (this.value == 'REVENUE') //Revenue po
|
if (this.value == 'REVENUE') //Revenue po
|
||||||
{
|
{
|
||||||
|
$("#potaxes").show();
|
||||||
$("#QualityChecked").show();
|
$("#QualityChecked").show();
|
||||||
$("#revenuepotaxes").show();
|
$("#revenuepotaxes").show();
|
||||||
$("#currencyexchange").hide();
|
$("#currencyexchange").hide();
|
||||||
@ -1959,6 +1948,7 @@ if (!empty($INRSYMBOL)) {
|
|||||||
$('#typeOptions').html('Revenue Type Options');
|
$('#typeOptions').html('Revenue Type Options');
|
||||||
} else if (this.value == 'SERVICE') // Service po
|
} else if (this.value == 'SERVICE') // Service po
|
||||||
{
|
{
|
||||||
|
$("#potaxes").show();
|
||||||
$("#QualityChecked").hide();
|
$("#QualityChecked").hide();
|
||||||
$("#servicepotaxes").show();
|
$("#servicepotaxes").show();
|
||||||
$("#Deliveryby").show();
|
$("#Deliveryby").show();
|
||||||
@ -1974,6 +1964,7 @@ if (!empty($INRSYMBOL)) {
|
|||||||
|
|
||||||
} else if (this.value == 'IMPORT') // Import po
|
} else if (this.value == 'IMPORT') // Import po
|
||||||
{
|
{
|
||||||
|
$("#potaxes").show();
|
||||||
$("#currencyexchange").show();
|
$("#currencyexchange").show();
|
||||||
|
|
||||||
$("#revenuepotaxes").hide();
|
$("#revenuepotaxes").hide();
|
||||||
@ -1982,6 +1973,7 @@ if (!empty($INRSYMBOL)) {
|
|||||||
$('#typeOptions').html('Import Type Options');
|
$('#typeOptions').html('Import Type Options');
|
||||||
} else if (this.value == 'CAPITAL') // Capital po
|
} else if (this.value == 'CAPITAL') // Capital po
|
||||||
{
|
{
|
||||||
|
$("#potaxes").show();
|
||||||
$("#currencyexchange").show();
|
$("#currencyexchange").show();
|
||||||
|
|
||||||
$("#revenuepotaxes").hide();
|
$("#revenuepotaxes").hide();
|
||||||
@ -1990,6 +1982,7 @@ if (!empty($INRSYMBOL)) {
|
|||||||
$('#typeOptions').html('Capital Type Options');
|
$('#typeOptions').html('Capital Type Options');
|
||||||
} else // Default
|
} else // Default
|
||||||
{
|
{
|
||||||
|
$("#potaxes").show();
|
||||||
$("#currencyexchange").hide();
|
$("#currencyexchange").hide();
|
||||||
|
|
||||||
$("#revenuepotaxes").hide();
|
$("#revenuepotaxes").hide();
|
||||||
@ -2330,7 +2323,14 @@ if (!empty($INRSYMBOL)) {
|
|||||||
endforeach;
|
endforeach;
|
||||||
}
|
}
|
||||||
|
|
||||||
echo form_dropdown('RequestType', $options, set_value('ConfigValue'), 'id="purpose"', 'class = "form-control select2"', 'required="true"');
|
echo form_dropdown(
|
||||||
|
'RequestType',
|
||||||
|
$options,
|
||||||
|
set_value('ConfigValue'),
|
||||||
|
'id="purpose"',
|
||||||
|
'class = "form-control select2"',
|
||||||
|
'required="true"'
|
||||||
|
);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
@ -2449,7 +2449,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
<a href="http://www.xe.com/" target="_blank"><u>To check Today's Foreign Exchange value</u></a>
|
<a href="http://www.xe.com/" target="_blank"><u>To check Today's Foreign
|
||||||
|
Exchange value</u></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -2498,7 +2499,9 @@ if (!empty($INRSYMBOL)) {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3" style="display:none;">
|
<div class="col-md-3" style="display:none;">
|
||||||
<label>Available Budget <?php echo "($INRSYM)" ?></label><img id="AlertImg" src="<?php echo base_url(); ?>public/assets/dist/img/red.png" alt="your image" width="25px" style="display:none;" />
|
<label>Available Budget <?php echo "($INRSYM)" ?></label><img id="AlertImg"
|
||||||
|
src="<?php echo base_url(); ?>public/assets/dist/img/red.png" alt="your image"
|
||||||
|
width="25px" style="display:none;" />
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<?php
|
<?php
|
||||||
$data = array('name' => 'AvalBuget', 'value' => set_value('AvalBuget'), 'id' => 'AvalBuget', 'class' => 'form-control num', 'readonly' => 'true');
|
$data = array('name' => 'AvalBuget', 'value' => set_value('AvalBuget'), 'id' => 'AvalBuget', 'class' => 'form-control num', 'readonly' => 'true');
|
||||||
@ -2606,7 +2609,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
<label id="typeOptions">Service Type Options<span class="badge mandatory">*</span></label>
|
<label id="typeOptions">Service Type Options<span
|
||||||
|
class="badge mandatory">*</span></label>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
@ -2685,7 +2689,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3" id="insuranceTxtDiv" style="display:block;">
|
<div class="col-md-3" id="insuranceTxtDiv" style="display:block;">
|
||||||
<label>Insurance No / Insurance Details<span class="badge mandatory">*</span></label>
|
<label>Insurance No / Insurance Details<span
|
||||||
|
class="badge mandatory">*</span></label>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<?php
|
<?php
|
||||||
$data = array('name' => 'InsuranceNumber', 'value' => set_value('InsuranceNumber'), 'id' => 'InsuranceNumber', 'class' => 'form-control', 'required' => 'true');
|
$data = array('name' => 'InsuranceNumber', 'value' => set_value('InsuranceNumber'), 'id' => 'InsuranceNumber', 'class' => 'form-control', 'required' => 'true');
|
||||||
@ -2707,38 +2712,47 @@ if (!empty($INRSYMBOL)) {
|
|||||||
|
|
||||||
<div class="row justify-content-end align-items-center" style="padding:10px">
|
<div class="row justify-content-end align-items-center" style="padding:10px">
|
||||||
<div class="col-auto">
|
<div class="col-auto">
|
||||||
<input type="checkbox" id="IsOpenOrder" name="IsOpenOrder" value="1"> IS THIS OPEN ORDER FORMAT
|
<input type="checkbox" id="IsOpenOrder" name="IsOpenOrder" value="1"> IS THIS OPEN
|
||||||
|
ORDER FORMAT
|
||||||
</div>
|
</div>
|
||||||
<div class="col-auto">
|
<div class="col-auto">
|
||||||
<a data-toggle="modal" onclick="showmodel();" class="btn btn-success">Select Line Item</a>
|
<a data-toggle="modal" onclick="showmodel();" class="btn btn-success">Select Line
|
||||||
|
Item</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card">
|
<div class="card">
|
||||||
|
|
||||||
|
|
||||||
<div id="packagingcalmodel" class="modal fade" tabindex="-1" role="dialog"
|
<div id="packagingcalmodel" class="modal fade" tabindex="-1" role="dialog"
|
||||||
aria-labelledby="myModalLabel" aria-hidden="true" data-bs-backdrop="static" data-bs-keyboard="false" style="display: none;">
|
aria-labelledby="myModalLabel" aria-hidden="true" data-bs-backdrop="static" data-bs-keyboard="false"
|
||||||
|
style="display: none;">
|
||||||
<div class="modal-dialog modal-lg">
|
<div class="modal-dialog modal-lg">
|
||||||
<div class="modal-content" style="border: 1px solid #ddd; margin-top: 73px; box-shadow: 0 0 40px rgb(0 0 0 / 43%);">
|
<div class="modal-content"
|
||||||
|
style="border: 1px solid #ddd; margin-top: 73px; box-shadow: 0 0 40px rgb(0 0 0 / 43%);">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<h4 class="modal-title">Packing Calculation On <span id="WeightTitle"></span></h4>
|
<h4 class="modal-title">Packing Calculation On <span id="WeightTitle"></span></h4>
|
||||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body p-4">
|
<div class="modal-body p-4">
|
||||||
<div class="form-group row">
|
<div class="form-group row">
|
||||||
<label><input type="radio" name="optPackaging" checked="checked" value="0" id="optPackaging"> Basic Amount</label>
|
<label><input type="radio" name="optPackaging" checked="checked" value="0"
|
||||||
|
id="optPackaging"> Basic Amount</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group row">
|
<div class="form-group row">
|
||||||
<label><input type="radio" name="optPackaging" id="optPackaging" value="1"> After Discount Amount</label>
|
<label><input type="radio" name="optPackaging" id="optPackaging" value="1">
|
||||||
|
After Discount Amount</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button type="button" class="btn btn-secondary waves-effect" data-dismiss="modal" value="Cancel">Cancel</button>
|
<button type="button" class="btn btn-secondary waves-effect" data-dismiss="modal"
|
||||||
<button type="button" class="btn btn-info waves-effect waves-light" onclick="SetPackagingOption()">Save</button>
|
value="Cancel">Cancel</button>
|
||||||
|
<button type="button" class="btn btn-info waves-effect waves-light"
|
||||||
|
onclick="SetPackagingOption()">Save</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -2746,7 +2760,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
|
|
||||||
<!-- Modal for Packing Calculation -->
|
<!-- Modal for Packing Calculation -->
|
||||||
|
|
||||||
<div id="submitmodel" class="modal fade" data-backdrop-limit="1" role="dialog" aria-labelledby="myModalLabel">
|
<div id="submitmodel" class="modal fade" data-backdrop-limit="1" role="dialog"
|
||||||
|
aria-labelledby="myModalLabel">
|
||||||
<div class="modal-dialog">
|
<div class="modal-dialog">
|
||||||
|
|
||||||
<!-- Modal content-->
|
<!-- Modal content-->
|
||||||
@ -2759,15 +2774,20 @@ if (!empty($INRSYMBOL)) {
|
|||||||
<form>
|
<form>
|
||||||
<div class="modal-body p-4">
|
<div class="modal-body p-4">
|
||||||
<div class="form-group row">
|
<div class="form-group row">
|
||||||
<label><input type="radio" name="optsubmit" value="1" id="optsubmit"> YES</label>
|
<label><input type="radio" name="optsubmit" value="1" id="optsubmit">
|
||||||
|
YES</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group row">
|
<div class="form-group row">
|
||||||
<label><input type="radio" name="optsubmit" checked="checked" id="optsubmit" value="0"> NO</label>
|
<label><input type="radio" name="optsubmit" checked="checked" id="optsubmit"
|
||||||
|
value="0"> NO</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button type="button" class="btn btn-secondary waves-effect" data-dismiss="modal" value="Cancel">Cancel</button>
|
<button type="button" class="btn btn-secondary waves-effect"
|
||||||
<button type="button" class="btn btn-info waves-effect waves-light" ID="PackagingOption" onclick="submitoption();dropdownselect();">Save</button>
|
data-dismiss="modal" value="Cancel">Cancel</button>
|
||||||
|
<button type="button" class="btn btn-info waves-effect waves-light"
|
||||||
|
ID="PackagingOption"
|
||||||
|
onclick="submitoption();dropdownselect();">Save</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
@ -2775,7 +2795,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="filemodel" class="modal fade" data-backdrop-limit="1" role="dialog" aria-labelledby="myModalLabel">
|
<div id="filemodel" class="modal fade" data-backdrop-limit="1" role="dialog"
|
||||||
|
aria-labelledby="myModalLabel">
|
||||||
<div class="modal-dialog">
|
<div class="modal-dialog">
|
||||||
|
|
||||||
<!-- Modal content-->
|
<!-- Modal content-->
|
||||||
@ -2792,7 +2813,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
|
|
||||||
</div>-->
|
</div>-->
|
||||||
<div class="col-md-4 pad"><strong>Delivery Challan /Inv No</strong>
|
<div class="col-md-4 pad"><strong>Delivery Challan /Inv No</strong>
|
||||||
<input type="text" name="ChallanInvNo" id="ChallanInvNo" maxlength="12" class="form-control" value="" required onkeypress="return isNumberKey(event)">
|
<input type="text" name="ChallanInvNo" id="ChallanInvNo" maxlength="12"
|
||||||
|
class="form-control" value="" required onkeypress="return isNumberKey(event)">
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4 pad"><strong>Delivery Challan /Inv Date</strong>
|
<div class="col-md-4 pad"><strong>Delivery Challan /Inv Date</strong>
|
||||||
<!-- <input type="Date" name="Date1" onkeypress="return onlyAlphabets(event);" maxlength="100" id="Date1" class="form-control" required value="2"> -->
|
<!-- <input type="Date" name="Date1" onkeypress="return onlyAlphabets(event);" maxlength="100" id="Date1" class="form-control" required value="2"> -->
|
||||||
@ -2820,15 +2842,18 @@ if (!empty($INRSYMBOL)) {
|
|||||||
<input type="hidden" id="splrow" value="sample" name="splrow" />
|
<input type="hidden" id="splrow" value="sample" name="splrow" />
|
||||||
|
|
||||||
<div class="col-md-4 pad"><strong>Vehicle No</strong>
|
<div class="col-md-4 pad"><strong>Vehicle No</strong>
|
||||||
<input type="text" name="VehicleNo" id="VehicleNo" maxlength="13" class="form-control" value="" required>
|
<input type="text" name="VehicleNo" id="VehicleNo" maxlength="13"
|
||||||
|
class="form-control" value="" required>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4 pad"><strong>Courier No</strong>
|
<div class="col-md-4 pad"><strong>Courier No</strong>
|
||||||
<input type="text" name="CourierNo" id="CourierNo" maxlength="12" class="form-control" value="" required>
|
<input type="text" name="CourierNo" id="CourierNo" maxlength="12"
|
||||||
|
class="form-control" value="" required>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-md-4" id="QualityChecked"><strong>Is Quality Check Required</strong>
|
<div class="col-md-4" id="QualityChecked"><strong>Is Quality Check Required</strong>
|
||||||
<div class="radio">
|
<div class="radio">
|
||||||
<label><input type="radio" name="Quality" checked="checked" value='0' id="Quality">Yes</label>
|
<label><input type="radio" name="Quality" checked="checked" value='0'
|
||||||
|
id="Quality">Yes</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="radio">
|
<div class="radio">
|
||||||
<label><input type="radio" name="Quality" id="Quality" value='1'>No</label>
|
<label><input type="radio" name="Quality" id="Quality" value='1'>No</label>
|
||||||
@ -2850,7 +2875,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
|
|
||||||
<!-- <legend>Multiple File</legend> -->
|
<!-- <legend>Multiple File</legend> -->
|
||||||
<div class="col-md-offset-10 col-md-1">
|
<div class="col-md-offset-10 col-md-1">
|
||||||
<input type="button" class="btn btn-success" id="addmorebutton" value=" + ADD FILES..">
|
<input type="button" class="btn btn-success" id="addmorebutton"
|
||||||
|
value=" + ADD FILES..">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
@ -2868,7 +2894,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<table id="specialtable" class="table table-hover table-bordered" style="background-color:#fff;font-size:12px;">
|
<table id="specialtable" class="table table-hover table-bordered"
|
||||||
|
style="background-color:#fff;font-size:12px;">
|
||||||
|
|
||||||
|
|
||||||
<!--<thead>
|
<!--<thead>
|
||||||
@ -2896,8 +2923,10 @@ if (!empty($INRSYMBOL)) {
|
|||||||
|
|
||||||
|
|
||||||
<div class="col-md-4 col-md-offset-8">
|
<div class="col-md-4 col-md-offset-8">
|
||||||
<a class="btn btn-cancel" data-dismiss="modal" onclick="SetExciseCalculationCancel();" value="Cancel">Cancel</a>
|
<a class="btn btn-cancel" data-dismiss="modal"
|
||||||
<a class="btn btn-success ok" ID="ExciseOption12" onclick="rfilealert();"> <span class="bold">Submit</span></a>
|
onclick="SetExciseCalculationCancel();" value="Cancel">Cancel</a>
|
||||||
|
<a class="btn btn-success ok" ID="ExciseOption12"
|
||||||
|
onclick="rfilealert();"> <span class="bold">Submit</span></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -2907,7 +2936,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
<!-- </form> -->
|
<!-- </form> -->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="servicemodel" class="modal fade" data-backdrop-limit="1" role="dialog" aria-labelledby="myModalLabel">
|
<div id="servicemodel" class="modal fade" data-backdrop-limit="1" role="dialog"
|
||||||
|
aria-labelledby="myModalLabel">
|
||||||
<div class="modal-dialog">
|
<div class="modal-dialog">
|
||||||
|
|
||||||
<!-- Modal content-->
|
<!-- Modal content-->
|
||||||
@ -2932,7 +2962,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
|
|
||||||
<!-- <legend>Multiple File</legend> -->
|
<!-- <legend>Multiple File</legend> -->
|
||||||
<div class="col-md-offset-0 col-md-1">
|
<div class="col-md-offset-0 col-md-1">
|
||||||
<input type="button" class="btn btn-success" id="addemorebutton" value=" + ADD FILES..">
|
<input type="button" class="btn btn-success" id="addemorebutton"
|
||||||
|
value=" + ADD FILES..">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
@ -2951,8 +2982,10 @@ if (!empty($INRSYMBOL)) {
|
|||||||
|
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<div class="col-md-12 text-right">
|
<div class="col-md-12 text-right">
|
||||||
<a class="btn btn-secondary waves-effect" data-dismiss="modal" onclick="SetExciseCalculationCancel();" value="Cancel">Cancel</a>
|
<a class="btn btn-secondary waves-effect" data-dismiss="modal"
|
||||||
<a class="btn btn-success ok" ID="ExciseOption12" onclick="sfilealert();"> <span class="bold">Submit</span></a>
|
onclick="SetExciseCalculationCancel();" value="Cancel">Cancel</a>
|
||||||
|
<a class="btn btn-success ok" ID="ExciseOption12"
|
||||||
|
onclick="sfilealert();"> <span class="bold">Submit</span></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -2965,7 +2998,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="freightmodel" class="modal fade" data-backdrop-limit="1" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
|
<div id="freightmodel" class="modal fade" data-backdrop-limit="1" tabindex="-1" role="dialog"
|
||||||
|
aria-labelledby="myModalLabel">
|
||||||
<div class="modal-dialog">
|
<div class="modal-dialog">
|
||||||
|
|
||||||
<!-- Modal content-->
|
<!-- Modal content-->
|
||||||
@ -2978,16 +3012,20 @@ if (!empty($INRSYMBOL)) {
|
|||||||
<form>
|
<form>
|
||||||
|
|
||||||
<div class="radio">
|
<div class="radio">
|
||||||
<label><input type="radio" name="optfreight" checked="checked" value='0' id="optfreight"> Basic Amount</label>
|
<label><input type="radio" name="optfreight" checked="checked" value='0'
|
||||||
|
id="optfreight"> Basic Amount</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="radio">
|
<div class="radio">
|
||||||
<label><input type="radio" name="optfreight" id="optfreight" value='1'> After Discount Amount</label>
|
<label><input type="radio" name="optfreight" id="optfreight" value='1'> After
|
||||||
|
Discount Amount</label>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<a class="btn btn-cancel" data-dismiss="modal" style="margin-top: -24px;" value="Cancel">Cancel</a>
|
<a class="btn btn-cancel" data-dismiss="modal" style="margin-top: -24px;"
|
||||||
<a class="btn btn-success" ID="freightOption" onclick="setfreightOption();" style="margin-top: -24px;"> <span class="bold">Ok</span></a>
|
value="Cancel">Cancel</a>
|
||||||
|
<a class="btn btn-success" ID="freightOption" onclick="setfreightOption();"
|
||||||
|
style="margin-top: -24px;"> <span class="bold">Ok</span></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -3007,23 +3045,29 @@ if (!empty($INRSYMBOL)) {
|
|||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<form>
|
<form>
|
||||||
<div class="radio">
|
<div class="radio">
|
||||||
<label><input type="radio" name="optExcise" checked="checked" value="0" id="optExcise">From Basic Amount</label>
|
<label><input type="radio" name="optExcise" checked="checked" value="0"
|
||||||
|
id="optExcise">From Basic Amount</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="radio">
|
<div class="radio">
|
||||||
<label><input type="radio" name="optExcise" value="1" id="optExcise">Basic Amount - Discount Amount</label>
|
<label><input type="radio" name="optExcise" value="1" id="optExcise">Basic
|
||||||
|
Amount - Discount Amount</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="radio">
|
<div class="radio">
|
||||||
<label><input type="radio" name="optExcise" value="2" id="optExcise">(Basic Amount - Discount Amount ) + Packing Cost</label>
|
<label><input type="radio" name="optExcise" value="2" id="optExcise">(Basic
|
||||||
|
Amount - Discount Amount ) + Packing Cost</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="radio">
|
<div class="radio">
|
||||||
<label><input type="radio" name="optExcise" value="3" id="optExcise">Basic Amount + Packing Cost</label>
|
<label><input type="radio" name="optExcise" value="3" id="optExcise">Basic
|
||||||
|
Amount + Packing Cost</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<a class="btn btn-cancel" data-dismiss="modal" onclick="SetExciseCalculationCancel();" style="margin-top: -24px;" value="Cancel">Cancel</a>
|
<a class="btn btn-cancel" data-dismiss="modal" onclick="SetExciseCalculationCancel();"
|
||||||
<a class="btn btn-success" ID="ExciseOption" onclick="SetExciseCalculation();" style="margin-top: -24px;"> <span class="bold">Ok</span></a>
|
style="margin-top: -24px;" value="Cancel">Cancel</a>
|
||||||
|
<a class="btn btn-success" ID="ExciseOption" onclick="SetExciseCalculation();"
|
||||||
|
style="margin-top: -24px;"> <span class="bold">Ok</span></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -3045,16 +3089,20 @@ if (!empty($INRSYMBOL)) {
|
|||||||
<form>
|
<form>
|
||||||
|
|
||||||
<div class="radio">
|
<div class="radio">
|
||||||
<label><input type="radio" name="optVat" checked="checked" value="0" id="optVat">Basic Amount</label>
|
<label><input type="radio" name="optVat" checked="checked" value="0"
|
||||||
|
id="optVat">Basic Amount</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="radio">
|
<div class="radio">
|
||||||
<label><input type="radio" name="optVat" value="1" id="optVat">Excise Duty</label>
|
<label><input type="radio" name="optVat" value="1" id="optVat">Excise
|
||||||
|
Duty</label>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<a class="btn btn-cancel" data-dismiss="modal" style="margin-top: -24px;" value="Cancel">Cancel</a>
|
<a class="btn btn-cancel" data-dismiss="modal" style="margin-top: -24px;"
|
||||||
<a class="btn btn-success" ID="VatOption" onclick="SetVatCalculation();" style="margin-top: -24px;"> <span class="bold">Ok</span></a>
|
value="Cancel">Cancel</a>
|
||||||
|
<a class="btn btn-success" ID="VatOption" onclick="SetVatCalculation();"
|
||||||
|
style="margin-top: -24px;"> <span class="bold">Ok</span></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -3074,16 +3122,20 @@ if (!empty($INRSYMBOL)) {
|
|||||||
<form>
|
<form>
|
||||||
|
|
||||||
<div class="radio">
|
<div class="radio">
|
||||||
<label><input type="radio" name="optCST" checked="checked" value="0" id="optCST">Basic Amount</label>
|
<label><input type="radio" name="optCST" checked="checked" value="0"
|
||||||
|
id="optCST">Basic Amount</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="radio">
|
<div class="radio">
|
||||||
<label><input type="radio" name="optCST" value="1" id="optCST">Excise Duty</label>
|
<label><input type="radio" name="optCST" value="1" id="optCST">Excise
|
||||||
|
Duty</label>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<a class="btn btn-cancel" data-dismiss="modal" style="margin-top: -24px;" value="Cancel">Cancel</a>
|
<a class="btn btn-cancel" data-dismiss="modal" style="margin-top: -24px;"
|
||||||
<a class="btn btn-success" ID="CSTOption" onclick="SetCSTCalculation();" style="margin-top: -24px;"> <span class="bold">Ok</span></a>
|
value="Cancel">Cancel</a>
|
||||||
|
<a class="btn btn-success" ID="CSTOption" onclick="SetCSTCalculation();"
|
||||||
|
style="margin-top: -24px;"> <span class="bold">Ok</span></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -3135,7 +3187,9 @@ if (!empty($INRSYMBOL)) {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3" style="display:none;">
|
<div class="col-md-3" style="display:none;">
|
||||||
<label>Available Budget Amount</label><img id="AlertImg" src="<?php echo base_url(); ?>public/assets/dist/img/red.png" alt="your image" width="25px" style="display:none;" />
|
<label>Available Budget Amount</label><img id="AlertImg"
|
||||||
|
src="<?php echo base_url(); ?>public/assets/dist/img/red.png"
|
||||||
|
alt="your image" width="25px" style="display:none;" />
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<?php
|
<?php
|
||||||
$data = array('name' => 'EditAvlBudAmt', 'value' => set_value('EditAvlBudAmt'), 'id' => 'EditAvlBudAmt', 'class' => 'form-control num', 'readonly' => 'true');
|
$data = array('name' => 'EditAvlBudAmt', 'value' => set_value('EditAvlBudAmt'), 'id' => 'EditAvlBudAmt', 'class' => 'form-control num', 'readonly' => 'true');
|
||||||
@ -3254,7 +3308,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
<label><?php echo "Rate ($INRSYM)"; ?><span class="badge mandatory">*</span></label>
|
<label><?php echo "Rate ($INRSYM)"; ?><span
|
||||||
|
class="badge mandatory">*</span></label>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<?php
|
<?php
|
||||||
$data = array('name' => 'EditRate', 'value' => set_value('EditRate'), 'id' => 'EditRate', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'onchange' => 'EditRatechange()');
|
$data = array('name' => 'EditRate', 'value' => set_value('EditRate'), 'id' => 'EditRate', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'onchange' => 'EditRatechange()');
|
||||||
@ -3356,7 +3411,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
$data = array('name' => 'EditAfterIgst', 'value' => set_value('EditAfterIgst', 0), 'id' => 'EditAfterIgst', 'class' => 'form-control num', 'placeholder' => 'After IGST', 'readonly' => 'true');
|
$data = array('name' => 'EditAfterIgst', 'value' => set_value('EditAfterIgst', 0), 'id' => 'EditAfterIgst', 'class' => 'form-control num', 'placeholder' => 'After IGST', 'readonly' => 'true');
|
||||||
echo form_input($data);
|
echo form_input($data);
|
||||||
?>
|
?>
|
||||||
<input type="hidden" name="EditFrequencyNo" id="EditFrequencyNo" value="EditFrequencyNo" />
|
<input type="hidden" name="EditFrequencyNo" id="EditFrequencyNo"
|
||||||
|
value="EditFrequencyNo" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -3390,7 +3446,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
</div>
|
</div>
|
||||||
<div class="row" style="padding: 0px 30px 10px 30px;">
|
<div class="row" style="padding: 0px 30px 10px 30px;">
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<label>Service Description<span class="badge mandatory">*</span></label> <?php
|
<label>Service Description<span class="badge mandatory">*</span></label>
|
||||||
|
<?php
|
||||||
$data = array('name' => 'EdittxtSpcialInstructionSingle', 'value' => set_value('EdittxtSpcialInstructionSingle'), 'id' => 'EdittxtSpcialInstructionSingle', 'class' => 'form-control', 'rows' => '3', 'cols' => '40');
|
$data = array('name' => 'EdittxtSpcialInstructionSingle', 'value' => set_value('EdittxtSpcialInstructionSingle'), 'id' => 'EdittxtSpcialInstructionSingle', 'class' => 'form-control', 'rows' => '3', 'cols' => '40');
|
||||||
echo form_textarea($data); ?>
|
echo form_textarea($data); ?>
|
||||||
</div>
|
</div>
|
||||||
@ -3404,7 +3461,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<div class="col-md-12 text-right">
|
<div class="col-md-12 text-right">
|
||||||
<a class="btn btn-cancel" data-dismiss="modal" value="Cancel">Cancel</a>
|
<a class="btn btn-cancel" data-dismiss="modal" value="Cancel">Cancel</a>
|
||||||
<a class="btn btn-success font EditService" ID="Edit"> <span class="bold">Update Service</span></a>
|
<a class="btn btn-success font EditService" ID="Edit"> <span
|
||||||
|
class="bold">Update Service</span></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -3414,7 +3472,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- Edit Revenue Modal -->
|
<!-- Edit Revenue Modal -->
|
||||||
<div id="EDITREVENUE" class="modal fade" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="overflow-y:scroll !important">
|
<div id="EDITREVENUE" class="modal fade" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"
|
||||||
|
style="overflow-y:scroll !important">
|
||||||
<div class="modal-dialog">
|
<div class="modal-dialog">
|
||||||
<!-- Modal content-->
|
<!-- Modal content-->
|
||||||
<form>
|
<form>
|
||||||
@ -3507,7 +3566,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-2" style="padding-right: 0px;">
|
<div class="col-md-2" style="padding-right: 0px;">
|
||||||
<label><?php echo "Rate ($INRSYM)"; ?><span class="badge mandatory">*</span></label>
|
<label><?php echo "Rate ($INRSYM)"; ?><span
|
||||||
|
class="badge mandatory">*</span></label>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<?php
|
<?php
|
||||||
$data = array('name' => 'EditRevenueRate', 'value' => set_value('EditRate'), 'id' => 'EditRevenueRate', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'onchange' => 'Editchange()', 'style' => 'text-align:right;');
|
$data = array('name' => 'EditRevenueRate', 'value' => set_value('EditRate'), 'id' => 'EditRevenueRate', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'onchange' => 'Editchange()', 'style' => 'text-align:right;');
|
||||||
@ -3767,7 +3827,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
<label><?php echo "Revenue Description"; ?></label>
|
<label><?php echo "Revenue Description"; ?></label>
|
||||||
<?php
|
<?php
|
||||||
$data = array('name' => 'Edit_Service_Description', 'value' => set_value('Edit_Service_Description'), 'id' => 'Edit_Service_Description', 'class' => 'form-control', 'rows' => '2', 'cols' => '100');
|
$data = array('name' => 'Edit_Service_Description', 'value' => set_value('Edit_Service_Description'), 'id' => 'Edit_Service_Description', 'class' => 'form-control', 'rows' => '2', 'cols' => '100');
|
||||||
echo form_textarea($data);;
|
echo form_textarea($data);
|
||||||
|
;
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -3777,8 +3838,10 @@ if (!empty($INRSYMBOL)) {
|
|||||||
<!-- footer for revenue po -->
|
<!-- footer for revenue po -->
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<div class="col-md-12 text-right">
|
<div class="col-md-12 text-right">
|
||||||
<a class="btn btn-secondary waves-effect" data-dismiss="modal" value="Cancel">Cancel</a>
|
<a class="btn btn-secondary waves-effect" data-dismiss="modal"
|
||||||
<a class="btn btn-success EditRevenue" ID="EditRevenue"> <span class="bold">Edit Revenue</span></a>
|
value="Cancel">Cancel</a>
|
||||||
|
<a class="btn btn-success EditRevenue" ID="EditRevenue"> <span
|
||||||
|
class="bold">Edit Revenue</span></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -3796,7 +3859,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
<div align="right" style="padding-right:10px">
|
<div align="right" style="padding-right:10px">
|
||||||
|
|
||||||
<!-- Model for revenue PO -->
|
<!-- Model for revenue PO -->
|
||||||
<div id="REVENUE" class="modal fade" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
<div id="REVENUE" class="modal fade" role="dialog" aria-labelledby="myModalLabel"
|
||||||
|
aria-hidden="true">
|
||||||
<div class="modal-dialog">
|
<div class="modal-dialog">
|
||||||
<!-- Modal content-->
|
<!-- Modal content-->
|
||||||
<form>
|
<form>
|
||||||
@ -3846,7 +3910,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-2">
|
<div class="col-md-2">
|
||||||
<label><?php echo "Rate ($INRSYM)"; ?><span class="badge mandatory"></label>
|
<label><?php echo "Rate ($INRSYM)"; ?><span
|
||||||
|
class="badge mandatory"></label>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<?php
|
<?php
|
||||||
$data = array('name' => 'Rate', 'value' => set_value('Rate'), 'id' => 'Rate', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'onchange' => 'change()');
|
$data = array('name' => 'Rate', 'value' => set_value('Rate'), 'id' => 'Rate', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'onchange' => 'change()');
|
||||||
@ -3863,7 +3928,9 @@ if (!empty($INRSYMBOL)) {
|
|||||||
<label><?php echo "Basic Amt ($INRSYM)"; ?></label>
|
<label><?php echo "Basic Amt ($INRSYM)"; ?></label>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<?php
|
<?php
|
||||||
$data = array('name' => 'txtBasicValue', 'value' => set_value('txtBasicValue'), 'id' => 'txtBasicValue', 'class' => 'form-control num', 'readonly' => 'true');
|
$data = array('name' => 'txtBasicValue',
|
||||||
|
'value' => set_value('txtBasicValue'), 'id' => 'txtBasicValue',
|
||||||
|
'class' => 'form-control num', 'readonly' => 'true');
|
||||||
echo form_input($data);
|
echo form_input($data);
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
@ -3875,7 +3942,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-4"></div>
|
<div class="col-md-4"></div>
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<label>Discount Type <span class="badge mandatory"></span></label>
|
<label>Discount Type <span
|
||||||
|
class="badge mandatory"></span></label>
|
||||||
<div>
|
<div>
|
||||||
<?php
|
<?php
|
||||||
$options = array("0" => 'Select Discount Type');
|
$options = array("0" => 'Select Discount Type');
|
||||||
@ -3896,7 +3964,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-2">
|
<div class="col-md-2">
|
||||||
<label>Discount Rate<span class="badge mandatory"></span> </label>
|
<label>Discount Rate<span class="badge mandatory"></span>
|
||||||
|
</label>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<?php
|
<?php
|
||||||
$data = array('name' => 'txtDiscount', 'value' => set_value('txtDiscount'), 'id' => 'txtDiscount', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'onchange' => 'change();calculateDiscount(0);');
|
$data = array('name' => 'txtDiscount', 'value' => set_value('txtDiscount'), 'id' => 'txtDiscount', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'onchange' => 'change();calculateDiscount(0);');
|
||||||
@ -3917,7 +3986,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
<div class="row" style="text-align:left;">
|
<div class="row" style="text-align:left;">
|
||||||
<div class="col-md-4"></div>
|
<div class="col-md-4"></div>
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<label>Packaging Type <span class="badge mandatory"></span></label>
|
<label>Packaging Type <span
|
||||||
|
class="badge mandatory"></span></label>
|
||||||
<div>
|
<div>
|
||||||
<?php
|
<?php
|
||||||
$options = array("0" => 'Select Packaging Type');
|
$options = array("0" => 'Select Packaging Type');
|
||||||
@ -3938,7 +4008,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-2">
|
<div class="col-md-2">
|
||||||
<label>Packaging Rate <span class="badge mandatory"></span></label>
|
<label>Packaging Rate <span
|
||||||
|
class="badge mandatory"></span></label>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<?php
|
<?php
|
||||||
$data = array('name' => 'txtPackaging', 'value' => set_value('txtPackaging'), 'id' => 'txtPackaging', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'onchange' => 'calculatePackaging(0);change();');
|
$data = array('name' => 'txtPackaging', 'value' => set_value('txtPackaging'), 'id' => 'txtPackaging', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'onchange' => 'calculatePackaging(0);change();');
|
||||||
@ -4108,14 +4179,17 @@ if (!empty($INRSYMBOL)) {
|
|||||||
<label><?php echo "Revenue Description"; ?></label>
|
<label><?php echo "Revenue Description"; ?></label>
|
||||||
<?php
|
<?php
|
||||||
$data = array('name' => 'Add_Service_Description', 'value' => set_value('Add_Service_Description'), 'id' => 'Add_Service_Description', 'class' => 'form-control', 'rows' => '2', 'cols' => '100');
|
$data = array('name' => 'Add_Service_Description', 'value' => set_value('Add_Service_Description'), 'id' => 'Add_Service_Description', 'class' => 'form-control', 'rows' => '2', 'cols' => '100');
|
||||||
echo form_textarea($data);;
|
echo form_textarea($data);
|
||||||
|
;
|
||||||
?>
|
?>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 text-right">
|
<div class="col-12 text-right">
|
||||||
<a class="btn btn-secondary waves-effect" data-dismiss="modal" value="Cancel">Cancel</a>
|
<a class="btn btn-secondary waves-effect" data-dismiss="modal"
|
||||||
<a class="btn btn-success font AddRevenue" ID="AddRevenue"> <span class="bold">Add Revenue</span></a>
|
value="Cancel">Cancel</a>
|
||||||
|
<a class="btn btn-success font AddRevenue" ID="AddRevenue">
|
||||||
|
<span class="bold">Add Revenue</span></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -4123,7 +4197,9 @@ if (!empty($INRSYMBOL)) {
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
<!-- footer for revenue po -->
|
<!-- footer for revenue po -->
|
||||||
<div class="modal-footer"></div>
|
<div class="modal-footer">
|
||||||
|
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
@ -4207,7 +4283,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
<label><?php echo "Rate ($INRSYM)"; ?><span class="badge mandatory">*</span></label>
|
<label><?php echo "Rate ($INRSYM)"; ?><span
|
||||||
|
class="badge mandatory">*</span></label>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<?php
|
<?php
|
||||||
$data = array('name' => 'ServiceRate', 'value' => set_value('ServiceRate'), 'id' => 'ServiceRate', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'onchange' => 'Ratechange()');
|
$data = array('name' => 'ServiceRate', 'value' => set_value('ServiceRate'), 'id' => 'ServiceRate', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'onchange' => 'Ratechange()');
|
||||||
@ -4382,7 +4459,9 @@ if (!empty($INRSYMBOL)) {
|
|||||||
|
|
||||||
<div class="col-md-12" style="padding:0px;">
|
<div class="col-md-12" style="padding:0px;">
|
||||||
<div class="col-md-12" style="padding: 0px 30px 10px 30px;">
|
<div class="col-md-12" style="padding: 0px 30px 10px 30px;">
|
||||||
<label>Service Description<span class="badge mandatory">*</span></label> <?php
|
<label>Service Description<span
|
||||||
|
class="badge mandatory">*</span></label>
|
||||||
|
<?php
|
||||||
$data = array('name' => 'txtSpcialInstructionSingle', 'value' => set_value('txtSpcialInstructionSingle'), 'id' => 'txtSpcialInstructionSingle', 'class' => 'form-control', 'rows' => '3', 'cols' => '40');
|
$data = array('name' => 'txtSpcialInstructionSingle', 'value' => set_value('txtSpcialInstructionSingle'), 'id' => 'txtSpcialInstructionSingle', 'class' => 'form-control', 'rows' => '3', 'cols' => '40');
|
||||||
echo form_textarea($data); ?>
|
echo form_textarea($data); ?>
|
||||||
</div>
|
</div>
|
||||||
@ -4394,8 +4473,11 @@ if (!empty($INRSYMBOL)) {
|
|||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<div class="col-md-12 text-right">
|
<div class="col-md-12 text-right">
|
||||||
<button type="button" class="btn btn-secondary waves-effect" data-dismiss="modal" value="Cancel">Cancel</button>
|
<button type="button" class="btn btn-secondary waves-effect"
|
||||||
<button type="button" class="btn btn-info waves-effect waves-light font AddService" ID="PackagingOption" ID="AddService">Save</button>
|
data-dismiss="modal" value="Cancel">Cancel</button>
|
||||||
|
<button type="button"
|
||||||
|
class="btn btn-info waves-effect waves-light font AddService"
|
||||||
|
ID="PackagingOption" ID="AddService">Save</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -4898,7 +4980,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<a class="btn btn-cancel" data-dismiss="modal" value="Cancel">Cancel</a>
|
<a class="btn btn-cancel" data-dismiss="modal" value="Cancel">Cancel</a>
|
||||||
<a class="btn btn-success font AddImport" ID="AddImport"> <span class="bold">Add Import</span></a>
|
<a class="btn btn-success font AddImport" ID="AddImport"> <span
|
||||||
|
class="bold">Add Import</span></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
@ -5357,7 +5440,8 @@ if (!empty($INRSYMBOL)) {
|
|||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<a class="btn btn-cancel" data-dismiss="modal" value="Cancel">Cancel</a>
|
<a class="btn btn-cancel" data-dismiss="modal" value="Cancel">Cancel</a>
|
||||||
<a class="btn btn-success font AddImport" ID="AddImport"> <span class="bold">Add Capital</span></a>
|
<a class="btn btn-success font AddImport" ID="AddImport"> <span
|
||||||
|
class="bold">Add Capital</span></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
@ -5390,16 +5474,19 @@ if (!empty($INRSYMBOL)) {
|
|||||||
<tbody id="RevenueAppend"></tbody>
|
<tbody id="RevenueAppend"></tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
</table>
|
||||||
<!-- /.box-body -->
|
<!-- /.box-body -->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</table>
|
<div class="row " id="potaxes" style="display:none;" >
|
||||||
<div class="container-fluid">
|
<div class="col-md-12">
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-body">
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<!-- Revenue po taxes -->
|
<!-- Revenue po taxes -->
|
||||||
<div class="col-md-12" style='border : 1px solid; display:none;' id="revenuepotaxes">
|
<div class="col-md-12" style='border : 1px solid; display:none;'
|
||||||
|
id="revenuepotaxes">
|
||||||
<br />
|
<br />
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
@ -5495,8 +5582,13 @@ if (!empty($INRSYMBOL)) {
|
|||||||
<input type="hidden" name="txtSpecial" id="txtSpecial" />
|
<input type="hidden" name="txtSpecial" id="txtSpecial" />
|
||||||
<input type="hidden" name="txtQuality" id="txtQuality" />
|
<input type="hidden" name="txtQuality" id="txtQuality" />
|
||||||
<!-- <a class="btn btn-success Save" ID="Save" onclick="Save()" > <span class="bold">Save</span></a> -->
|
<!-- <a class="btn btn-success Save" ID="Save" onclick="Save()" > <span class="bold">Save</span></a> -->
|
||||||
<a class="btn btn-reset Save" ID="Cancel" href="<?php echo base_url() . 'EmergencyPO'; ?>" style="background-color: red;color: white;"> <span class="bold">Reset</span></a>
|
<a class="btn btn-reset Save" ID="Cancel"
|
||||||
<a class="btn btn-success Submit" ID="Submit" onclick="showsubmit()"> <span class="bold">Submit</span></a>
|
href="<?php echo base_url() . 'EmergencyPO'; ?>"
|
||||||
|
style="background-color: red;color: white;"> <span
|
||||||
|
class="bold">Reset</span></a>
|
||||||
|
<a class="btn btn-success Submit" ID="Submit"
|
||||||
|
onclick="showsubmit()"> <span
|
||||||
|
class="bold">Submit</span></a>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -5506,39 +5598,48 @@ if (!empty($INRSYMBOL)) {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Service po taxes -->
|
<!-- Service po taxes -->
|
||||||
<div class="col-md-12" style="border: 1px solid; display:none;" id="servicepotaxes">
|
<div class="col-md-12" style="border: 1px solid; display:none;"
|
||||||
|
id="servicepotaxes">
|
||||||
<br>
|
<br>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
<label>Basic Amount (₹)</label>
|
<label>Basic Amount (₹)</label>
|
||||||
<input type="text" name="txtTotBasicAmount" value="" id="txtTotBasicAmount" class="form-control num" readonly="true">
|
<input type="text" name="txtTotBasicAmount" value=""
|
||||||
|
id="txtTotBasicAmount" class="form-control num" readonly="true">
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
<label>CGST (₹)</label>
|
<label>CGST (₹)</label>
|
||||||
<input type="text" name="txtTotCgst" value="" id="txtTotCgst" class="form-control num" readonly="true">
|
<input type="text" name="txtTotCgst" value="" id="txtTotCgst"
|
||||||
|
class="form-control num" readonly="true">
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
<label>SGST (₹)</label>
|
<label>SGST (₹)</label>
|
||||||
<input type="text" name="txtTotSgst" value="" id="txtTotSgst" class="form-control num" readonly="true">
|
<input type="text" name="txtTotSgst" value="" id="txtTotSgst"
|
||||||
|
class="form-control num" readonly="true">
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
<label>IGST (₹)</label>
|
<label>IGST (₹)</label>
|
||||||
<input type="text" name="txtTotIgst" value="" id="txtTotIgst" class="form-control num" readonly="true">
|
<input type="text" name="txtTotIgst" value="" id="txtTotIgst"
|
||||||
|
class="form-control num" readonly="true">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
<label>Other Allowances (₹)</label>
|
<label>Other Allowances (₹)</label>
|
||||||
<input type="text" name="txtTotOtherAllo" value="" id="txtTotOtherAllo" class="form-control num" readonly="true">
|
<input type="text" name="txtTotOtherAllo" value=""
|
||||||
|
id="txtTotOtherAllo" class="form-control num" readonly="true">
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
<label>Total Order Value (₹)</label>
|
<label>Total Order Value (₹)</label>
|
||||||
<input type="text" name="txtTotalOrderValueSummaryService" value="" id="txtTotalOrderValueSummaryService" class="form-control num" readonly="true">
|
<input type="text" name="txtTotalOrderValueSummaryService" value=""
|
||||||
|
id="txtTotalOrderValueSummaryService" class="form-control num"
|
||||||
|
readonly="true">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<label>Description Of Service <span class="badge mandatory">*</span></label>
|
<label>Description Of Service <span
|
||||||
|
class="badge mandatory">*</span></label>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<?php
|
<?php
|
||||||
$data = array('name' => 'emergdescofpo', 'value' => set_value('emergdescofpo'), 'id' => 'emergdescofpo', 'class' => 'form-control', 'rows' => '3', 'cols' => '40');
|
$data = array('name' => 'emergdescofpo', 'value' => set_value('emergdescofpo'), 'id' => 'emergdescofpo', 'class' => 'form-control', 'rows' => '3', 'cols' => '40');
|
||||||
@ -5564,12 +5665,19 @@ if (!empty($INRSYMBOL)) {
|
|||||||
<input type="hidden" name="txtStatus" id="txtStatus">
|
<input type="hidden" name="txtStatus" id="txtStatus">
|
||||||
<input type="hidden" name="txtRowCount" id="txtRowCount">
|
<input type="hidden" name="txtRowCount" id="txtRowCount">
|
||||||
<input type="hidden" name="txtDeletedRow" id="txtDeletedRow">
|
<input type="hidden" name="txtDeletedRow" id="txtDeletedRow">
|
||||||
<input type="hidden" name="SpcialInstruction" id="SpcialInstruction">
|
<input type="hidden" name="SpcialInstruction"
|
||||||
<input type="hidden" name="txtDeliveryAddress" id="txtDeliveryAddress">
|
id="SpcialInstruction">
|
||||||
<input type="hidden" name="txtSpecialservice" id="txtSpecialservice">
|
<input type="hidden" name="txtDeliveryAddress"
|
||||||
|
id="txtDeliveryAddress">
|
||||||
|
<input type="hidden" name="txtSpecialservice"
|
||||||
|
id="txtSpecialservice">
|
||||||
<input type="hidden" name="txtworkstatus" id="txtworkstatus">
|
<input type="hidden" name="txtworkstatus" id="txtworkstatus">
|
||||||
<a class="btn btn-reset Save" id="Cancel" href="http://localhost/ria/EmergencyPO"> <span class="bold">Reset</span></a>
|
<a class="btn btn-reset Save" id="Cancel"
|
||||||
<a class="btn btn-success Submit" id="Submit" onclick="showsubmit()"> <span class="bold">Submit</span></a>
|
href="http://localhost/ria/EmergencyPO"> <span
|
||||||
|
class="bold">Reset</span></a>
|
||||||
|
<a class="btn btn-success Submit" id="Submit"
|
||||||
|
onclick="showsubmit()"> <span
|
||||||
|
class="bold">Submit</span></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row" style="padding:0px;"><br>
|
<div class="row" style="padding:0px;"><br>
|
||||||
@ -5577,9 +5685,17 @@ if (!empty($INRSYMBOL)) {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@ -3383,8 +3383,6 @@ if (isset($AvlimportBudAmt) && !empty($AvlimportBudAmt)) {
|
|||||||
<td align="left">${uom}</td>
|
<td align="left">${uom}</td>
|
||||||
<td align="left">${itemRate}</td>
|
<td align="left">${itemRate}</td>
|
||||||
<td align="left">${BasicAmt}</td>
|
<td align="left">${BasicAmt}</td>
|
||||||
<td align="left">${taxexp}</td>
|
|
||||||
<td align="left">${totalexp}</td>
|
|
||||||
<td align="left">${receivedqty}</td>
|
<td align="left">${receivedqty}</td>
|
||||||
<td align="left">${rejectedqty}</td>
|
<td align="left">${rejectedqty}</td>
|
||||||
<td align="left">${pendingqty}</td>
|
<td align="left">${pendingqty}</td>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user