Add transaction type
This commit is contained in:
@@ -26,7 +26,7 @@
|
||||
<table class="table" ng-class="vm.getValidationClass()">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name<br />Units per Case</th>
|
||||
<th>Name<br/>Units per Case<br/>Expiration Date</th>
|
||||
<th>Available Case Qty</th>
|
||||
<th>Distribute Case Qty</th>
|
||||
</tr>
|
||||
@@ -34,14 +34,13 @@
|
||||
<tbody>
|
||||
<tr ng-repeat="inventory in vm.quantities" inventory="inventory">
|
||||
<td>
|
||||
<label class="control-label" for="DistributeQuantity{{inventory.name}}">
|
||||
{{inventory.name}}<br />
|
||||
{{inventory.unitsPerCase}} / {{inventory.containerType}}
|
||||
</label>
|
||||
{{inventory.name}}<br />
|
||||
{{inventory.unitsPerCase}} / {{inventory.containerType}}<br/>
|
||||
Exp: {{inventory.expirationDate | date:'shortDate'}}
|
||||
</td>
|
||||
<td>{{inventory.quantity}}</td>
|
||||
<td>
|
||||
<div class="form-group" form-group-validation="DistributeQuantity{{inventory.name}}">
|
||||
<div class="form-group col-sm-7" form-group-validation="DistributeQuantity{{inventory.name}}">
|
||||
<input name="DistributeQuantity{{inventory.name}}" type="number"
|
||||
class="form-control"
|
||||
ng-model="inventory.distributeQuantity"
|
||||
|
||||
Reference in New Issue
Block a user