19 lines
717 B
HTML
19 lines
717 B
HTML
<div class="flex mt-2">
|
|
@if (hasSelection) {
|
|
<app-modal-button #modalButton type="default" name="Créer un bon de commande" size="35%" class="ml-4">
|
|
<app-purchase-order-form #purchaseOrderForm></app-purchase-order-form>
|
|
</app-modal-button>
|
|
|
|
<app-modal-button #modalButton type="default" name="Créer un devis" size="35%" class="ml-4" (click)="test()">
|
|
<app-quotation-form #quotationForm></app-quotation-form>
|
|
</app-modal-button>
|
|
}
|
|
|
|
<div class="ml-95 w-150">
|
|
<app-search class="w-full"></app-search>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-1">
|
|
<app-stock-table #stockTable (selectionChange)="onSelectionChange($event)"></app-stock-table>
|
|
</div> |