updated stock table
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user