updated stock table

This commit is contained in:
2025-11-25 09:17:44 +01:00
parent 46d121b016
commit 6b067e058c
9 changed files with 154 additions and 69 deletions

View File

@@ -1,17 +1,28 @@
import { Component } from '@angular/core';
import {StockTable} from "../../components/stock-table/stock-table";
import {Search} from "../../components/search/search";
import {ModalButton} from "../../components/modal-button/modal-button";
import {PurchaseOrderForm} from "../../components/purchase-order-form/purchase-order-form";
import {QuotationForm} from "../../components/quotation-form/quotation-form";
@Component({
selector: 'app-stock',
imports: [
StockTable,
Search,
ModalButton,
PurchaseOrderForm,
QuotationForm,
],
templateUrl: './stock.html',
styleUrl: './stock.css',
})
export class Stock {
hasSelection = false;
onSelectionChange(value: boolean) {
this.hasSelection = value;
}
}