Skip to content

Commit

Permalink
Minor textual changes on QC forms
Browse files Browse the repository at this point in the history
  • Loading branch information
amitdugar committed Aug 26, 2019
1 parent 405aa3d commit 1812e0e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions module/Application/view/application/quality-check/add.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ $lineOutComeColor2 = "#000000";
<input type="text" class="form-control isRequired" id="qcSampleId" name="qcSampleId" placeholder="Enter the QC Sample ID" title="Please enter the QC Sample ID">
</div>

<label class="col-sm-2 col-form-label" for="">Qc Test Date <span class="mandatory">*</span></label>
<label class="col-sm-2 col-form-label" for="">QC Test Date <span class="mandatory">*</span></label>
<div class="col-sm-4">
<input type="text" class="js-datepicker form-control isRequired" id="qcTestDate" name="qcTestDate" data-week-start="1" data-autoclose="true" data-today-highlight="true" data-date-format="dd-M-yyyy" value="" placeholder="Enter the QC test date" title="Please enter the QC test date" readonly="readonly">
<input type="text" class="js-datepicker form-control isRequired" id="qcTestDate" name="qcTestDate" data-week-start="1" data-autoclose="true" data-today-highlight="true" data-date-format="dd-M-yyyy" value="" placeholder="Enter the QC Test Date" title="Please enter the QC Test Date" readonly="readonly">
</div>
</div>
<br>
Expand Down
4 changes: 2 additions & 2 deletions module/Application/view/application/quality-check/edit.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ $lineOutComeColor2 = "#000000";
<div class="col-sm-4">
<input type="text" value="<?php echo $result['qc_sample_id']; ?>" class="form-control isRequired" id="qcSampleId" name="qcSampleId" placeholder="Enter the QC Sample ID" title="Please enter the QC Sample ID">
</div>
<label class="col-sm-2 col-form-label" for="">Qc Test Date<span class="mandatory">*</span></label>
<label class="col-sm-2 col-form-label" for="">QC Test Date<span class="mandatory">*</span></label>
<div class="col-sm-4">
<input type="text" value="<?php echo $qcTestDateFormat; ?>" class="js-datepicker form-control isRequired" id="qcTestDate" name="qcTestDate" data-week-start="1" data-autoclose="true" data-today-highlight="true" data-date-format="dd-M-yyyy" value="" placeholder="Enter the QC test date" title="Please enter the QC test date" readonly="readonly">
<input type="text" value="<?php echo $qcTestDateFormat; ?>" class="js-datepicker form-control isRequired" id="qcTestDate" name="qcTestDate" data-week-start="1" data-autoclose="true" data-today-highlight="true" data-date-format="dd-M-yyyy" value="" placeholder="Enter the QC Test Date" title="Please enter the QC Test Date" readonly="readonly">
</div>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ if($result['term_outcome']==''){
</div>
<div class="col-md-6">
<div class="form-group">
<label for="company" class="col-lg-4 control-label">Qc Test Date</label>
<label for="company" class="col-lg-4 control-label">QC Test Date</label>
<label for="company" class="col-lg-1 control-label">: </label>
<span style="text-align: left;" for="company" class="col-lg-6 control-label">
<?php echo ($result->qc_test_date!='' && $result->qc_test_date!='0000:00:00')?$common->humanDateFormat($result->qc_test_date):''; ?>
Expand Down

0 comments on commit 1812e0e

Please sign in to comment.