Emergency PO changes-1 vadivel J 04-12--2024
This commit is contained in:
parent
bef33dc5cd
commit
3d8bb9e676
@ -2613,7 +2613,7 @@ if (!empty($getlogpodtl)) {
|
||||
<input type="hidden" id="MaterialRcvdDate<?= $row ?>"
|
||||
value="<?= $gd->MaterialRcvdDate ?>">
|
||||
|
||||
<td><span onclick="openmodel(<?= $row ?>);"><i
|
||||
<td style="cursor:pointer;"><span onclick="openmodel(<?= $row ?>);"><i
|
||||
class="ri-pencil-fill"></i></span>
|
||||
|
||||
</td>
|
||||
@ -4061,19 +4061,19 @@ if (!empty($getlogpodtl)) {
|
||||
<div class="modal-body p-4">
|
||||
|
||||
<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"
|
||||
value="<?php echo isset($getdata[0]->DeliveryChellanOrInvoiceNo) ? $getdata[0]->DeliveryChellanOrInvoiceNo : null ?>"
|
||||
onkeypress="return isNumberKey(event)">
|
||||
</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
|
||||
$data = array('name' => 'InvDate', 'value' => set_value('InvDate', $date), 'id' => 'InvDate', 'class' => 'form-control num', 'required' => 'true', 'onkeypress' => '');
|
||||
echo form_input($data);
|
||||
?>
|
||||
</div>
|
||||
<div class="col-md-4 pad"> <strong>Material Received Date</strong>
|
||||
<div class="col-md-4 pad"> <label>Material Received Date</label>
|
||||
<?php
|
||||
$data = array('name' => 'MaterialRcvdDate', 'value' => set_value('MaterialRcvdDate', $mrcdate), 'id' => 'MaterialRcvdDate', 'class' => 'form-control num', 'required' => 'true', 'onkeypress' => '');
|
||||
echo form_input($data);
|
||||
@ -4084,24 +4084,28 @@ if (!empty($getlogpodtl)) {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
|
||||
<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"
|
||||
value="<?php echo isset($getdata[0]->VehicleNo) ? $getdata[0]->VehicleNo : null; ?>">
|
||||
</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"
|
||||
value="<?php echo isset($getdata[0]->CourierNo) ? $getdata[0]->CourierNo : null; ?>">
|
||||
</div>
|
||||
<div class="form-group col-md-4" id="QualityChecked"><strong>Is Quality Check Required</strong>
|
||||
<div class="radio">
|
||||
<label><input type="radio" name="Quality" checked="checked" value='0'
|
||||
id="Quality">Yes</label>
|
||||
</div>
|
||||
<div class="radio">
|
||||
<label><input type="radio" name="Quality" id="Quality" value='1'>No</label>
|
||||
</div>
|
||||
<div class="form-group col-md-4" id="QualityChecked">
|
||||
<label>Is Quality Check Required</label>
|
||||
<br>
|
||||
<input type="radio" name="Quality" checked="checked" value='0'
|
||||
id="Quality"> <label>Yes</label>
|
||||
|
||||
|
||||
<input type="radio" name="Quality" id="Quality" value='1'>
|
||||
<label>No</label>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user