Merge branch 'new_theme' of bitbucket.org:venbainformationtechnology/ria into new_theme

This commit is contained in:
vadivel J 2024-09-26 11:39:42 +05:30
commit e7bb513f03
4 changed files with 360 additions and 387 deletions

View File

@ -341,6 +341,7 @@ class Servicepurchaseorder extends BaseController
//update service po //update service po
function UpdateServicePurchaseOrder() function UpdateServicePurchaseOrder()
{ {
// print_r($this->request->getPost());die;
$PONO = $this->request->getPost('txtPONO'); $PONO = $this->request->getPost('txtPONO');
$newsup = $this->request->getPost('newsup'); $newsup = $this->request->getPost('newsup');
// $newSupId = split("[ - ]+", $newsup); // $newSupId = split("[ - ]+", $newsup);
@ -408,22 +409,29 @@ class Servicepurchaseorder extends BaseController
$POList['ReleasedOn'] = get_current_date_time(); $POList['ReleasedOn'] = get_current_date_time();
$POList['ReleasedBy'] = $this->session->get('userId'); $POList['ReleasedBy'] = $this->session->get('userId');
} }
$file = $this->request->getFile('POFile'); $file = $this->request->getFile('POFile');
if ($file !== null) {
$requestfilename = $file->getName(); $requestfilename = $file->getName();
if (!empty($requestfilename)) { if (!empty($requestfilename)) {
if ($file && $file->isValid() && !$file->hasMoved()) { if ($file->isValid() && !$file->hasMoved()) {
$path = ROOTPATH . 'public/uploads/POfiles/'; $path = ROOTPATH . 'public/uploads/POfiles/';
if (!is_dir($path)) { if (!is_dir($path)) {
mkdir($path, 0777, true); mkdir($path, 0777, true);
} }
if (!empty($this->purchaseorder_model->isFileExists($requestfilename))) { if (!empty($this->purchaseorder_model->isFileExists($requestfilename))) {
log_message('error', 'File already exists in the database' . $requestfilename); log_message('error', 'File already exists in the database: ' . $requestfilename);
} else { } else {
$file->move($path, $requestfilename); $file->move($path, $requestfilename);
$POList['POFile'] = $requestfilename; $POList['POFile'] = $requestfilename;
} }
} }
} }
} else {
log_message('error', 'No file was uploaded');
}
$POMaster = $this->purchaseorder_model->updatePOMaster($PONO, $POList); $POMaster = $this->purchaseorder_model->updatePOMaster($PONO, $POList);

View File

@ -2995,14 +2995,14 @@ if (!empty($getlogpodtl)) {
var txtTotalOrderValueSummary = $('#txtTotBasicAmount').val(); var txtTotalOrderValueSummary = $('#txtTotBasicAmount').val();
if (validate()) { if (validate()) {
if (document.getElementById('ServiceTable').rows.length < 2) { if (document.getElementById('ServiceTable').rows.length < 2)
{
alert('Please Select Line item to Create PO'); alert('Please Select Line item to Create PO');
$('#Deliverydt').focus(); $('#Deliverydt').focus();
return false; return false;
} }
// else if(parseInt(AvlBudAmt) < parseInt(txtTotalOrderValueSummary)) { // else if(parseInt(AvlBudAmt) < parseInt(txtTotalOrderValueSummary)) {
// alert('Total Order Amount is exceeding the Budget Limit.Please adjust the product value.'); // alert('Total Order Amount is exceeding the Budget Limit.Please adjust the product value.');
// return false; // return false;
// } // }
else if ($('#Otherpayment').val() == '' && $('#PaymentTerms').val() == 'PT08') { else if ($('#Otherpayment').val() == '' && $('#PaymentTerms').val() == 'PT08') {
@ -3025,7 +3025,16 @@ if (!empty($getlogpodtl)) {
processData: false, processData: false,
contentType: false, contentType: false,
success: function(data) { success: function(data) {
// console.log(data);
// var newWindow = window.open("", "_blank", "toolbar=yes,scrollbars=yes,resizable=yes,width=1024,height=768");
// newWindow.document.write("<html><head><title>Response</title></head><body>");
// newWindow.document.write("<pre>" + data + "</pre>"); // Using <pre> to preserve formatting
// newWindow.document.write("</body></html>");
// newWindow.document.close();
// newWindow.moveTo(0, 0);
// newWindow.resizeTo(screen.width, screen.height);
if (data) { if (data) {
$('#loader').hide(); $('#loader').hide();
alert(data); alert(data);

View File

@ -723,7 +723,7 @@ if (!empty($RequistionDetails)) {
</div> </div>
</div> </div>
<div class="form-row"> <div class="form-row">
<div class="form-group col-md-2"> <div class="form-group col-md-3">
<label>Item Code<span class="text-danger">*</span></label> <label>Item Code<span class="text-danger">*</span></label>
<!--In this item code the value should come from DB , so it getting error , so i am disabling this div , once get the data from DB uncommand this div--> <!--In this item code the value should come from DB , so it getting error , so i am disabling this div , once get the data from DB uncommand this div-->
@ -741,7 +741,7 @@ if (!empty($RequistionDetails)) {
</div> </div>
</div> </div>
<div class="form-group col-md-2"> <div class="form-group col-md-3">
<label>Item Name</label> <label>Item Name</label>
<div> <div>
<?php <?php
@ -750,7 +750,7 @@ if (!empty($RequistionDetails)) {
?> ?>
</div> </div>
</div> </div>
<div class="form-group col-md-1"> <div class="form-group col-md-3">
<label>UOM</label> <label>UOM</label>
<div> <div>
<?php <?php
@ -759,7 +759,7 @@ if (!empty($RequistionDetails)) {
?> ?>
</div> </div>
</div> </div>
<div class="form-group col-md-2"> <div class="form-group col-md-3">
<label>Quantity<span class="text-danger">*</span></label> <label>Quantity<span class="text-danger">*</span></label>
<div> <div>
<?php <?php
@ -769,7 +769,12 @@ if (!empty($RequistionDetails)) {
?> ?>
</div> </div>
</div> </div>
<div class="form-group col-md-2" style="padding-left: 0px;"> </div>
<div class="form-row">
<div class="form-group col-md-3" style="padding-left: 0px;">
</div>
<div class="form-group col-md-3" style="padding-left: 0px;">
<!-- <label>Rate </label> --> <!-- <label>Rate </label> -->
@ -781,12 +786,12 @@ if (!empty($RequistionDetails)) {
?> ?>
</div> </div>
</div> </div>
<div class="form-group col-md-1"> <div class="form-group col-md-3">
<label>Per</label> <?php <label>Per</label> <?php
$data = array('name' => 'EditAmendPer', 'value' => set_value('EditAmendPer'), 'id' => 'EditAmendPer', 'class' => 'form-control'); $data = array('name' => 'EditAmendPer', 'value' => set_value('EditAmendPer'), 'id' => 'EditAmendPer', 'class' => 'form-control');
echo form_input($data); ?> echo form_input($data); ?>
</div> </div>
<div class="form-group col-md-2" style="padding: 0px;"> <div class="form-group col-md-3" style="padding: 0px;">
<!-- <label><?php echo "Basic Value In"; ?></label>--> <!-- <label><?php echo "Basic Value In"; ?></label>-->
<label id="label3"><?php echo "Basic Value In $Currencycode ($Value)"; ?></label> <label id="label3"><?php echo "Basic Value In $Currencycode ($Value)"; ?></label>
<div> <div>
@ -800,6 +805,8 @@ if (!empty($RequistionDetails)) {
</div> </div>
</div> </div>
<div class="form-row"> <div class="form-row">
<div class="form-group col-md-3">
</div>
<div class="form-group col-md-3"> <div class="form-group col-md-3">
<!-- Basic Price in US $ per Ton : --> <!-- Basic Price in US $ per Ton : -->
@ -813,9 +820,7 @@ if (!empty($RequistionDetails)) {
</div> </div>
<div class="form-group col-md-3"> <div class="form-group col-md-3">
<p><b><?php echo "Exchange Rate ($Currencycode ($Value))" ?></b></p>
<?php echo "Exchange Rate ($Currencycode ($Value))" ?>
<div> <div>
<?php <?php
$data = array('name' => 'EditExchangeRt', 'value' => set_value('EditExchangeRt'), 'id' => 'EditExchangeRt', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'readonly' => 'true'); $data = array('name' => 'EditExchangeRt', 'value' => set_value('EditExchangeRt'), 'id' => 'EditExchangeRt', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'readonly' => 'true');
@ -828,7 +833,7 @@ if (!empty($RequistionDetails)) {
<!-- Basic value in INR : --> <!-- Basic value in INR : -->
<label id="labelEditBasicINR"><?php echo "Basic value in ($INR) :"; ?></label> <p id="labelEditBasicINR"><b><?php echo "Basic value in ($INR) :"; ?></b></p>
<div> <div>
<?php <?php
@ -842,8 +847,8 @@ if (!empty($RequistionDetails)) {
</div>--> </div>-->
</div> </div>
<br /> <br />
<div style="padding:0px;"> <div class="form-row" style="border:1px solid black;">
<div class="form-group col-md-6 p-2 mt-1" style="padding:0px;">
<div class="form-row"> <div class="form-row">
<div class="form-group col-md-4"> <div class="form-group col-md-4">
<!-- Basic Price: --> <!-- Basic Price: -->
@ -976,6 +981,8 @@ if (!empty($RequistionDetails)) {
</div> </div>
</div> </div>
</div> </div>
</div>
<div class="form-group col-md-6 p-2 mt-1" style="padding:0px;">
<div class="form-row"> <div class="form-row">
<div class="form-group col-md-4"> <div class="form-group col-md-4">
<!-- Additional Excise duty : (g) --> <!-- Additional Excise duty : (g) -->
@ -1081,19 +1088,18 @@ if (!empty($RequistionDetails)) {
<hr /> <hr />
<div class="form-row"> <div class="form-row">
<div class="form-group col-md-4"> <div class="form-group col-md-6">
Duty Impact <label> Duty Impact</label>
</div>
<div class="form-group col-md-4">
<div> <div>
<?php <?php
$data = array('name' => 'EditDutyImpact', 'value' => set_value('EditDutyImpact'), 'id' => 'EditDutyImpact', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'readonly' => 'true'); $data = array('name' => 'EditDutyImpact', 'value' => set_value('EditDutyImpact'), 'id' => 'EditDutyImpact', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'readonly' => 'true');
echo form_input($data); echo form_input($data);
?> ?>
</div> </div>
</div> </div>
<div class="form-group col-md-4"> <div class="form-group col-md-6">
<span>Quantity</span> <label>Quantity</label>
<div> <div>
<?php <?php
$data = array('name' => 'EditPurQuantity', 'value' => set_value('EditPurQuantity'), 'id' => 'EditPurQuantity', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'onchange' => 'EditCalculateCtable()'); $data = array('name' => 'EditPurQuantity', 'value' => set_value('EditPurQuantity'), 'id' => 'EditPurQuantity', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'onchange' => 'EditCalculateCtable()');
@ -1105,11 +1111,9 @@ if (!empty($RequistionDetails)) {
</div> </div>
<div class="form-row"> <div class="form-row">
<div class="form-group col-md-4"> <div class="form-group col-md-6">
<!-- Custom Duty Expenses --> <!-- Custom Duty Expenses -->
<label><?php echo "Custom Duty($INR) /UOM"; ?></label> <label><?php echo "Custom Duty($INR) /UOM"; ?></label>
</div>
<div class="form-group col-md-4">
<div> <div>
<?php <?php
$data = array('name' => 'EditCustomDutyExpenses ', 'value' => set_value('EditCustomDutyExpenses'), 'id' => 'EditCustomDutyExpenses', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'readonly' => 'true'); $data = array('name' => 'EditCustomDutyExpenses ', 'value' => set_value('EditCustomDutyExpenses'), 'id' => 'EditCustomDutyExpenses', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'readonly' => 'true');
@ -1117,14 +1121,11 @@ if (!empty($RequistionDetails)) {
?> ?>
</div> </div>
</div> </div>
</div> </div>
<div class="form-row"> <div class="form-row">
<div class="form-group col-md-4"> <div class="form-group col-md-6">
<!-- RMC Including Customers --> <!-- RMC Including Customers -->
<label><?php echo "Clearing Charges ($INR)"; ?></label> <label><?php echo "Clearing Charges ($INR)"; ?></label>
</div>
<div class="form-group col-md-4">
<div> <div>
<?php <?php
$data = array('name' => 'EditClearingCharges', 'value' => set_value('EditClearingCharges'), 'id' => 'EditClearingCharges', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);'); $data = array('name' => 'EditClearingCharges', 'value' => set_value('EditClearingCharges'), 'id' => 'EditClearingCharges', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);');
@ -1132,13 +1133,9 @@ if (!empty($RequistionDetails)) {
?> ?>
</div> </div>
</div> </div>
</div> <div class="form-group col-md-6">
<div class="form-row">
<div class="form-group col-md-4">
<!-- RMC Including Customers --> <!-- RMC Including Customers -->
<label><?php echo "Nett per UOM($INR)"; ?></label> <label><?php echo "Nett per UOM($INR)"; ?></label>
</div>
<div class="form-group col-md-4">
<div> <div>
<?php <?php
$data = array('name' => 'EditNett', 'value' => set_value('EditNett'), 'id' => 'EditNett', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'readonly' => 'true'); $data = array('name' => 'EditNett', 'value' => set_value('EditNett'), 'id' => 'EditNett', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'readonly' => 'true');
@ -1146,11 +1143,8 @@ if (!empty($RequistionDetails)) {
?> ?>
</div> </div>
</div> </div>
</div>
<div class="form-row">
<div class="form-group col-md-4" style="display:none;"> <div class="form-group col-md-4" style="display:none;">
<!-- Total Amount: --> <!-- Total Amount: -->
@ -1165,12 +1159,13 @@ if (!empty($RequistionDetails)) {
</div> </div>
</div> </div>
</div>
</div> </div>
<div class="form-row"> <div class="form-row">
<div class="form-group col-md-12"> <div class="form-group col-md-12">
<label>Import Description :</label> <label style="margin-top:10px;">Import Description :</label>
<?php <?php
$data = array('name' => 'edittxtInstruction', 'value' => set_value('edittxtInstruction'), 'id' => 'edittxtInstruction', 'class' => 'form-control', 'rows' => '10', 'cols' => '40'); $data = array('name' => 'edittxtInstruction', 'value' => set_value('edittxtInstruction'), 'id' => 'edittxtInstruction', 'class' => 'form-control', 'rows' => '10', 'cols' => '40');
echo form_textarea($data); echo form_textarea($data);
@ -1180,7 +1175,7 @@ if (!empty($RequistionDetails)) {
</div> </div>
<div class="modal-footer"> <div class="modal-footer">
<a class="btn btn-success" data-dismiss="modal" value="Cancel">Cancel</a> <a class="btn btn-success" data-dismiss="modal" value="Cancel" style="margin-right:15px">Cancel</a>
<a class="btn btn-success font EditImport" ID="EditImport"> &nbsp;&nbsp;<span class="bold">Edit Import</span></a> <a class="btn btn-success font EditImport" ID="EditImport"> &nbsp;&nbsp;<span class="bold">Edit Import</span></a>
<!--<a class="btn btn-success font AddService" ID="AddService" ><i class="fa fa-plus"></i>&nbsp;&nbsp;<span class="bold">Add Service</span></a>--> <!--<a class="btn btn-success font AddService" ID="AddService" ><i class="fa fa-plus"></i>&nbsp;&nbsp;<span class="bold">Add Service</span></a>-->
</div> </div>

View File

@ -1758,10 +1758,8 @@ if (!empty($getlogpodtl)) {
<hr> <hr>
<div class="form-row mt-3"> <div class="form-row mt-3">
<div class="form-group col-md-4"> <div class="form-group col-md-6">
<label>Duty Impact</label> <label>Duty Impact</label>
</div>
<div class="form-group col-md-4">
<div> <div>
<?php <?php
$data = array('name' => 'DutyImpact', 'value' => set_value('DutyImpact'), 'id' => 'DutyImpact', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'readonly' => 'true'); $data = array('name' => 'DutyImpact', 'value' => set_value('DutyImpact'), 'id' => 'DutyImpact', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'readonly' => 'true');
@ -1769,7 +1767,7 @@ if (!empty($getlogpodtl)) {
?> ?>
</div> </div>
</div> </div>
<div class="form-group col-md-4" style="margin-top: -4.0%"> <div class="form-group col-md-6">
<label>Quantity</label> <label>Quantity</label>
<div> <div>
<?php <?php
@ -1778,15 +1776,11 @@ if (!empty($getlogpodtl)) {
?> ?>
</div> </div>
</div> </div>
</div> </div>
<div class="form-row"> <div class="form-row">
<div class="form-group col-md-6">
<div class="form-group col-md-4">
<!-- Custom Duty Expenses --> <!-- Custom Duty Expenses -->
<label><?php echo "Custom Duty Expenses($INR)/UOM"; ?></label> <label><?php echo "Custom Duty Expenses($INR)/UOM"; ?></label>
</div>
<div class="form-group col-md-4">
<div> <div>
<?php <?php
$data = array('name' => 'CustomDutyExpenses ', 'value' => set_value('CustomDutyExpenses'), 'id' => 'CustomDutyExpenses', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'readonly' => 'true'); $data = array('name' => 'CustomDutyExpenses ', 'value' => set_value('CustomDutyExpenses'), 'id' => 'CustomDutyExpenses', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'readonly' => 'true');
@ -1797,11 +1791,9 @@ if (!empty($getlogpodtl)) {
</div> </div>
<div class="form-row"> <div class="form-row">
<div class="form-group col-md-4"> <div class="form-group col-md-6">
<!-- RMC Including Customers --> <!-- RMC Including Customers -->
<label><?php echo "Clearing Charges($INR)"; ?></label> <label><?php echo "Clearing Charges($INR)"; ?></label>
</div>
<div class="form-group col-md-4">
<div> <div>
<?php <?php
$data = array('name' => 'ClearingCharges', 'value' => set_value('ClearingCharges'), 'id' => 'ClearingCharges', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'onchange' => 'CalculateCtable()'); $data = array('name' => 'ClearingCharges', 'value' => set_value('ClearingCharges'), 'id' => 'ClearingCharges', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'onchange' => 'CalculateCtable()');
@ -1809,12 +1801,7 @@ if (!empty($getlogpodtl)) {
?> ?>
</div> </div>
</div> </div>
<div class="form-group col-md-6">
<div class="form-group col-md-4" style="margin-top: -4.0%">
<!-- RMC Including Customers --> <!-- RMC Including Customers -->
<label> <label>
<?php echo "Nett per UOM($INR)"; ?> <?php echo "Nett per UOM($INR)"; ?>
@ -2090,7 +2077,7 @@ if (!empty($getlogpodtl)) {
<div class="form-row" style="border:1px solid black;"> <div class="form-row" style="border:1px solid black;">
<br /> <br />
<div class="form-group col-md-6 p-2 mt-1" style="padding:0px;"> <div class="form-group col-md-6 p-2 mt-1" style="padding:0px;">
<div class="form-group col-md-12"> <div class="form-row">
<div class="form-group col-md-4"> <div class="form-group col-md-4">
<!-- Basic Price: --> <!-- Basic Price: -->
<label><?php echo "Basic Price ($INR)"; ?></label> <label><?php echo "Basic Price ($INR)"; ?></label>
@ -2349,10 +2336,8 @@ if (!empty($getlogpodtl)) {
<hr /> <hr />
<div class="form-row"> <div class="form-row">
<div class="form-group col-md-4"> <div class="form-group col-md-6">
<label>Duty Impact</label> <label>Duty Impact</label>
</div>
<div class="form-group col-md-4">
<div> <div>
<?php <?php
$data = array('name' => 'EditDutyImpact', 'value' => set_value('EditDutyImpact'), 'id' => 'EditDutyImpact', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'readonly' => 'true'); $data = array('name' => 'EditDutyImpact', 'value' => set_value('EditDutyImpact'), 'id' => 'EditDutyImpact', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'readonly' => 'true');
@ -2360,7 +2345,7 @@ if (!empty($getlogpodtl)) {
?> ?>
</div> </div>
</div> </div>
<div class="form-group col-md-4" style="margin-top: -4.8%"> <div class="form-group col-md-6">
<span>Quantity</span> <span>Quantity</span>
<div> <div>
<?php <?php
@ -2369,15 +2354,11 @@ if (!empty($getlogpodtl)) {
?> ?>
</div> </div>
</div> </div>
</div> </div>
<div class="form-row"> <div class="form-row">
<div class="form-group col-md-6">
<div class="form-group col-md-4">
<!-- Custom Duty Expenses --> <!-- Custom Duty Expenses -->
<label><?php echo "Custom Duty Expenses($INR) /UOM"; ?></label> <label><?php echo "Custom Duty Expenses($INR) /UOM"; ?></label>
</div>
<div class="form-group col-md-4">
<div> <div>
<?php <?php
$data = array('name' => 'EditCustomDutyExpenses ', 'value' => set_value('EditCustomDutyExpenses'), 'id' => 'EditCustomDutyExpenses', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'readonly' => 'true'); $data = array('name' => 'EditCustomDutyExpenses ', 'value' => set_value('EditCustomDutyExpenses'), 'id' => 'EditCustomDutyExpenses', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'readonly' => 'true');
@ -2388,11 +2369,9 @@ if (!empty($getlogpodtl)) {
</div> </div>
<div class="form-row"> <div class="form-row">
<div class="form-group col-md-4"> <div class="form-group col-md-6">
<!-- RMC Including Customers --> <!-- RMC Including Customers -->
<label><?php echo "Clearing Charges ($INR)" ?></label> <label><?php echo "Clearing Charges ($INR)" ?></label>
</div>
<div class="form-group col-md-4">
<div> <div>
<?php <?php
$data = array('name' => 'EditClearingCharges', 'value' => set_value('EditClearingCharges'), 'id' => 'EditClearingCharges', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);'); $data = array('name' => 'EditClearingCharges', 'value' => set_value('EditClearingCharges'), 'id' => 'EditClearingCharges', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);');
@ -2400,16 +2379,9 @@ if (!empty($getlogpodtl)) {
?> ?>
</div> </div>
</div> </div>
<div class="form-group col-md-6">
<div class="form-group col-md-4">
<!-- RMC Including Customers --> <!-- RMC Including Customers -->
<label><?php echo "Nett per UOM($INR)"; ?></label> <label><?php echo "Nett per UOM($INR)"; ?></label>
</div>
<div class="form-group col-md-4">
<div> <div>
<?php <?php
$data = array('name' => 'EditNett', 'value' => set_value('EditNett'), 'id' => 'EditNett', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'readonly' => 'true'); $data = array('name' => 'EditNett', 'value' => set_value('EditNett'), 'id' => 'EditNett', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'readonly' => 'true');
@ -2418,17 +2390,9 @@ if (!empty($getlogpodtl)) {
</div> </div>
</div> </div>
<div class="form-group col-md-6" style="display:none;">
<div class="form-group col-md-4" style="display:none;">
<!-- Total Amount: --> <!-- Total Amount: -->
<label id=labelEditTotalAmount>Total Amount</label> <label id=labelEditTotalAmount>Total Amount</label>
</div>
<div class="form-group col-md-4">
<div style="display:none;"> <div style="display:none;">
<?php <?php
$data = array('name' => 'EditTotalExp', 'value' => set_value('EditTotalExp'), 'id' => 'EditTotalExp', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'readonly' => 'true'); $data = array('name' => 'EditTotalExp', 'value' => set_value('EditTotalExp'), 'id' => 'EditTotalExp', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);', 'readonly' => 'true');
@ -2436,17 +2400,14 @@ if (!empty($getlogpodtl)) {
?> ?>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
<div class="form-row"> <div class="form-row">
<div class="form-group col-md-12"> <div class="form-group col-md-12">
<label>Import Description :</label> <label style="margin-top:10px;">Import Description :</label>
<?php <?php
$data = array('name' => 'edittxtInstruction', 'value' => set_value('edittxtInstruction'), 'id' => 'edittxtInstruction', 'class' => 'form-control', 'rows' => '10', 'cols' => '40'); $data = array('name' => 'edittxtInstruction', 'value' => set_value('edittxtInstruction'), 'id' => 'edittxtInstruction', 'class' => 'form-control', 'rows' => '10', 'cols' => '40');
echo form_textarea($data); echo form_textarea($data);