techlify-inventory-common 18.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/esm2022/lib/inventory-common/category/category-form/category-form.component.mjs +77 -0
- package/esm2022/lib/inventory-common/category/category-form-button/category-form-button.component.mjs +32 -0
- package/esm2022/lib/inventory-common/category/category-list-page/category-list-page.component.mjs +68 -0
- package/esm2022/lib/inventory-common/category/category-routing.module.mjs +24 -0
- package/esm2022/lib/inventory-common/category/category.module.mjs +63 -0
- package/esm2022/lib/inventory-common/category/category.service.mjs +18 -0
- package/esm2022/lib/inventory-common/inventory-common-routing.module.mjs +53 -0
- package/esm2022/lib/inventory-common/inventory-common.module.mjs +39 -0
- package/esm2022/lib/inventory-common/inventory-dashboard-page/inventory-dashboard-page.component.mjs +42 -0
- package/esm2022/lib/inventory-common/material.module.mjs +172 -0
- package/esm2022/lib/inventory-common/measure/measure-delete/measure-delete-button/measure-delete-button.component.mjs +44 -0
- package/esm2022/lib/inventory-common/measure/measure-delete/measure-delete.module.mjs +19 -0
- package/esm2022/lib/inventory-common/measure/measure-form/measure-form/measure-form.component.mjs +80 -0
- package/esm2022/lib/inventory-common/measure/measure-form/measure-form-button/measure-form-button.component.mjs +30 -0
- package/esm2022/lib/inventory-common/measure/measure-form/measure-form.module.mjs +21 -0
- package/esm2022/lib/inventory-common/measure/measure-routing.module.mjs +24 -0
- package/esm2022/lib/inventory-common/measure/measure.module.mjs +47 -0
- package/esm2022/lib/inventory-common/measure/measure.service.mjs +18 -0
- package/esm2022/lib/inventory-common/measure/measures-list/measures-list.component.mjs +71 -0
- package/esm2022/lib/inventory-common/product/low-stock-products-widget/low-stock-products-widget.component.mjs +45 -0
- package/esm2022/lib/inventory-common/product/low-stock-products-widget/low-stock-products-widget.module.mjs +36 -0
- package/esm2022/lib/inventory-common/product/product-basic-info/product-basic-info.component.mjs +54 -0
- package/esm2022/lib/inventory-common/product/product-delete-button/product-delete-button.component.mjs +54 -0
- package/esm2022/lib/inventory-common/product/product-form/product-form.component.mjs +180 -0
- package/esm2022/lib/inventory-common/product/product-form-button/product-form-button.component.mjs +40 -0
- package/esm2022/lib/inventory-common/product/product-form.service.mjs +17 -0
- package/esm2022/lib/inventory-common/product/product-import-page/product-import-page.component.mjs +66 -0
- package/esm2022/lib/inventory-common/product/product-list/product-list.component.mjs +189 -0
- package/esm2022/lib/inventory-common/product/product-measure-form/product-measure-form.component.mjs +101 -0
- package/esm2022/lib/inventory-common/product/product-measures-list/product-measures-list.component.mjs +151 -0
- package/esm2022/lib/inventory-common/product/product-nav-bar/product-nav-bar.component.mjs +12 -0
- package/esm2022/lib/inventory-common/product/product-routing.module.mjs +57 -0
- package/esm2022/lib/inventory-common/product/product-summary-chart/product-summary-chart.component.mjs +63 -0
- package/esm2022/lib/inventory-common/product/product-summary-chart/product-summary-chart.module.mjs +29 -0
- package/esm2022/lib/inventory-common/product/product-tax/product-tax-delete-button/product-tax-delete-button.component.mjs +54 -0
- package/esm2022/lib/inventory-common/product/product-tax/product-tax-form-button/product-tax-form-button.component.mjs +77 -0
- package/esm2022/lib/inventory-common/product/product-tax/product-tax-list/product-tax-list.component.mjs +35 -0
- package/esm2022/lib/inventory-common/product/product-tax/product-tax.module.mjs +39 -0
- package/esm2022/lib/inventory-common/product/product-tax/product-tax.service.mjs +18 -0
- package/esm2022/lib/inventory-common/product/product-view-page/product-view-page.component.mjs +68 -0
- package/esm2022/lib/inventory-common/product/product.module.mjs +111 -0
- package/esm2022/lib/inventory-common/product/product.service.mjs +49 -0
- package/esm2022/lib/inventory-common/services/techlify-form-service.mjs +11 -0
- package/esm2022/lib/inventory-common/stock-issuances/stock-issuance-delete-button/stock-issuance-delete-button.component.mjs +47 -0
- package/esm2022/lib/inventory-common/stock-issuances/stock-issuance-delete-button/stock-issuance-delete-button.module.mjs +19 -0
- package/esm2022/lib/inventory-common/stock-issuances/stock-issuance.service.mjs +18 -0
- package/esm2022/lib/inventory-common/stock-issuances/stock-issuances-list/stock-issuances-list.component.mjs +126 -0
- package/esm2022/lib/inventory-common/stock-issuances/stock-issuances-list/stock-issuances-list.module.mjs +48 -0
- package/esm2022/lib/inventory-common/stock-issuances/stock-issuances-routing.module.mjs +24 -0
- package/esm2022/lib/inventory-common/stock-issuances/stock-issuances.module.mjs +67 -0
- package/esm2022/lib/inventory-common/stock-issuances/stock-issue-form/stock-issue-form/stock-issue-form.component.mjs +120 -0
- package/esm2022/lib/inventory-common/stock-issuances/stock-issue-form/stock-issue-form-button/stock-issue-form-button.component.mjs +44 -0
- package/esm2022/lib/inventory-common/stock-issuances/stock-issue-form/stock-issue-form.module.mjs +53 -0
- package/esm2022/lib/inventory-common/stock-receipts/stock-receipt-delete-button/stock-receipt-delete-button.component.mjs +47 -0
- package/esm2022/lib/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form/stock-receipt-form.component.mjs +125 -0
- package/esm2022/lib/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form-button/stock-receipt-form-button.component.mjs +38 -0
- package/esm2022/lib/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form.module.mjs +53 -0
- package/esm2022/lib/inventory-common/stock-receipts/stock-receipt.service.mjs +18 -0
- package/esm2022/lib/inventory-common/stock-receipts/stock-receipts-list-page/stock-receipts-list-page.component.mjs +119 -0
- package/esm2022/lib/inventory-common/stock-receipts/stock-receipts-routing.module.mjs +24 -0
- package/esm2022/lib/inventory-common/stock-receipts/stock-receipts.module.mjs +75 -0
- package/esm2022/lib/inventory-common/stock-summary.service.mjs +26 -0
- package/esm2022/lib/inventory-common/supplier/payee-selector/payee-selector/payee-selector.component.mjs +59 -0
- package/esm2022/lib/inventory-common/supplier/payee-selector/payee-selector.module.mjs +35 -0
- package/esm2022/lib/inventory-common/supplier/supplier-form/supplier-form.component.mjs +118 -0
- package/esm2022/lib/inventory-common/supplier/supplier-form/supplier-form.service.mjs +17 -0
- package/esm2022/lib/inventory-common/supplier/supplier-information/supplier-information.component.mjs +72 -0
- package/esm2022/lib/inventory-common/supplier/supplier-routing.module.mjs +40 -0
- package/esm2022/lib/inventory-common/supplier/supplier-type.service.mjs +25 -0
- package/esm2022/lib/inventory-common/supplier/supplier-view/supplier-view.component.mjs +66 -0
- package/esm2022/lib/inventory-common/supplier/supplier.component.mjs +20 -0
- package/esm2022/lib/inventory-common/supplier/supplier.module.mjs +63 -0
- package/esm2022/lib/inventory-common/supplier/supplier.service.mjs +61 -0
- package/esm2022/lib/inventory-common/supplier/suppliers-list/suppliers-list.component.mjs +241 -0
- package/esm2022/lib/inventory-common/techlify-filter/techlify-filter.component.mjs +118 -0
- package/esm2022/lib/inventory-common/techlify-filter/techlify-filter.module.mjs +38 -0
- package/esm2022/public-api.mjs +9 -0
- package/esm2022/techlify-inventory-common.mjs +5 -0
- package/fesm2022/techlify-inventory-common-category.module-Stn6e73V.mjs +257 -0
- package/fesm2022/techlify-inventory-common-category.module-Stn6e73V.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common-measure.module-CirswKXn.mjs +313 -0
- package/fesm2022/techlify-inventory-common-measure.module-CirswKXn.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common-product.module-qdeafFV5.mjs +1172 -0
- package/fesm2022/techlify-inventory-common-product.module-qdeafFV5.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common-stock-issuances-list.module-CyFDxARk.mjs +436 -0
- package/fesm2022/techlify-inventory-common-stock-issuances-list.module-CyFDxARk.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common-stock-issuances.module-Dm9i2kcf.mjs +89 -0
- package/fesm2022/techlify-inventory-common-stock-issuances.module-Dm9i2kcf.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common-stock-receipt-form.module-BZDrN7la.mjs +302 -0
- package/fesm2022/techlify-inventory-common-stock-receipt-form.module-BZDrN7la.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common-stock-receipts.module-CUPdWteR.mjs +253 -0
- package/fesm2022/techlify-inventory-common-stock-receipts.module-CUPdWteR.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common-supplier-form.component-CHmMG7O8.mjs +178 -0
- package/fesm2022/techlify-inventory-common-supplier-form.component-CHmMG7O8.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common-supplier.module-gzHesNtQ.mjs +665 -0
- package/fesm2022/techlify-inventory-common-supplier.module-gzHesNtQ.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common-techlify-form-service-CiVfwYTS.mjs +14 -0
- package/fesm2022/techlify-inventory-common-techlify-form-service-CiVfwYTS.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common-techlify-inventory-common-Czyc0jLI.mjs +495 -0
- package/fesm2022/techlify-inventory-common-techlify-inventory-common-Czyc0jLI.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common.mjs +2 -0
- package/fesm2022/techlify-inventory-common.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/inventory-common/category/category-form/category-form.component.d.ts +19 -0
- package/lib/inventory-common/category/category-form-button/category-form-button.component.d.ts +13 -0
- package/lib/inventory-common/category/category-list-page/category-list-page.component.d.ts +20 -0
- package/lib/inventory-common/category/category-routing.module.d.ts +7 -0
- package/lib/inventory-common/category/category.module.d.ts +19 -0
- package/lib/inventory-common/category/category.service.d.ts +7 -0
- package/lib/inventory-common/inventory-common-routing.module.d.ts +7 -0
- package/lib/inventory-common/inventory-common.module.d.ts +13 -0
- package/lib/inventory-common/inventory-dashboard-page/inventory-dashboard-page.component.d.ts +14 -0
- package/lib/inventory-common/material.module.d.ts +40 -0
- package/lib/inventory-common/measure/measure-delete/measure-delete-button/measure-delete-button.component.d.ts +19 -0
- package/lib/inventory-common/measure/measure-delete/measure-delete.module.d.ts +9 -0
- package/lib/inventory-common/measure/measure-form/measure-form/measure-form.component.d.ts +19 -0
- package/lib/inventory-common/measure/measure-form/measure-form-button/measure-form-button.component.d.ts +13 -0
- package/lib/inventory-common/measure/measure-form/measure-form.module.d.ts +11 -0
- package/lib/inventory-common/measure/measure-routing.module.d.ts +7 -0
- package/lib/inventory-common/measure/measure.module.d.ts +15 -0
- package/lib/inventory-common/measure/measure.service.d.ts +7 -0
- package/lib/inventory-common/measure/measures-list/measures-list.component.d.ts +17 -0
- package/lib/inventory-common/product/low-stock-products-widget/low-stock-products-widget.component.d.ts +13 -0
- package/lib/inventory-common/product/low-stock-products-widget/low-stock-products-widget.module.d.ts +12 -0
- package/lib/inventory-common/product/product-basic-info/product-basic-info.component.d.ts +19 -0
- package/lib/inventory-common/product/product-delete-button/product-delete-button.component.d.ts +26 -0
- package/lib/inventory-common/product/product-form/product-form.component.d.ts +44 -0
- package/lib/inventory-common/product/product-form-button/product-form-button.component.d.ts +20 -0
- package/lib/inventory-common/product/product-form.service.d.ts +7 -0
- package/lib/inventory-common/product/product-import-page/product-import-page.component.d.ts +10 -0
- package/lib/inventory-common/product/product-list/product-list.component.d.ts +44 -0
- package/lib/inventory-common/product/product-measure-form/product-measure-form.component.d.ts +33 -0
- package/lib/inventory-common/product/product-measures-list/product-measures-list.component.d.ts +43 -0
- package/lib/inventory-common/product/product-nav-bar/product-nav-bar.component.d.ts +5 -0
- package/lib/inventory-common/product/product-routing.module.d.ts +7 -0
- package/lib/inventory-common/product/product-summary-chart/product-summary-chart.component.d.ts +15 -0
- package/lib/inventory-common/product/product-summary-chart/product-summary-chart.module.d.ts +10 -0
- package/lib/inventory-common/product/product-tax/product-tax-delete-button/product-tax-delete-button.component.d.ts +26 -0
- package/lib/inventory-common/product/product-tax/product-tax-form-button/product-tax-form-button.component.d.ts +21 -0
- package/lib/inventory-common/product/product-tax/product-tax-list/product-tax-list.component.d.ts +13 -0
- package/lib/inventory-common/product/product-tax/product-tax.module.d.ts +12 -0
- package/lib/inventory-common/product/product-tax/product-tax.service.d.ts +7 -0
- package/lib/inventory-common/product/product-view-page/product-view-page.component.d.ts +33 -0
- package/lib/inventory-common/product/product.module.d.ts +28 -0
- package/lib/inventory-common/product/product.service.d.ts +19 -0
- package/lib/inventory-common/services/techlify-form-service.d.ts +5 -0
- package/lib/inventory-common/stock-issuances/stock-issuance-delete-button/stock-issuance-delete-button.component.d.ts +18 -0
- package/lib/inventory-common/stock-issuances/stock-issuance-delete-button/stock-issuance-delete-button.module.d.ts +9 -0
- package/lib/inventory-common/stock-issuances/stock-issuance.service.d.ts +7 -0
- package/lib/inventory-common/stock-issuances/stock-issuances-list/stock-issuances-list.component.d.ts +24 -0
- package/lib/inventory-common/stock-issuances/stock-issuances-list/stock-issuances-list.module.d.ts +15 -0
- package/lib/inventory-common/stock-issuances/stock-issuances-routing.module.d.ts +7 -0
- package/lib/inventory-common/stock-issuances/stock-issuances.module.d.ts +19 -0
- package/lib/inventory-common/stock-issuances/stock-issue-form/stock-issue-form/stock-issue-form.component.d.ts +24 -0
- package/lib/inventory-common/stock-issuances/stock-issue-form/stock-issue-form-button/stock-issue-form-button.component.d.ts +18 -0
- package/lib/inventory-common/stock-issuances/stock-issue-form/stock-issue-form.module.d.ts +17 -0
- package/lib/inventory-common/stock-receipts/stock-receipt-delete-button/stock-receipt-delete-button.component.d.ts +18 -0
- package/lib/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form/stock-receipt-form.component.d.ts +22 -0
- package/lib/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form-button/stock-receipt-form-button.component.d.ts +16 -0
- package/lib/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form.module.d.ts +17 -0
- package/lib/inventory-common/stock-receipts/stock-receipt.service.d.ts +7 -0
- package/lib/inventory-common/stock-receipts/stock-receipts-list-page/stock-receipts-list-page.component.d.ts +21 -0
- package/lib/inventory-common/stock-receipts/stock-receipts-routing.module.d.ts +7 -0
- package/lib/inventory-common/stock-receipts/stock-receipts.module.d.ts +20 -0
- package/lib/inventory-common/stock-summary.service.d.ts +14 -0
- package/lib/inventory-common/supplier/payee-selector/payee-selector/payee-selector.component.d.ts +20 -0
- package/lib/inventory-common/supplier/payee-selector/payee-selector.module.d.ts +11 -0
- package/lib/inventory-common/supplier/supplier-form/supplier-form.component.d.ts +29 -0
- package/lib/inventory-common/supplier/supplier-form/supplier-form.service.d.ts +7 -0
- package/lib/inventory-common/supplier/supplier-information/supplier-information.component.d.ts +18 -0
- package/lib/inventory-common/supplier/supplier-routing.module.d.ts +7 -0
- package/lib/inventory-common/supplier/supplier-type.service.d.ts +13 -0
- package/lib/inventory-common/supplier/supplier-view/supplier-view.component.d.ts +20 -0
- package/lib/inventory-common/supplier/supplier.component.d.ts +10 -0
- package/lib/inventory-common/supplier/supplier.module.d.ts +18 -0
- package/lib/inventory-common/supplier/supplier.service.d.ts +39 -0
- package/lib/inventory-common/supplier/suppliers-list/suppliers-list.component.d.ts +51 -0
- package/lib/inventory-common/techlify-filter/techlify-filter.component.d.ts +31 -0
- package/lib/inventory-common/techlify-filter/techlify-filter.module.d.ts +11 -0
- package/package.json +25 -0
- package/public-api.d.ts +5 -0
|
@@ -0,0 +1,665 @@
|
|
|
1
|
+
import * as i1$1 from 'ngx-techlify-core';
|
|
2
|
+
import { ActionPopupComponent, TechlifyListingControllerInterface, SearchableSelectorModule, AuditLogForModelModule, NoteModule } from 'ngx-techlify-core';
|
|
3
|
+
import * as i0 from '@angular/core';
|
|
4
|
+
import { Input, Component, Injectable, NgModule } from '@angular/core';
|
|
5
|
+
import * as i4 from '@angular/common';
|
|
6
|
+
import { CommonModule } from '@angular/common';
|
|
7
|
+
import { lastValueFrom, debounceTime } from 'rxjs';
|
|
8
|
+
import { S as SupplierFormComponent, a as SupplierService } from './techlify-inventory-common-supplier-form.component-CHmMG7O8.mjs';
|
|
9
|
+
import * as i2 from '@angular/router';
|
|
10
|
+
import { RouterModule } from '@angular/router';
|
|
11
|
+
import * as i3 from '@angular/material/card';
|
|
12
|
+
import { MatCardModule } from '@angular/material/card';
|
|
13
|
+
import * as i7 from '@angular/material/progress-bar';
|
|
14
|
+
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
|
15
|
+
import * as i6$1 from '@angular/material/tabs';
|
|
16
|
+
import { MatTabsModule } from '@angular/material/tabs';
|
|
17
|
+
import * as i1 from '@angular/material/dialog';
|
|
18
|
+
import { MatDialogModule } from '@angular/material/dialog';
|
|
19
|
+
import * as i6 from '@angular/material/divider';
|
|
20
|
+
import { MatDividerModule } from '@angular/material/divider';
|
|
21
|
+
import * as i3$1 from '@angular/material/icon';
|
|
22
|
+
import { MatIconModule } from '@angular/material/icon';
|
|
23
|
+
import { T as TechlifyFormService } from './techlify-inventory-common-techlify-form-service-CiVfwYTS.mjs';
|
|
24
|
+
import { __decorate } from 'tslib';
|
|
25
|
+
import * as i6$3 from '@angular/material/table';
|
|
26
|
+
import { MatTableDataSource, MatTableModule } from '@angular/material/table';
|
|
27
|
+
import { untilDestroyed, UntilDestroy } from '@ngneat/until-destroy';
|
|
28
|
+
import * as i3$2 from 'ngx-spinner';
|
|
29
|
+
import * as i2$1 from '@angular/forms';
|
|
30
|
+
import { ReactiveFormsModule } from '@angular/forms';
|
|
31
|
+
import * as i7$1 from '@angular/material/button';
|
|
32
|
+
import { MatButtonModule } from '@angular/material/button';
|
|
33
|
+
import * as i12 from '@angular/material/button-toggle';
|
|
34
|
+
import { MatButtonToggleModule } from '@angular/material/button-toggle';
|
|
35
|
+
import * as i6$2 from '@angular/material/form-field';
|
|
36
|
+
import { MatFormFieldModule } from '@angular/material/form-field';
|
|
37
|
+
import * as i7$2 from '@angular/material/input';
|
|
38
|
+
import { MatInputModule } from '@angular/material/input';
|
|
39
|
+
import * as i5 from '@angular/material/sort';
|
|
40
|
+
import { MatSortModule } from '@angular/material/sort';
|
|
41
|
+
import * as i2$2 from '@angular/material/tooltip';
|
|
42
|
+
import { MatTooltipModule } from '@angular/material/tooltip';
|
|
43
|
+
import * as i10 from '@angular/flex-layout';
|
|
44
|
+
import { FlexModule } from '@angular/flex-layout';
|
|
45
|
+
import * as i10$1 from 'ngx-infinite-scroll';
|
|
46
|
+
import { InfiniteScrollModule } from 'ngx-infinite-scroll';
|
|
47
|
+
import { MatCommonModule, MatLineModule, MatNativeDateModule, MatOptionModule, MatPseudoCheckboxModule, MatRippleModule } from '@angular/material/core';
|
|
48
|
+
import { MatAutocompleteModule } from '@angular/material/autocomplete';
|
|
49
|
+
import { MatBadgeModule } from '@angular/material/badge';
|
|
50
|
+
import { MatCheckboxModule } from '@angular/material/checkbox';
|
|
51
|
+
import { MatChipsModule } from '@angular/material/chips';
|
|
52
|
+
import { MatDatepickerModule } from '@angular/material/datepicker';
|
|
53
|
+
import { MatExpansionModule } from '@angular/material/expansion';
|
|
54
|
+
import { MatGridListModule } from '@angular/material/grid-list';
|
|
55
|
+
import { MatListModule } from '@angular/material/list';
|
|
56
|
+
import { MatMenuModule } from '@angular/material/menu';
|
|
57
|
+
import { MatPaginatorModule } from '@angular/material/paginator';
|
|
58
|
+
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
|
59
|
+
import { MatRadioModule } from '@angular/material/radio';
|
|
60
|
+
import { MatSelectModule } from '@angular/material/select';
|
|
61
|
+
import { MatSidenavModule } from '@angular/material/sidenav';
|
|
62
|
+
import { MatSlideToggleModule } from '@angular/material/slide-toggle';
|
|
63
|
+
import { MatSliderModule } from '@angular/material/slider';
|
|
64
|
+
import { MatSnackBarModule } from '@angular/material/snack-bar';
|
|
65
|
+
import { MatStepperModule } from '@angular/material/stepper';
|
|
66
|
+
import { MatToolbarModule } from '@angular/material/toolbar';
|
|
67
|
+
import { MatTreeModule } from '@angular/material/tree';
|
|
68
|
+
|
|
69
|
+
class SupplierInformationComponent {
|
|
70
|
+
dialog;
|
|
71
|
+
supplierService;
|
|
72
|
+
alertService;
|
|
73
|
+
router;
|
|
74
|
+
errorService;
|
|
75
|
+
supplier;
|
|
76
|
+
constructor(dialog, supplierService, alertService, router, errorService) {
|
|
77
|
+
this.dialog = dialog;
|
|
78
|
+
this.supplierService = supplierService;
|
|
79
|
+
this.alertService = alertService;
|
|
80
|
+
this.router = router;
|
|
81
|
+
this.errorService = errorService;
|
|
82
|
+
}
|
|
83
|
+
modifySupplier(model) {
|
|
84
|
+
const dialogRef = this.dialog.open(SupplierFormComponent, {
|
|
85
|
+
width: "600px",
|
|
86
|
+
data: {
|
|
87
|
+
details: model,
|
|
88
|
+
},
|
|
89
|
+
});
|
|
90
|
+
dialogRef.afterClosed().subscribe((result) => {
|
|
91
|
+
if (result) {
|
|
92
|
+
location.reload();
|
|
93
|
+
}
|
|
94
|
+
});
|
|
95
|
+
}
|
|
96
|
+
deleteSupplier(id) {
|
|
97
|
+
const dialogRef = this.dialog.open(ActionPopupComponent, {
|
|
98
|
+
width: "400px",
|
|
99
|
+
data: {
|
|
100
|
+
title: "Delete Supplier",
|
|
101
|
+
message: "Are you sure you want to delete this supplier?",
|
|
102
|
+
},
|
|
103
|
+
autoFocus: false,
|
|
104
|
+
});
|
|
105
|
+
dialogRef.afterClosed().subscribe(async (result) => {
|
|
106
|
+
if (result) {
|
|
107
|
+
try {
|
|
108
|
+
const result = await this.supplierService.destroy(id);
|
|
109
|
+
this.alertService.addAlert("Successfully Deleted Supplier", "success");
|
|
110
|
+
}
|
|
111
|
+
catch (error) {
|
|
112
|
+
this.errorService.handleError(error);
|
|
113
|
+
}
|
|
114
|
+
finally {
|
|
115
|
+
this.router.navigateByUrl("/suppliers");
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
});
|
|
119
|
+
}
|
|
120
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SupplierInformationComponent, deps: [{ token: i1.MatDialog }, { token: SupplierService }, { token: i1$1.AlertService }, { token: i2.Router }, { token: i1$1.ErrorHandlerService }], target: i0.ɵɵFactoryTarget.Component });
|
|
121
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: SupplierInformationComponent, selector: "app-supplier-information", inputs: { supplier: "supplier" }, ngImport: i0, template: "<mat-card>\n <mat-card-content>\n <div class=\"d-flex justify-content-between align-items-center\">\n <h3 class=\"mb-0\">Personal Information</h3>\n <div class=\"d-flex justify-content-end align-items-center gap-1\">\n <app-audit-log-for-model\n [modelId]=\"supplier?.id\"\n modelType=\"Supplier\"\n logView=\"all\"\n ></app-audit-log-for-model>\n <mat-icon\n class=\"material-icons cursor-pointer\"\n (click)=\"modifySupplier(supplier)\"\n >\n edit\n </mat-icon>\n <mat-icon\n class=\"material-icons cursor-pointer\"\n (click)=\"deleteSupplier(supplier)\"\n >\n delete\n </mat-icon>\n </div>\n </div>\n\n <mat-divider></mat-divider>\n\n <div class=\"mt-2\">\n <div class=\"d-flex justify-content-start gap-2\">\n <div>\n <h3 class=\"mb-0\">{{ supplier?.company_name }}</h3>\n <span class=\"status-pill-sm status-light-orange\">{{\n supplier?.type?.title\n }}</span>\n </div>\n </div>\n </div>\n\n <div class=\"row mt-3\">\n <div class=\"col-6\">\n <p class=\"text-muted mb-0\">Contact Name</p>\n <p class=\"text-wrap\">{{ supplier?.contact_name }}</p>\n </div>\n <div class=\"col-6\">\n <p class=\"text-muted mb-0\">Email</p>\n <p class=\"text-wrap\">{{ supplier?.email }}</p>\n </div>\n <div class=\"col-6\">\n <p class=\"text-muted mb-0\">Phone</p>\n <p class=\"text-wrap\">{{ supplier?.phone }}</p>\n </div>\n <div class=\"col-6\">\n <p class=\"text-muted mb-0\">Details</p>\n <p class=\"text-wrap\">{{ supplier?.details }}</p>\n </div>\n </div>\n\n <div class=\"row mt-2 h-100\">\n <div class=\"d-flex\">\n <mat-icon class=\"material-icons text-primary my-auto\"\n >location_on</mat-icon\n >\n <p class=\"ms-2 my-auto\">{{ supplier?.address }}</p>\n </div>\n </div>\n </mat-card-content>\n</mat-card>\n", dependencies: [{ kind: "component", type: i3.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i3.MatCardContent, selector: "mat-card-content" }, { kind: "component", type: i6.MatDivider, selector: "mat-divider", inputs: ["vertical", "inset"] }, { kind: "component", type: i3$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i1$1.AuditLogForModelComponent, selector: "app-audit-log-for-model", inputs: ["modelType", "modelId", "logView"] }], preserveWhitespaces: true });
|
|
122
|
+
}
|
|
123
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SupplierInformationComponent, decorators: [{
|
|
124
|
+
type: Component,
|
|
125
|
+
args: [{ selector: "app-supplier-information", template: "<mat-card>\n <mat-card-content>\n <div class=\"d-flex justify-content-between align-items-center\">\n <h3 class=\"mb-0\">Personal Information</h3>\n <div class=\"d-flex justify-content-end align-items-center gap-1\">\n <app-audit-log-for-model\n [modelId]=\"supplier?.id\"\n modelType=\"Supplier\"\n logView=\"all\"\n ></app-audit-log-for-model>\n <mat-icon\n class=\"material-icons cursor-pointer\"\n (click)=\"modifySupplier(supplier)\"\n >\n edit\n </mat-icon>\n <mat-icon\n class=\"material-icons cursor-pointer\"\n (click)=\"deleteSupplier(supplier)\"\n >\n delete\n </mat-icon>\n </div>\n </div>\n\n <mat-divider></mat-divider>\n\n <div class=\"mt-2\">\n <div class=\"d-flex justify-content-start gap-2\">\n <div>\n <h3 class=\"mb-0\">{{ supplier?.company_name }}</h3>\n <span class=\"status-pill-sm status-light-orange\">{{\n supplier?.type?.title\n }}</span>\n </div>\n </div>\n </div>\n\n <div class=\"row mt-3\">\n <div class=\"col-6\">\n <p class=\"text-muted mb-0\">Contact Name</p>\n <p class=\"text-wrap\">{{ supplier?.contact_name }}</p>\n </div>\n <div class=\"col-6\">\n <p class=\"text-muted mb-0\">Email</p>\n <p class=\"text-wrap\">{{ supplier?.email }}</p>\n </div>\n <div class=\"col-6\">\n <p class=\"text-muted mb-0\">Phone</p>\n <p class=\"text-wrap\">{{ supplier?.phone }}</p>\n </div>\n <div class=\"col-6\">\n <p class=\"text-muted mb-0\">Details</p>\n <p class=\"text-wrap\">{{ supplier?.details }}</p>\n </div>\n </div>\n\n <div class=\"row mt-2 h-100\">\n <div class=\"d-flex\">\n <mat-icon class=\"material-icons text-primary my-auto\"\n >location_on</mat-icon\n >\n <p class=\"ms-2 my-auto\">{{ supplier?.address }}</p>\n </div>\n </div>\n </mat-card-content>\n</mat-card>\n" }]
|
|
126
|
+
}], ctorParameters: () => [{ type: i1.MatDialog }, { type: SupplierService }, { type: i1$1.AlertService }, { type: i2.Router }, { type: i1$1.ErrorHandlerService }], propDecorators: { supplier: [{
|
|
127
|
+
type: Input
|
|
128
|
+
}] } });
|
|
129
|
+
|
|
130
|
+
class SupplierViewComponent {
|
|
131
|
+
supplierService;
|
|
132
|
+
route;
|
|
133
|
+
router;
|
|
134
|
+
supplier;
|
|
135
|
+
supplierId = 0;
|
|
136
|
+
selectedTabIndex = 0;
|
|
137
|
+
isLoading = false;
|
|
138
|
+
constructor(supplierService, route, router) {
|
|
139
|
+
this.supplierService = supplierService;
|
|
140
|
+
this.route = route;
|
|
141
|
+
this.router = router;
|
|
142
|
+
}
|
|
143
|
+
ngOnInit() {
|
|
144
|
+
this.route.firstChild?.url.subscribe((url) => {
|
|
145
|
+
if (url[0].path === "ratings") {
|
|
146
|
+
this.selectedTabIndex = 1;
|
|
147
|
+
}
|
|
148
|
+
else if (url[0].path === "estimates") {
|
|
149
|
+
this.selectedTabIndex = 2;
|
|
150
|
+
}
|
|
151
|
+
else {
|
|
152
|
+
this.selectedTabIndex = 0;
|
|
153
|
+
}
|
|
154
|
+
});
|
|
155
|
+
this.supplierId = this.route.snapshot.params["id"];
|
|
156
|
+
this.getSupplier(this.supplierId);
|
|
157
|
+
}
|
|
158
|
+
onTabChange(event) {
|
|
159
|
+
switch (event.index) {
|
|
160
|
+
case 0:
|
|
161
|
+
this.router.navigate(["incidents"], { relativeTo: this.route });
|
|
162
|
+
return;
|
|
163
|
+
case 1:
|
|
164
|
+
this.router.navigate(["ratings"], { relativeTo: this.route });
|
|
165
|
+
return;
|
|
166
|
+
case 2:
|
|
167
|
+
this.router.navigate(["estimates"], { relativeTo: this.route });
|
|
168
|
+
return;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
async getSupplier(id) {
|
|
172
|
+
this.isLoading = true;
|
|
173
|
+
let result = await lastValueFrom(this.supplierService.show(id));
|
|
174
|
+
this.isLoading = false;
|
|
175
|
+
this.supplier = result.item;
|
|
176
|
+
}
|
|
177
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SupplierViewComponent, deps: [{ token: SupplierService }, { token: i2.ActivatedRoute }, { token: i2.Router }], target: i0.ɵɵFactoryTarget.Component });
|
|
178
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: SupplierViewComponent, selector: "app-supplier-view", ngImport: i0, template: "<mat-progress-bar *ngIf=\"isLoading\" mode=\"indeterminate\"></mat-progress-bar>\n\n<div *ngIf=\"supplier\" class=\"d-flex justify-content-start gap-3\">\n <div style=\"width: 300px\">\n <app-supplier-information [supplier]=\"supplier\"></app-supplier-information>\n <mat-card class=\"mt-3\">\n <mat-card-content class=\"p-0\">\n <app-note-list\n modelType=\"Supplier\"\n [relatedModelId]=\"supplier?.id\"\n ></app-note-list>\n </mat-card-content>\n </mat-card>\n </div>\n\n <div style=\"width: calc(100% - 300px - 1rem)\">\n <mat-card style=\"width: fit-content\">\n <mat-card-content class=\"p-0\">\n <mat-tab-group\n mat-stretch-tabs=\"false\"\n mat-align-tabs=\"start\"\n [selectedIndex]=\"selectedTabIndex\"\n (selectedTabChange)=\"onTabChange($event)\"\n >\n <mat-tab>\n <ng-template mat-tab-label>\n <div\n class=\"d-flex justify-content-start align-items-center gap-1\"\n >\n <span class=\"material-symbols-outlined\">unknown_document</span>\n <span class=\"pl-2\">Incidents</span>\n </div>\n </ng-template>\n </mat-tab>\n <mat-tab>\n <ng-template mat-tab-label>\n <div\n class=\"d-flex justify-content-start align-items-center gap-1\"\n >\n <span class=\"material-symbols-outlined\">star</span>\n <span class=\"pl-2\">Ratings</span>\n </div>\n </ng-template>\n </mat-tab>\n <mat-tab>\n <ng-template mat-tab-label>\n <div\n class=\"d-flex justify-content-start align-items-center gap-1\"\n >\n <span class=\"material-symbols-outlined\">price_change</span>\n <span class=\"pl-2\">Estimates</span>\n </div>\n </ng-template>\n </mat-tab>\n </mat-tab-group>\n </mat-card-content>\n </mat-card>\n <router-outlet></router-outlet>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "component", type: i3.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i3.MatCardContent, selector: "mat-card-content" }, { kind: "component", type: i7.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }, { kind: "directive", type: i6$1.MatTabLabel, selector: "[mat-tab-label], [matTabLabel]" }, { kind: "component", type: i6$1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass"], exportAs: ["matTab"] }, { kind: "component", type: i6$1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }, { kind: "component", type: i1$1.NoteListComponent, selector: "app-note-list", inputs: ["relatedModelId", "modelType", "readonly", "labelText", "commentsView", "viewMode"] }, { kind: "component", type: SupplierInformationComponent, selector: "app-supplier-information", inputs: ["supplier"] }], preserveWhitespaces: true });
|
|
179
|
+
}
|
|
180
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SupplierViewComponent, decorators: [{
|
|
181
|
+
type: Component,
|
|
182
|
+
args: [{ selector: "app-supplier-view", template: "<mat-progress-bar *ngIf=\"isLoading\" mode=\"indeterminate\"></mat-progress-bar>\n\n<div *ngIf=\"supplier\" class=\"d-flex justify-content-start gap-3\">\n <div style=\"width: 300px\">\n <app-supplier-information [supplier]=\"supplier\"></app-supplier-information>\n <mat-card class=\"mt-3\">\n <mat-card-content class=\"p-0\">\n <app-note-list\n modelType=\"Supplier\"\n [relatedModelId]=\"supplier?.id\"\n ></app-note-list>\n </mat-card-content>\n </mat-card>\n </div>\n\n <div style=\"width: calc(100% - 300px - 1rem)\">\n <mat-card style=\"width: fit-content\">\n <mat-card-content class=\"p-0\">\n <mat-tab-group\n mat-stretch-tabs=\"false\"\n mat-align-tabs=\"start\"\n [selectedIndex]=\"selectedTabIndex\"\n (selectedTabChange)=\"onTabChange($event)\"\n >\n <mat-tab>\n <ng-template mat-tab-label>\n <div\n class=\"d-flex justify-content-start align-items-center gap-1\"\n >\n <span class=\"material-symbols-outlined\">unknown_document</span>\n <span class=\"pl-2\">Incidents</span>\n </div>\n </ng-template>\n </mat-tab>\n <mat-tab>\n <ng-template mat-tab-label>\n <div\n class=\"d-flex justify-content-start align-items-center gap-1\"\n >\n <span class=\"material-symbols-outlined\">star</span>\n <span class=\"pl-2\">Ratings</span>\n </div>\n </ng-template>\n </mat-tab>\n <mat-tab>\n <ng-template mat-tab-label>\n <div\n class=\"d-flex justify-content-start align-items-center gap-1\"\n >\n <span class=\"material-symbols-outlined\">price_change</span>\n <span class=\"pl-2\">Estimates</span>\n </div>\n </ng-template>\n </mat-tab>\n </mat-tab-group>\n </mat-card-content>\n </mat-card>\n <router-outlet></router-outlet>\n </div>\n</div>\n" }]
|
|
183
|
+
}], ctorParameters: () => [{ type: SupplierService }, { type: i2.ActivatedRoute }, { type: i2.Router }] });
|
|
184
|
+
|
|
185
|
+
class SupplierFormService extends TechlifyFormService {
|
|
186
|
+
constructor() {
|
|
187
|
+
super();
|
|
188
|
+
}
|
|
189
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SupplierFormService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
190
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SupplierFormService, providedIn: "root" });
|
|
191
|
+
}
|
|
192
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SupplierFormService, decorators: [{
|
|
193
|
+
type: Injectable,
|
|
194
|
+
args: [{
|
|
195
|
+
providedIn: "root",
|
|
196
|
+
}]
|
|
197
|
+
}], ctorParameters: () => [] });
|
|
198
|
+
|
|
199
|
+
class SupplierComponent {
|
|
200
|
+
dialog;
|
|
201
|
+
supplierFormService;
|
|
202
|
+
constructor(dialog, supplierFormService) {
|
|
203
|
+
this.dialog = dialog;
|
|
204
|
+
this.supplierFormService = supplierFormService;
|
|
205
|
+
}
|
|
206
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SupplierComponent, deps: [{ token: i1.MatDialog }, { token: SupplierFormService }], target: i0.ɵɵFactoryTarget.Component });
|
|
207
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: SupplierComponent, selector: "app-supplier", ngImport: i0, template: "<div>\n <router-outlet></router-outlet>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i2.RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }], preserveWhitespaces: true });
|
|
208
|
+
}
|
|
209
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SupplierComponent, decorators: [{
|
|
210
|
+
type: Component,
|
|
211
|
+
args: [{ selector: "app-supplier", template: "<div>\n <router-outlet></router-outlet>\n</div>\n" }]
|
|
212
|
+
}], ctorParameters: () => [{ type: i1.MatDialog }, { type: SupplierFormService }] });
|
|
213
|
+
|
|
214
|
+
class SupplierTypeService {
|
|
215
|
+
httpService;
|
|
216
|
+
constructor(httpService) {
|
|
217
|
+
this.httpService = httpService;
|
|
218
|
+
}
|
|
219
|
+
/**
|
|
220
|
+
* get all suppliers from API
|
|
221
|
+
*
|
|
222
|
+
*/
|
|
223
|
+
index() {
|
|
224
|
+
return this.httpService.get(`api/supplier-types`);
|
|
225
|
+
}
|
|
226
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SupplierTypeService, deps: [{ token: i1$1.HttpService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
227
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SupplierTypeService, providedIn: "root" });
|
|
228
|
+
}
|
|
229
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SupplierTypeService, decorators: [{
|
|
230
|
+
type: Injectable,
|
|
231
|
+
args: [{
|
|
232
|
+
providedIn: "root",
|
|
233
|
+
}]
|
|
234
|
+
}], ctorParameters: () => [{ type: i1$1.HttpService }] });
|
|
235
|
+
|
|
236
|
+
let SuppliersListComponent = class SuppliersListComponent extends TechlifyListingControllerInterface {
|
|
237
|
+
spinner;
|
|
238
|
+
fb;
|
|
239
|
+
supplierService;
|
|
240
|
+
supplierTypeService;
|
|
241
|
+
errorHandler;
|
|
242
|
+
filterService;
|
|
243
|
+
activatedRoute;
|
|
244
|
+
alertService;
|
|
245
|
+
dialog;
|
|
246
|
+
supplierFormService;
|
|
247
|
+
displayedColumns = [
|
|
248
|
+
"#",
|
|
249
|
+
"company_name",
|
|
250
|
+
"contact_name",
|
|
251
|
+
"phone",
|
|
252
|
+
"address",
|
|
253
|
+
"email",
|
|
254
|
+
"details",
|
|
255
|
+
"actions",
|
|
256
|
+
];
|
|
257
|
+
filterFormGroup;
|
|
258
|
+
dataSource = new MatTableDataSource();
|
|
259
|
+
totalItems = 0;
|
|
260
|
+
currentPage = 1;
|
|
261
|
+
routeFilters;
|
|
262
|
+
supplierTypes;
|
|
263
|
+
isLoading = false;
|
|
264
|
+
constructor(spinner, fb, supplierService, supplierTypeService, errorHandler, filterService, activatedRoute, alertService, dialog, supplierFormService) {
|
|
265
|
+
super();
|
|
266
|
+
this.spinner = spinner;
|
|
267
|
+
this.fb = fb;
|
|
268
|
+
this.supplierService = supplierService;
|
|
269
|
+
this.supplierTypeService = supplierTypeService;
|
|
270
|
+
this.errorHandler = errorHandler;
|
|
271
|
+
this.filterService = filterService;
|
|
272
|
+
this.activatedRoute = activatedRoute;
|
|
273
|
+
this.alertService = alertService;
|
|
274
|
+
this.dialog = dialog;
|
|
275
|
+
this.supplierFormService = supplierFormService;
|
|
276
|
+
this.page = 1;
|
|
277
|
+
this.perPage = 25;
|
|
278
|
+
this.models = [];
|
|
279
|
+
this.filterFormGroup = this.fb.group({
|
|
280
|
+
search: [""],
|
|
281
|
+
supplier_type_ids: ["1,2"],
|
|
282
|
+
num_items: [this.perPage + "|" + this.currentPage],
|
|
283
|
+
sort_by: [""],
|
|
284
|
+
});
|
|
285
|
+
this.supplierTypes = [];
|
|
286
|
+
}
|
|
287
|
+
ngOnInit() {
|
|
288
|
+
this.patchFiltersFromRoute();
|
|
289
|
+
this.listenForChanges();
|
|
290
|
+
this.getSupplierTypes();
|
|
291
|
+
this.loadData();
|
|
292
|
+
}
|
|
293
|
+
listenForChanges() {
|
|
294
|
+
// listen for supplier added event to update the list.
|
|
295
|
+
this.supplierFormService.isListUpdated().subscribe((val) => {
|
|
296
|
+
if (val && !this.isLoading)
|
|
297
|
+
this.reload();
|
|
298
|
+
});
|
|
299
|
+
// listen for form group changes.
|
|
300
|
+
this.filterFormGroup.valueChanges
|
|
301
|
+
.pipe(debounceTime(500), untilDestroyed(this))
|
|
302
|
+
.subscribe((changes) => {
|
|
303
|
+
this.filterService.applyFilterToRoute(this.activatedRoute, this.filterFormGroup.value);
|
|
304
|
+
this.reload();
|
|
305
|
+
});
|
|
306
|
+
}
|
|
307
|
+
patchFiltersFromRoute() {
|
|
308
|
+
this.routeFilters = this.filterService.getFiltersFromRoute(this.activatedRoute, this.filterFormGroup.value);
|
|
309
|
+
this.filterFormGroup.setValue(this.routeFilters);
|
|
310
|
+
if (this.routeFilters.supplier_type_ids) {
|
|
311
|
+
this.filterFormGroup
|
|
312
|
+
.get("supplier_type_ids")
|
|
313
|
+
.setValue(this.routeFilters.supplier_type_ids.split(",").map(Number));
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
sortColumn(event) {
|
|
317
|
+
var direction = event.direction.toString().toUpperCase();
|
|
318
|
+
this.assignFilter(event.active, direction);
|
|
319
|
+
}
|
|
320
|
+
assignFilter(column, direction) {
|
|
321
|
+
return this.filterFormGroup
|
|
322
|
+
.get("sort_by")
|
|
323
|
+
?.setValue(column + "|" + direction);
|
|
324
|
+
}
|
|
325
|
+
async getSupplierTypes() {
|
|
326
|
+
try {
|
|
327
|
+
let res = await lastValueFrom(this.supplierTypeService.index());
|
|
328
|
+
this.supplierTypes = res.data;
|
|
329
|
+
console.log(this.supplierTypes);
|
|
330
|
+
}
|
|
331
|
+
catch (error) {
|
|
332
|
+
this.errorHandler.handleError(error);
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
async loadData() {
|
|
336
|
+
let filters = this.filterFormGroup.value;
|
|
337
|
+
filters.page = this.page = 1;
|
|
338
|
+
filters.per_page = this.perPage;
|
|
339
|
+
filters.supplier_type_ids = filters?.supplier_type_ids?.toString();
|
|
340
|
+
filters.num_items = this.perPage + "|" + this.currentPage;
|
|
341
|
+
try {
|
|
342
|
+
this.isLoading = true;
|
|
343
|
+
let res = await lastValueFrom(this.supplierService.index(filters));
|
|
344
|
+
if (this.models.length < 1) {
|
|
345
|
+
this.models = res.data;
|
|
346
|
+
}
|
|
347
|
+
else {
|
|
348
|
+
res.data.forEach((item) => this.models.push(item));
|
|
349
|
+
}
|
|
350
|
+
this.dataSource = new MatTableDataSource(this.models);
|
|
351
|
+
this.totalItems = res.total;
|
|
352
|
+
this.lastPage = res.last_page || this.page;
|
|
353
|
+
// list is updated do not listen form isListUpdated
|
|
354
|
+
this.supplierFormService.listUpdated(false);
|
|
355
|
+
}
|
|
356
|
+
catch (error) {
|
|
357
|
+
this.errorHandler.handleError(error);
|
|
358
|
+
}
|
|
359
|
+
finally {
|
|
360
|
+
this.isLoading = false;
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
reload() {
|
|
364
|
+
if (this.isLoading)
|
|
365
|
+
return;
|
|
366
|
+
this.models = [];
|
|
367
|
+
this.currentPage = 1;
|
|
368
|
+
this.loadData();
|
|
369
|
+
}
|
|
370
|
+
onScroll() {
|
|
371
|
+
if (this.totalItems > this.models.length && !this.isLoading) {
|
|
372
|
+
this.currentPage += 1;
|
|
373
|
+
this.loadData();
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
editForm(model) {
|
|
377
|
+
const dialogRef = this.dialog.open(SupplierFormComponent, {
|
|
378
|
+
width: "400px",
|
|
379
|
+
autoFocus: false,
|
|
380
|
+
data: {
|
|
381
|
+
details: model,
|
|
382
|
+
},
|
|
383
|
+
});
|
|
384
|
+
dialogRef.afterClosed().subscribe((result) => {
|
|
385
|
+
if (result) {
|
|
386
|
+
this.reload();
|
|
387
|
+
}
|
|
388
|
+
});
|
|
389
|
+
}
|
|
390
|
+
deleteForm(supplier) {
|
|
391
|
+
const dialogRef = this.dialog.open(ActionPopupComponent, {
|
|
392
|
+
width: "400px",
|
|
393
|
+
data: {
|
|
394
|
+
title: "Delete Supplier",
|
|
395
|
+
message: "Are you sure you want to delete the Supplier?",
|
|
396
|
+
},
|
|
397
|
+
autoFocus: false,
|
|
398
|
+
});
|
|
399
|
+
dialogRef.afterClosed().subscribe(async (result) => {
|
|
400
|
+
if (result) {
|
|
401
|
+
this.spinner.show();
|
|
402
|
+
try {
|
|
403
|
+
const result = await lastValueFrom(this.supplierService.destroy(supplier.id));
|
|
404
|
+
this.alertService.addAlert("Successfully deleted the Supplier", "success");
|
|
405
|
+
this.reload();
|
|
406
|
+
}
|
|
407
|
+
catch (error) {
|
|
408
|
+
this.errorHandler.handleError(error);
|
|
409
|
+
}
|
|
410
|
+
finally {
|
|
411
|
+
this.spinner.hide();
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
});
|
|
415
|
+
}
|
|
416
|
+
/**
|
|
417
|
+
* Show the supplier create form.
|
|
418
|
+
*
|
|
419
|
+
* @param model
|
|
420
|
+
*/
|
|
421
|
+
showAddSupplierDialog(model) {
|
|
422
|
+
const dialogRef = this.dialog.open(SupplierFormComponent, {
|
|
423
|
+
width: "400px",
|
|
424
|
+
autoFocus: false,
|
|
425
|
+
data: {
|
|
426
|
+
model,
|
|
427
|
+
},
|
|
428
|
+
});
|
|
429
|
+
dialogRef.afterClosed().subscribe((result) => {
|
|
430
|
+
if (result) {
|
|
431
|
+
// record added successfully, inform the list component.
|
|
432
|
+
this.supplierFormService.listUpdated(true);
|
|
433
|
+
}
|
|
434
|
+
});
|
|
435
|
+
}
|
|
436
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SuppliersListComponent, deps: [{ token: i3$2.NgxSpinnerService }, { token: i2$1.FormBuilder }, { token: SupplierService }, { token: SupplierTypeService }, { token: i1$1.ErrorHandlerService }, { token: i1$1.FilterService }, { token: i2.ActivatedRoute }, { token: i1$1.AlertService }, { token: i1.MatDialog }, { token: SupplierFormService }], target: i0.ɵɵFactoryTarget.Component });
|
|
437
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: SuppliersListComponent, selector: "app-suppliers-list", usesInheritance: true, ngImport: i0, template: "<div class=\"d-flex justify-content-center align-items-center gap-3 mb-3\">\n <h2 class=\"mb-0\">Suppliers</h2>\n <mat-icon\n color=\"primary\"\n class=\"cursor-pointer\"\n (click)=\"showAddSupplierDialog()\"\n >\n add\n </mat-icon>\n</div>\n<mat-card class=\"mb-3\">\n <mat-card-content>\n <form\n [formGroup]=\"filterFormGroup\"\n fxLayout\n fxLayoutGap=\"1rem\"\n fxLayoutAlign=\"start center\"\n >\n <mat-form-field fxFlex=\"24\">\n <input\n matInput\n placeholder=\"Search Supplier by Name, Phone, Address, Email, Description\"\n formControlName=\"search\"\n />\n <mat-icon matSuffix>search</mat-icon>\n </mat-form-field>\n <mat-label class=\"ml-4\">Type</mat-label>\n <mat-button-toggle-group formControlName=\"supplier_type_ids\" multiple>\n <mat-button-toggle\n *ngFor=\"let item of supplierTypes\"\n [value]=\"item.id\"\n >{{ item.title }}</mat-button-toggle\n >\n </mat-button-toggle-group>\n </form>\n </mat-card-content>\n</mat-card>\n<mat-card>\n <mat-card-content class=\"p-0\">\n <table\n mat-table\n #table\n [dataSource]=\"dataSource\"\n class=\"w-100 table-hover\"\n infiniteScroll\n [infiniteScrollDistance]=\"2\"\n [infiniteScrollThrottle]=\"50\"\n (scrolled)=\"onScroll()\"\n [fromRoot]=\"true\"\n matSort\n (matSortChange)=\"sortColumn($event)\"\n aria-describedby=\"Suppliers List\"\n >\n <ng-container matColumnDef=\"#\">\n <th mat-header-cell *matHeaderCellDef>#</th>\n <td mat-cell *matCellDef=\"let element; let i = index\">{{ i + 1 }}</td>\n </ng-container>\n\n <ng-container matColumnDef=\"company_name\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header>Company</th>\n <td mat-cell *matCellDef=\"let element\">\n <div class=\"d-flex flex-column gap-1\">\n <strong>{{ element?.company_name }}</strong>\n <span class=\"status-pill status-pill-sm status-ongoing\">\n {{ element?.type?.title }}\n </span>\n </div>\n </td>\n </ng-container>\n\n <ng-container matColumnDef=\"contact_name\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header>Contact Name</th>\n <td mat-cell *matCellDef=\"let element\">\n {{ element?.contact_name }}\n </td>\n </ng-container>\n\n <ng-container matColumnDef=\"phone\">\n <th mat-header-cell *matHeaderCellDef>Phone</th>\n <td mat-cell *matCellDef=\"let element\">{{ element?.phone }}</td>\n </ng-container>\n\n <ng-container matColumnDef=\"address\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header>Address</th>\n <td mat-cell *matCellDef=\"let element\">{{ element?.address }}</td>\n </ng-container>\n\n <ng-container matColumnDef=\"email\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header>Email</th>\n <td mat-cell *matCellDef=\"let element\">{{ element?.email }}</td>\n </ng-container>\n\n <ng-container matColumnDef=\"details\">\n <th mat-header-cell *matHeaderCellDef>Description</th>\n <td mat-cell *matCellDef=\"let element\">{{ element?.details }}</td>\n </ng-container>\n\n <ng-container matColumnDef=\"actions\">\n <th mat-header-cell *matHeaderCellDef>Actions</th>\n <td mat-cell *matCellDef=\"let element\">\n <div class=\"text-secondary\" fxLayoutGap=\"1rem\">\n <app-audit-log-for-model\n [modelId]=\"element?.id\"\n modelType=\"Supplier\"\n logView=\"all\"\n ></app-audit-log-for-model>\n <button\n mat-icon-button\n [routerLink]=\"['/suppliers', element.id, 'view']\"\n routerLinkActive=\"route-link-active\"\n *ngxPermissionsOnly=\"['supplier.read']\"\n >\n <mat-icon matTooltip=\"View\">remove_red_eye</mat-icon>\n </button>\n <button\n *ngxPermissionsOnly=\"['supplier.update']\"\n mat-icon-button\n (click)=\"editForm(element)\"\n >\n <mat-icon>edit</mat-icon>\n </button>\n <button\n *ngxPermissionsOnly=\"['supplier.delete']\"\n type=\"button\"\n mat-icon-button\n (click)=\"deleteForm(element)\"\n >\n <mat-icon>delete</mat-icon>\n </button>\n </div>\n </td>\n </ng-container>\n\n <tr mat-header-row *matHeaderRowDef=\"displayedColumns; sticky: true\"></tr>\n <tr mat-row *matRowDef=\"let row; columns: displayedColumns\"></tr>\n </table>\n\n <mat-progress-bar mode=\"indeterminate\" *ngIf=\"isLoading\"></mat-progress-bar>\n </mat-card-content>\n</mat-card>\n", dependencies: [{ kind: "directive", type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: i2.RouterLinkActive, selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "ariaCurrentWhenActive", "routerLinkActive"], outputs: ["isActiveChange"], exportAs: ["routerLinkActive"] }, { kind: "component", type: i7$1.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "directive", type: i12.MatButtonToggleGroup, selector: "mat-button-toggle-group", inputs: ["appearance", "name", "vertical", "value", "multiple", "disabled", "disabledInteractive", "hideSingleSelectionIndicator", "hideMultipleSelectionIndicator"], outputs: ["valueChange", "change"], exportAs: ["matButtonToggleGroup"] }, { kind: "component", type: i12.MatButtonToggle, selector: "mat-button-toggle", inputs: ["aria-label", "aria-labelledby", "id", "name", "value", "tabIndex", "disableRipple", "appearance", "checked", "disabled", "disabledInteractive"], outputs: ["change"], exportAs: ["matButtonToggle"] }, { kind: "component", type: i3.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i3.MatCardContent, selector: "mat-card-content" }, { kind: "component", type: i6$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i6$2.MatLabel, selector: "mat-label" }, { kind: "directive", type: i6$2.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "component", type: i3$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i7$2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { kind: "component", type: i7.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }, { kind: "directive", type: i5.MatSort, selector: "[matSort]", inputs: ["matSortActive", "matSortStart", "matSortDirection", "matSortDisableClear", "matSortDisabled"], outputs: ["matSortChange"], exportAs: ["matSort"] }, { kind: "component", type: i5.MatSortHeader, selector: "[mat-sort-header]", inputs: ["mat-sort-header", "arrowPosition", "start", "disabled", "sortActionDescription", "disableClear"], exportAs: ["matSortHeader"] }, { kind: "component", type: i6$3.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i6$3.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i6$3.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i6$3.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i6$3.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i6$3.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i6$3.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i6$3.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i6$3.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i6$3.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "directive", type: i2$2.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "component", type: i1$1.AuditLogForModelComponent, selector: "app-audit-log-for-model", inputs: ["modelType", "modelId", "logView"] }, { kind: "directive", type: i10.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "directive", type: i10.DefaultLayoutGapDirective, selector: " [fxLayoutGap], [fxLayoutGap.xs], [fxLayoutGap.sm], [fxLayoutGap.md], [fxLayoutGap.lg], [fxLayoutGap.xl], [fxLayoutGap.lt-sm], [fxLayoutGap.lt-md], [fxLayoutGap.lt-lg], [fxLayoutGap.lt-xl], [fxLayoutGap.gt-xs], [fxLayoutGap.gt-sm], [fxLayoutGap.gt-md], [fxLayoutGap.gt-lg]", inputs: ["fxLayoutGap", "fxLayoutGap.xs", "fxLayoutGap.sm", "fxLayoutGap.md", "fxLayoutGap.lg", "fxLayoutGap.xl", "fxLayoutGap.lt-sm", "fxLayoutGap.lt-md", "fxLayoutGap.lt-lg", "fxLayoutGap.lt-xl", "fxLayoutGap.gt-xs", "fxLayoutGap.gt-sm", "fxLayoutGap.gt-md", "fxLayoutGap.gt-lg"] }, { kind: "directive", type: i10.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { kind: "directive", type: i10.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }, { kind: "directive", type: i2$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i10$1.InfiniteScrollDirective, selector: "[infiniteScroll], [infinite-scroll], [data-infinite-scroll]", inputs: ["infiniteScrollDistance", "infiniteScrollUpDistance", "infiniteScrollThrottle", "infiniteScrollDisabled", "infiniteScrollContainer", "scrollWindow", "immediateCheck", "horizontal", "alwaysCallback", "fromRoot"], outputs: ["scrolled", "scrolledUp"] }], preserveWhitespaces: true });
|
|
438
|
+
};
|
|
439
|
+
SuppliersListComponent = __decorate([
|
|
440
|
+
UntilDestroy()
|
|
441
|
+
], SuppliersListComponent);
|
|
442
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SuppliersListComponent, decorators: [{
|
|
443
|
+
type: Component,
|
|
444
|
+
args: [{ selector: "app-suppliers-list", template: "<div class=\"d-flex justify-content-center align-items-center gap-3 mb-3\">\n <h2 class=\"mb-0\">Suppliers</h2>\n <mat-icon\n color=\"primary\"\n class=\"cursor-pointer\"\n (click)=\"showAddSupplierDialog()\"\n >\n add\n </mat-icon>\n</div>\n<mat-card class=\"mb-3\">\n <mat-card-content>\n <form\n [formGroup]=\"filterFormGroup\"\n fxLayout\n fxLayoutGap=\"1rem\"\n fxLayoutAlign=\"start center\"\n >\n <mat-form-field fxFlex=\"24\">\n <input\n matInput\n placeholder=\"Search Supplier by Name, Phone, Address, Email, Description\"\n formControlName=\"search\"\n />\n <mat-icon matSuffix>search</mat-icon>\n </mat-form-field>\n <mat-label class=\"ml-4\">Type</mat-label>\n <mat-button-toggle-group formControlName=\"supplier_type_ids\" multiple>\n <mat-button-toggle\n *ngFor=\"let item of supplierTypes\"\n [value]=\"item.id\"\n >{{ item.title }}</mat-button-toggle\n >\n </mat-button-toggle-group>\n </form>\n </mat-card-content>\n</mat-card>\n<mat-card>\n <mat-card-content class=\"p-0\">\n <table\n mat-table\n #table\n [dataSource]=\"dataSource\"\n class=\"w-100 table-hover\"\n infiniteScroll\n [infiniteScrollDistance]=\"2\"\n [infiniteScrollThrottle]=\"50\"\n (scrolled)=\"onScroll()\"\n [fromRoot]=\"true\"\n matSort\n (matSortChange)=\"sortColumn($event)\"\n aria-describedby=\"Suppliers List\"\n >\n <ng-container matColumnDef=\"#\">\n <th mat-header-cell *matHeaderCellDef>#</th>\n <td mat-cell *matCellDef=\"let element; let i = index\">{{ i + 1 }}</td>\n </ng-container>\n\n <ng-container matColumnDef=\"company_name\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header>Company</th>\n <td mat-cell *matCellDef=\"let element\">\n <div class=\"d-flex flex-column gap-1\">\n <strong>{{ element?.company_name }}</strong>\n <span class=\"status-pill status-pill-sm status-ongoing\">\n {{ element?.type?.title }}\n </span>\n </div>\n </td>\n </ng-container>\n\n <ng-container matColumnDef=\"contact_name\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header>Contact Name</th>\n <td mat-cell *matCellDef=\"let element\">\n {{ element?.contact_name }}\n </td>\n </ng-container>\n\n <ng-container matColumnDef=\"phone\">\n <th mat-header-cell *matHeaderCellDef>Phone</th>\n <td mat-cell *matCellDef=\"let element\">{{ element?.phone }}</td>\n </ng-container>\n\n <ng-container matColumnDef=\"address\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header>Address</th>\n <td mat-cell *matCellDef=\"let element\">{{ element?.address }}</td>\n </ng-container>\n\n <ng-container matColumnDef=\"email\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header>Email</th>\n <td mat-cell *matCellDef=\"let element\">{{ element?.email }}</td>\n </ng-container>\n\n <ng-container matColumnDef=\"details\">\n <th mat-header-cell *matHeaderCellDef>Description</th>\n <td mat-cell *matCellDef=\"let element\">{{ element?.details }}</td>\n </ng-container>\n\n <ng-container matColumnDef=\"actions\">\n <th mat-header-cell *matHeaderCellDef>Actions</th>\n <td mat-cell *matCellDef=\"let element\">\n <div class=\"text-secondary\" fxLayoutGap=\"1rem\">\n <app-audit-log-for-model\n [modelId]=\"element?.id\"\n modelType=\"Supplier\"\n logView=\"all\"\n ></app-audit-log-for-model>\n <button\n mat-icon-button\n [routerLink]=\"['/suppliers', element.id, 'view']\"\n routerLinkActive=\"route-link-active\"\n *ngxPermissionsOnly=\"['supplier.read']\"\n >\n <mat-icon matTooltip=\"View\">remove_red_eye</mat-icon>\n </button>\n <button\n *ngxPermissionsOnly=\"['supplier.update']\"\n mat-icon-button\n (click)=\"editForm(element)\"\n >\n <mat-icon>edit</mat-icon>\n </button>\n <button\n *ngxPermissionsOnly=\"['supplier.delete']\"\n type=\"button\"\n mat-icon-button\n (click)=\"deleteForm(element)\"\n >\n <mat-icon>delete</mat-icon>\n </button>\n </div>\n </td>\n </ng-container>\n\n <tr mat-header-row *matHeaderRowDef=\"displayedColumns; sticky: true\"></tr>\n <tr mat-row *matRowDef=\"let row; columns: displayedColumns\"></tr>\n </table>\n\n <mat-progress-bar mode=\"indeterminate\" *ngIf=\"isLoading\"></mat-progress-bar>\n </mat-card-content>\n</mat-card>\n" }]
|
|
445
|
+
}], ctorParameters: () => [{ type: i3$2.NgxSpinnerService }, { type: i2$1.FormBuilder }, { type: SupplierService }, { type: SupplierTypeService }, { type: i1$1.ErrorHandlerService }, { type: i1$1.FilterService }, { type: i2.ActivatedRoute }, { type: i1$1.AlertService }, { type: i1.MatDialog }, { type: SupplierFormService }] });
|
|
446
|
+
|
|
447
|
+
const routes = [
|
|
448
|
+
{
|
|
449
|
+
path: "",
|
|
450
|
+
component: SupplierComponent,
|
|
451
|
+
children: [
|
|
452
|
+
{ path: "", component: SuppliersListComponent },
|
|
453
|
+
{
|
|
454
|
+
path: ":id/view",
|
|
455
|
+
component: SupplierViewComponent,
|
|
456
|
+
children: [
|
|
457
|
+
{
|
|
458
|
+
path: "",
|
|
459
|
+
redirectTo: "incidents",
|
|
460
|
+
pathMatch: "full",
|
|
461
|
+
},
|
|
462
|
+
],
|
|
463
|
+
},
|
|
464
|
+
],
|
|
465
|
+
},
|
|
466
|
+
];
|
|
467
|
+
class SupplierRoutingModule {
|
|
468
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SupplierRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
469
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: SupplierRoutingModule, imports: [i2.RouterModule], exports: [RouterModule] });
|
|
470
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SupplierRoutingModule, imports: [RouterModule.forChild(routes), RouterModule] });
|
|
471
|
+
}
|
|
472
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SupplierRoutingModule, decorators: [{
|
|
473
|
+
type: NgModule,
|
|
474
|
+
args: [{
|
|
475
|
+
imports: [RouterModule.forChild(routes)],
|
|
476
|
+
exports: [RouterModule],
|
|
477
|
+
}]
|
|
478
|
+
}] });
|
|
479
|
+
|
|
480
|
+
/*
|
|
481
|
+
* This module imports and re-exports all Angular Material modules for convenience,
|
|
482
|
+
* so only 1 module import is needed in your feature modules.
|
|
483
|
+
* See https://material.angular.io/guide/getting-started#step-3-import-the-component-modules.
|
|
484
|
+
*
|
|
485
|
+
* To optimize your production builds, you should only import the components used in your app.
|
|
486
|
+
*/
|
|
487
|
+
class MaterialModule {
|
|
488
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MaterialModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
489
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MaterialModule, exports: [MatAutocompleteModule,
|
|
490
|
+
MatBadgeModule,
|
|
491
|
+
MatButtonModule,
|
|
492
|
+
MatButtonToggleModule,
|
|
493
|
+
MatCardModule,
|
|
494
|
+
MatCheckboxModule,
|
|
495
|
+
MatChipsModule,
|
|
496
|
+
MatCommonModule,
|
|
497
|
+
MatDatepickerModule,
|
|
498
|
+
MatDialogModule,
|
|
499
|
+
MatDividerModule,
|
|
500
|
+
MatExpansionModule,
|
|
501
|
+
MatFormFieldModule,
|
|
502
|
+
MatGridListModule,
|
|
503
|
+
MatIconModule,
|
|
504
|
+
MatInputModule,
|
|
505
|
+
MatLineModule,
|
|
506
|
+
MatListModule,
|
|
507
|
+
MatMenuModule,
|
|
508
|
+
MatNativeDateModule,
|
|
509
|
+
MatOptionModule,
|
|
510
|
+
MatPaginatorModule,
|
|
511
|
+
MatProgressBarModule,
|
|
512
|
+
MatProgressSpinnerModule,
|
|
513
|
+
MatPseudoCheckboxModule,
|
|
514
|
+
MatRadioModule,
|
|
515
|
+
MatRippleModule,
|
|
516
|
+
MatSelectModule,
|
|
517
|
+
MatSidenavModule,
|
|
518
|
+
MatSlideToggleModule,
|
|
519
|
+
MatSliderModule,
|
|
520
|
+
MatSnackBarModule,
|
|
521
|
+
MatSortModule,
|
|
522
|
+
MatStepperModule,
|
|
523
|
+
MatTableModule,
|
|
524
|
+
MatTabsModule,
|
|
525
|
+
MatToolbarModule,
|
|
526
|
+
MatTooltipModule,
|
|
527
|
+
MatTreeModule] });
|
|
528
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MaterialModule, imports: [MatAutocompleteModule,
|
|
529
|
+
MatBadgeModule,
|
|
530
|
+
MatButtonModule,
|
|
531
|
+
MatButtonToggleModule,
|
|
532
|
+
MatCardModule,
|
|
533
|
+
MatCheckboxModule,
|
|
534
|
+
MatChipsModule,
|
|
535
|
+
MatCommonModule,
|
|
536
|
+
MatDatepickerModule,
|
|
537
|
+
MatDialogModule,
|
|
538
|
+
MatDividerModule,
|
|
539
|
+
MatExpansionModule,
|
|
540
|
+
MatFormFieldModule,
|
|
541
|
+
MatGridListModule,
|
|
542
|
+
MatIconModule,
|
|
543
|
+
MatInputModule,
|
|
544
|
+
MatLineModule,
|
|
545
|
+
MatListModule,
|
|
546
|
+
MatMenuModule,
|
|
547
|
+
MatNativeDateModule,
|
|
548
|
+
MatOptionModule,
|
|
549
|
+
MatPaginatorModule,
|
|
550
|
+
MatProgressBarModule,
|
|
551
|
+
MatProgressSpinnerModule,
|
|
552
|
+
MatPseudoCheckboxModule,
|
|
553
|
+
MatRadioModule,
|
|
554
|
+
MatRippleModule,
|
|
555
|
+
MatSelectModule,
|
|
556
|
+
MatSidenavModule,
|
|
557
|
+
MatSlideToggleModule,
|
|
558
|
+
MatSliderModule,
|
|
559
|
+
MatSnackBarModule,
|
|
560
|
+
MatSortModule,
|
|
561
|
+
MatStepperModule,
|
|
562
|
+
MatTableModule,
|
|
563
|
+
MatTabsModule,
|
|
564
|
+
MatToolbarModule,
|
|
565
|
+
MatTooltipModule,
|
|
566
|
+
MatTreeModule] });
|
|
567
|
+
}
|
|
568
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MaterialModule, decorators: [{
|
|
569
|
+
type: NgModule,
|
|
570
|
+
args: [{
|
|
571
|
+
exports: [
|
|
572
|
+
MatAutocompleteModule,
|
|
573
|
+
MatBadgeModule,
|
|
574
|
+
MatButtonModule,
|
|
575
|
+
MatButtonToggleModule,
|
|
576
|
+
MatCardModule,
|
|
577
|
+
MatCheckboxModule,
|
|
578
|
+
MatChipsModule,
|
|
579
|
+
MatCommonModule,
|
|
580
|
+
MatDatepickerModule,
|
|
581
|
+
MatDialogModule,
|
|
582
|
+
MatDividerModule,
|
|
583
|
+
MatExpansionModule,
|
|
584
|
+
MatFormFieldModule,
|
|
585
|
+
MatGridListModule,
|
|
586
|
+
MatIconModule,
|
|
587
|
+
MatInputModule,
|
|
588
|
+
MatLineModule,
|
|
589
|
+
MatListModule,
|
|
590
|
+
MatMenuModule,
|
|
591
|
+
MatNativeDateModule,
|
|
592
|
+
MatOptionModule,
|
|
593
|
+
MatPaginatorModule,
|
|
594
|
+
MatProgressBarModule,
|
|
595
|
+
MatProgressSpinnerModule,
|
|
596
|
+
MatPseudoCheckboxModule,
|
|
597
|
+
MatRadioModule,
|
|
598
|
+
MatRippleModule,
|
|
599
|
+
MatSelectModule,
|
|
600
|
+
MatSidenavModule,
|
|
601
|
+
MatSlideToggleModule,
|
|
602
|
+
MatSliderModule,
|
|
603
|
+
MatSnackBarModule,
|
|
604
|
+
MatSortModule,
|
|
605
|
+
MatStepperModule,
|
|
606
|
+
MatTableModule,
|
|
607
|
+
MatTabsModule,
|
|
608
|
+
MatToolbarModule,
|
|
609
|
+
MatTooltipModule,
|
|
610
|
+
MatTreeModule,
|
|
611
|
+
],
|
|
612
|
+
}]
|
|
613
|
+
}] });
|
|
614
|
+
|
|
615
|
+
class SupplierModule {
|
|
616
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SupplierModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
617
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: SupplierModule, declarations: [SupplierComponent,
|
|
618
|
+
SupplierViewComponent,
|
|
619
|
+
SuppliersListComponent,
|
|
620
|
+
SupplierFormComponent,
|
|
621
|
+
SupplierInformationComponent], imports: [CommonModule,
|
|
622
|
+
SupplierRoutingModule,
|
|
623
|
+
MaterialModule,
|
|
624
|
+
SearchableSelectorModule,
|
|
625
|
+
AuditLogForModelModule,
|
|
626
|
+
NoteModule,
|
|
627
|
+
FlexModule,
|
|
628
|
+
ReactiveFormsModule,
|
|
629
|
+
InfiniteScrollModule] });
|
|
630
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SupplierModule, imports: [CommonModule,
|
|
631
|
+
SupplierRoutingModule,
|
|
632
|
+
MaterialModule,
|
|
633
|
+
SearchableSelectorModule,
|
|
634
|
+
AuditLogForModelModule,
|
|
635
|
+
NoteModule,
|
|
636
|
+
FlexModule,
|
|
637
|
+
ReactiveFormsModule,
|
|
638
|
+
InfiniteScrollModule] });
|
|
639
|
+
}
|
|
640
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SupplierModule, decorators: [{
|
|
641
|
+
type: NgModule,
|
|
642
|
+
args: [{
|
|
643
|
+
declarations: [
|
|
644
|
+
SupplierComponent,
|
|
645
|
+
SupplierViewComponent,
|
|
646
|
+
SuppliersListComponent,
|
|
647
|
+
SupplierFormComponent,
|
|
648
|
+
SupplierInformationComponent,
|
|
649
|
+
],
|
|
650
|
+
imports: [
|
|
651
|
+
CommonModule,
|
|
652
|
+
SupplierRoutingModule,
|
|
653
|
+
MaterialModule,
|
|
654
|
+
SearchableSelectorModule,
|
|
655
|
+
AuditLogForModelModule,
|
|
656
|
+
NoteModule,
|
|
657
|
+
FlexModule,
|
|
658
|
+
ReactiveFormsModule,
|
|
659
|
+
InfiniteScrollModule,
|
|
660
|
+
],
|
|
661
|
+
}]
|
|
662
|
+
}] });
|
|
663
|
+
|
|
664
|
+
export { SupplierModule };
|
|
665
|
+
//# sourceMappingURL=techlify-inventory-common-supplier.module-gzHesNtQ.mjs.map
|