Fix: Right aligned numbers in issue
This commit is contained in:
parent
178fb90a6e
commit
8bc0950e23
@ -75,9 +75,9 @@
|
|||||||
<tr ng-repeat="inventory in voucher.Inventories">
|
<tr ng-repeat="inventory in voucher.Inventories">
|
||||||
<td>{{inventory.Product.Name}}</td>
|
<td>{{inventory.Product.Name}}</td>
|
||||||
<td>{{inventory.Batch.Name}}</td>
|
<td>{{inventory.Batch.Name}}</td>
|
||||||
<td>{{inventory.Quantity | number:2}}</td>
|
<td class="text-right">{{inventory.Quantity | number:2}}</td>
|
||||||
<td>{{inventory.Rate | currency}}</td>
|
<td class="text-right">{{inventory.Rate | currency}}</td>
|
||||||
<td>{{inventory.Amount | currency}}</td>
|
<td class="text-right">{{inventory.Amount | currency}}</td>
|
||||||
<td>
|
<td>
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
<a class="btn btn-danger" ng-click="removeInventory(inventory)"><i
|
<a class="btn btn-danger" ng-click="removeInventory(inventory)"><i
|
||||||
|
Loading…
Reference in New Issue
Block a user