This commit is contained in:
Raju Shrestha
2024-08-08 18:41:24 +05:45
parent 114e7aa4c2
commit e47ff3321d
6 changed files with 14 additions and 12 deletions

View File

@ -125,7 +125,7 @@
<th width="10%" class="text-right"><?php myLang('Qty'); ?></th>
<th width="10%" class="text-right"><?php myLang('Rate'); ?></th>
<th width="10%" class="text-right"><?php myLang('Total'); ?></th>
<td width="10%" class="text-bold"><?php myLang("Action"); ?></th>
<td width="7%" class="col-1 text-bold text-center"><?php myLang("Action"); ?></th>
</tr>
</thead>
<tbody>
@ -142,7 +142,7 @@
<td class="text-right"><?php echo $TableRow->Stock->qty; ?></td>
<td class="text-right"><?php echo $TableRow->Stock->rate; ?></td>
<td class="text-right"><?php echo $TableRow->Stock->amount; ?></td>
<td>
<td class="text-center">
<?php showEditButton($this->uri->segment(1) . "/" . $this->uri->segment(2) . "/edit/$id"); ?>
<?php showDeleteButton($id); ?>
</td>