fixed purchase's importations

This commit is contained in:
2025-11-20 17:14:30 +01:00
parent eb3c3709e7
commit c5f34ef6ad
2 changed files with 0 additions and 10 deletions

View File

@@ -1,7 +1,6 @@
import { Component } from '@angular/core'; import { Component } from '@angular/core';
import {FormControl, FormGroup, FormsModule, ReactiveFormsModule, Validators} from "@angular/forms"; import {FormControl, FormGroup, FormsModule, ReactiveFormsModule, Validators} from "@angular/forms";
import {NzColDirective} from "ng-zorro-antd/grid"; import {NzColDirective} from "ng-zorro-antd/grid";
import {NzDatePickerComponent} from "ng-zorro-antd/date-picker";
import {NzFlexDirective} from "ng-zorro-antd/flex"; import {NzFlexDirective} from "ng-zorro-antd/flex";
import {NzFormControlComponent, NzFormDirective, NzFormItemComponent, NzFormLabelComponent} from "ng-zorro-antd/form"; import {NzFormControlComponent, NzFormDirective, NzFormItemComponent, NzFormLabelComponent} from "ng-zorro-antd/form";
import {NzInputDirective} from "ng-zorro-antd/input"; import {NzInputDirective} from "ng-zorro-antd/input";
@@ -11,7 +10,6 @@ import {NzInputDirective} from "ng-zorro-antd/input";
imports: [ imports: [
FormsModule, FormsModule,
NzColDirective, NzColDirective,
NzDatePickerComponent,
NzFlexDirective, NzFlexDirective,
NzFormControlComponent, NzFormControlComponent,
NzFormDirective, NzFormDirective,

View File

@@ -1,20 +1,12 @@
import { Component } from '@angular/core'; import { Component } from '@angular/core';
import {Search} from "../../components/search/search"; import {Search} from "../../components/search/search";
import {DelivereryNoteForm} from "../../components/deliverery-note-form/deliverery-note-form";
import {DelivereryNoteTable} from "../../components/deliverery-note-table/deliverery-note-table";
import {ModalButton} from "../../components/modal-button/modal-button";
import {PurchaseOrderTable} from "../../components/purchase-order-table/purchase-order-table"; import {PurchaseOrderTable} from "../../components/purchase-order-table/purchase-order-table";
import {PurchaseOrderForm} from "../../components/purchase-order-form/purchase-order-form";
@Component({ @Component({
selector: 'app-purchase-order', selector: 'app-purchase-order',
imports: [ imports: [
Search, Search,
DelivereryNoteForm,
DelivereryNoteTable,
ModalButton,
PurchaseOrderTable, PurchaseOrderTable,
PurchaseOrderForm,
], ],
templateUrl: './purchase-order.html', templateUrl: './purchase-order.html',
styleUrl: './purchase-order.css', styleUrl: './purchase-order.css',