Initial commit
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
<div id="add-supplier-bid" ng-int="getSuppliers()">
|
||||
<form>
|
||||
<div class="form-group">
|
||||
<label for="idSupplier">{{ 'bids.labels.SUPPLIER' | translate }}</label>
|
||||
<select class="form-control"
|
||||
id="idSupplier" placeholder="{{ 'bids.labels.SUPPLIER' | translate }}"
|
||||
ng-options="option.supplier for option in suppliers track by option.idSupplier"
|
||||
ng-change="onSupplierSelect()"
|
||||
ng-model="selectedSupplier"></select>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="idProduct">{{ 'bids.labels.PRODUCT' | translate }}</label>
|
||||
<select class="form-control"
|
||||
id="idProduct" placeholder="{{ 'bids.labels.PRODUCT' | translate }}"
|
||||
ng-options="option.productName for option in products track by option.idProduct"
|
||||
ng-change="onProductSelect()"
|
||||
ng-model="selectedProduct"></select>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="bidNumber">{{ 'bids.labels.BID_NUMBER' | translate }}</label>
|
||||
<input type="text" class="form-control"
|
||||
id="bidNumber" placeholder="{{ 'bids.labels.BID_NUMBER' | translate }}"
|
||||
ng-model="supplierBid.bidNumber">
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
Reference in New Issue
Block a user