Gas stock details changes-4 vadivel J 28-11-2024
This commit is contained in:
parent
e26e5290a3
commit
4d706ed970
@ -102,6 +102,7 @@
|
||||
<th>Cost Center Code</th>
|
||||
<th>Cost Center Name</th>
|
||||
<th>Created By</th>
|
||||
<th>Status</th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@ -122,6 +123,8 @@
|
||||
<td><?php echo $record->code ?></td>
|
||||
<td><?php echo $record->CostCenterName ?></td>
|
||||
<td><?php echo $record->FirstName ?></td>
|
||||
<td><?php if ($record->IsActive == 1) {echo"Active";}else{echo "InActive";}?></td>
|
||||
<td><?php if ($record->IsActive == 1) {echo"Active";}else{echo "InActive";}?></td>
|
||||
<td>
|
||||
<?php
|
||||
if ($record->IsActive == 0) {
|
||||
|
||||
@ -129,6 +129,7 @@
|
||||
<th>Department Code</th>
|
||||
<th>Department Name</th>
|
||||
<th>Head Department</th>
|
||||
<th>Status</th>
|
||||
<th>Action</th>
|
||||
<!-- <th>Action</th> -->
|
||||
</tr>
|
||||
@ -153,6 +154,7 @@
|
||||
<td><?php echo $record->DEPCode; ?></td>
|
||||
<td><?php echo $record->DepartmentName ?></td>
|
||||
<td><?php echo $record->HeadDept ?></td>
|
||||
<td><?php if ($record->IsActive == 1) {echo"Active";}else{echo "InActive";}?></td>
|
||||
<td>
|
||||
<?php if ($record->IsActive == 0) { ?>
|
||||
|
||||
|
||||
@ -135,6 +135,7 @@
|
||||
<th>Machine Name</th>
|
||||
<th>Machine Type</th>
|
||||
<th>Energy Type</th>
|
||||
<th>Status</th>
|
||||
<th style="text-align:center !important;">Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@ -155,6 +156,7 @@
|
||||
<td><?php echo $record['machine_name']; ?></td>
|
||||
<td><?php echo $record['machine_type'] ?></td>
|
||||
<td><?php echo $record['energy_type'] ?></td>
|
||||
<td><?php if ( $record['is_active'] == 1) {echo"Active";}else{echo "InActive";}?></td>
|
||||
<td align="center">
|
||||
|
||||
<?php if ($record['is_active'] == 0) { ?>
|
||||
|
||||
@ -104,6 +104,7 @@
|
||||
<th>Opening Stock</th>
|
||||
<th>Material Category</th>
|
||||
<th>HSN Code</th>
|
||||
<th>Status</th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@ -135,6 +136,7 @@
|
||||
<?php } ?>
|
||||
<td ><?php echo $record->Category ?></td>
|
||||
<td ><?php echo $record->HSNCODE ?></td>
|
||||
<td><?php if ($record->IsActive == 1) {echo"Active";}else{echo "InActive";}?></td>
|
||||
<td><?php if ($record->IsActive == 0) { ?>
|
||||
|
||||
<a style="cursor:pointer;" onclick="reActivateMaterial('<?php echo $record->MaterialCode; ?>')"><i class="fa fa-key" style="color:#02a8b5;"></i> </a>
|
||||
|
||||
@ -113,6 +113,7 @@
|
||||
<th>PAN</th>
|
||||
<th>GST Number</th>
|
||||
<th>Payment Terms</th>
|
||||
<th>Status</th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@ -144,6 +145,7 @@
|
||||
<td><?php echo $record->PAN ?></td>
|
||||
<td><?php echo $record->GSTNO ?></td>
|
||||
<td><?php echo $record->PaymentTerms ?></td>
|
||||
<td><?php if ($record->IsActive == 1) {echo"Active";}else{echo "InActive";}?></td>
|
||||
<td><?php if ($record->IsActive == 0) { ?>
|
||||
|
||||
<a style="cursor:pointer;"
|
||||
|
||||
@ -144,6 +144,7 @@
|
||||
<th>Create Date</th>
|
||||
<th>Transporter Name</th>
|
||||
<th>Created By</th>
|
||||
<th>Status</th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@ -163,6 +164,7 @@
|
||||
<td><?php echo $date; ?></td>
|
||||
<td><?php echo $record->name ?></td>
|
||||
<td><?php echo $record->FirstName ?></td>
|
||||
<td><?php if ($record->isactive == 1) {echo"Active";}else{echo "InActive";}?></td>
|
||||
<td>
|
||||
<?php if ($record->isactive == 0) { ?>
|
||||
<a onclick="confirmReActivate(event)" style="cursor:pointer;"
|
||||
|
||||
@ -117,6 +117,7 @@
|
||||
<th>Designation</th>
|
||||
<th>Department</th>
|
||||
<th>Role Name</th>
|
||||
<th>Status</th>
|
||||
<th>Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@ -147,6 +148,7 @@
|
||||
<td><?php echo $record->Designation ?></td>
|
||||
<td><?php echo $record->DepartmentName ?></td>
|
||||
<td><?php echo $record->role ?></td>
|
||||
<td><?php if($record->isDeleted == 0) {echo"Active";}else{echo"InActive";} ?></td>
|
||||
<td>
|
||||
<?php if ($record->isDeleted == 1) { ?>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user