Emergency PO changes-1 vadivel J 04-12--2024

This commit is contained in:
vadivelJ96 2024-12-04 08:42:27 +05:30
parent bef33dc5cd
commit 3d8bb9e676

View File

@ -2613,7 +2613,7 @@ if (!empty($getlogpodtl)) {
<input type="hidden" id="MaterialRcvdDate<?= $row ?>" <input type="hidden" id="MaterialRcvdDate<?= $row ?>"
value="<?= $gd->MaterialRcvdDate ?>"> value="<?= $gd->MaterialRcvdDate ?>">
<td><span onclick="openmodel(<?= $row ?>);"><i <td style="cursor:pointer;"><span onclick="openmodel(<?= $row ?>);"><i
class="ri-pencil-fill"></i></span> class="ri-pencil-fill"></i></span>
</td> </td>
@ -4061,19 +4061,19 @@ if (!empty($getlogpodtl)) {
<div class="modal-body p-4"> <div class="modal-body p-4">
<div class="form-row"> <div class="form-row">
<div class="col-md-4 pad"><strong>Delivery Challan /Inv No</strong> <div class="col-md-4 pad"><label>Delivery Challan /Inv No</label>
<input type="text" name="ChallanInvNo" id="ChallanInvNo" maxlength="12" class="form-control" <input type="text" name="ChallanInvNo" id="ChallanInvNo" maxlength="12" class="form-control"
value="<?php echo isset($getdata[0]->DeliveryChellanOrInvoiceNo) ? $getdata[0]->DeliveryChellanOrInvoiceNo : null ?>" value="<?php echo isset($getdata[0]->DeliveryChellanOrInvoiceNo) ? $getdata[0]->DeliveryChellanOrInvoiceNo : null ?>"
onkeypress="return isNumberKey(event)"> onkeypress="return isNumberKey(event)">
</div> </div>
<div class="col-md-4 pad"><strong>Delivery Challan /Inv Date</strong> <div class="col-md-4 pad"><label>Delivery Challan /Inv Date</label>
<?php <?php
$data = array('name' => 'InvDate', 'value' => set_value('InvDate', $date), 'id' => 'InvDate', 'class' => 'form-control num', 'required' => 'true', 'onkeypress' => ''); $data = array('name' => 'InvDate', 'value' => set_value('InvDate', $date), 'id' => 'InvDate', 'class' => 'form-control num', 'required' => 'true', 'onkeypress' => '');
echo form_input($data); echo form_input($data);
?> ?>
</div> </div>
<div class="col-md-4 pad"> <strong>Material Received Date</strong> <div class="col-md-4 pad"> <label>Material Received Date</label>
<?php <?php
$data = array('name' => 'MaterialRcvdDate', 'value' => set_value('MaterialRcvdDate', $mrcdate), 'id' => 'MaterialRcvdDate', 'class' => 'form-control num', 'required' => 'true', 'onkeypress' => ''); $data = array('name' => 'MaterialRcvdDate', 'value' => set_value('MaterialRcvdDate', $mrcdate), 'id' => 'MaterialRcvdDate', 'class' => 'form-control num', 'required' => 'true', 'onkeypress' => '');
echo form_input($data); echo form_input($data);
@ -4084,24 +4084,28 @@ if (!empty($getlogpodtl)) {
</div> </div>
</div> </div>
<br>
<div class="form-row"> <div class="form-row">
<div class="col-md-4 pad"><strong>Vehicle No</strong> <div class="col-md-4 pad"><label>Vehicle No</label>
<input type="text" name="VehicleNo" id="VehicleNo" maxlength="13" class="form-control" <input type="text" name="VehicleNo" id="VehicleNo" maxlength="13" class="form-control"
value="<?php echo isset($getdata[0]->VehicleNo) ? $getdata[0]->VehicleNo : null; ?>"> value="<?php echo isset($getdata[0]->VehicleNo) ? $getdata[0]->VehicleNo : null; ?>">
</div> </div>
<div class="col-md-4 pad"><strong>Courier No</strong> <div class="col-md-4 pad"><label>Courier No</label>
<input type="text" name="CourierNo" id="CourierNo" maxlength="12" class="form-control" <input type="text" name="CourierNo" id="CourierNo" maxlength="12" class="form-control"
value="<?php echo isset($getdata[0]->CourierNo) ? $getdata[0]->CourierNo : null; ?>"> value="<?php echo isset($getdata[0]->CourierNo) ? $getdata[0]->CourierNo : null; ?>">
</div> </div>
<div class="form-group col-md-4" id="QualityChecked"><strong>Is Quality Check Required</strong> <div class="form-group col-md-4" id="QualityChecked">
<div class="radio"> <label>Is Quality Check Required</label>
<label><input type="radio" name="Quality" checked="checked" value='0' <br>
id="Quality">Yes</label> <input type="radio" name="Quality" checked="checked" value='0'
</div> id="Quality">&nbsp;<label>Yes</label>
<div class="radio"> &nbsp; &nbsp; &nbsp;
<label><input type="radio" name="Quality" id="Quality" value='1'>No</label>
</div> <input type="radio" name="Quality" id="Quality" value='1'>
<label>No</label>
</div> </div>
</div> </div>
</div> </div>