techlify-inventory-common 0.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/.editorconfig +13 -0
- package/README.md +27 -0
- package/angular.json +207 -0
- package/e2e/protractor.conf.js +28 -0
- package/e2e/src/app.e2e-spec.ts +14 -0
- package/e2e/src/app.po.ts +11 -0
- package/e2e/tsconfig.e2e.json +13 -0
- package/ng-package.json +6 -0
- package/package.json +92 -0
- package/projects/inventory-common/README.md +24 -0
- package/projects/inventory-common/ng-package.json +7 -0
- package/projects/inventory-common/package.json +12 -0
- package/projects/inventory-common/src/lib/inventory-common/category/category-form/category-form.component.html +41 -0
- package/projects/inventory-common/src/lib/inventory-common/category/category-form/category-form.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/category/category-form/category-form.component.ts +75 -0
- package/projects/inventory-common/src/lib/inventory-common/category/category-form-button/category-form-button.component.html +32 -0
- package/projects/inventory-common/src/lib/inventory-common/category/category-form-button/category-form-button.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/category/category-form-button/category-form-button.component.ts +29 -0
- package/projects/inventory-common/src/lib/inventory-common/category/category-list-page/category-list-page.component.html +79 -0
- package/projects/inventory-common/src/lib/inventory-common/category/category-list-page/category-list-page.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/category/category-list-page/category-list-page.component.ts +61 -0
- package/projects/inventory-common/src/lib/inventory-common/category/category-routing.module.ts +16 -0
- package/projects/inventory-common/src/lib/inventory-common/category/category.module.ts +36 -0
- package/projects/inventory-common/src/lib/inventory-common/category/category.service.ts +11 -0
- package/projects/inventory-common/src/lib/inventory-common/inventory-common-routing.module.ts +65 -0
- package/projects/inventory-common/src/lib/inventory-common/inventory-common.module.ts +24 -0
- package/projects/inventory-common/src/lib/inventory-common/inventory-dashboard-page/inventory-dashboard-page.component.html +88 -0
- package/projects/inventory-common/src/lib/inventory-common/inventory-dashboard-page/inventory-dashboard-page.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/inventory-dashboard-page/inventory-dashboard-page.component.ts +36 -0
- package/projects/inventory-common/src/lib/inventory-common/inventory-value-report.service.ts +19 -0
- package/projects/inventory-common/src/lib/inventory-common/low-stock-report.service.ts +19 -0
- package/projects/inventory-common/src/lib/inventory-common/material.module.ts +95 -0
- package/projects/inventory-common/src/lib/inventory-common/measure/measure-delete/measure-delete-button/measure-delete-button.component.html +37 -0
- package/projects/inventory-common/src/lib/inventory-common/measure/measure-delete/measure-delete-button/measure-delete-button.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/measure/measure-delete/measure-delete-button/measure-delete-button.component.ts +44 -0
- package/projects/inventory-common/src/lib/inventory-common/measure/measure-delete/measure-delete.module.ts +11 -0
- package/projects/inventory-common/src/lib/inventory-common/measure/measure-form/measure-form/measure-form.component.html +66 -0
- package/projects/inventory-common/src/lib/inventory-common/measure/measure-form/measure-form/measure-form.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/measure/measure-form/measure-form/measure-form.component.ts +78 -0
- package/projects/inventory-common/src/lib/inventory-common/measure/measure-form/measure-form-button/measure-form-button.component.html +16 -0
- package/projects/inventory-common/src/lib/inventory-common/measure/measure-form/measure-form-button/measure-form-button.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/measure/measure-form/measure-form-button/measure-form-button.component.ts +29 -0
- package/projects/inventory-common/src/lib/inventory-common/measure/measure-form/measure-form.module.ts +13 -0
- package/projects/inventory-common/src/lib/inventory-common/measure/measure-routing.module.ts +16 -0
- package/projects/inventory-common/src/lib/inventory-common/measure/measure.module.ts +26 -0
- package/projects/inventory-common/src/lib/inventory-common/measure/measure.service.ts +11 -0
- package/projects/inventory-common/src/lib/inventory-common/measure/measures-list/measures-list.component.html +88 -0
- package/projects/inventory-common/src/lib/inventory-common/measure/measures-list/measures-list.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/measure/measures-list/measures-list.component.ts +67 -0
- package/projects/inventory-common/src/lib/inventory-common/product/low-stock-products-widget/low-stock-products-widget.component.html +52 -0
- package/projects/inventory-common/src/lib/inventory-common/product/low-stock-products-widget/low-stock-products-widget.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/product/low-stock-products-widget/low-stock-products-widget.component.ts +42 -0
- package/projects/inventory-common/src/lib/inventory-common/product/low-stock-products-widget/low-stock-products-widget.module.ts +20 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-basic-info/product-basic-info.component.html +114 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-basic-info/product-basic-info.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-basic-info/product-basic-info.component.ts +43 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-delete-button/product-delete-button.component.html +33 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-delete-button/product-delete-button.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-delete-button/product-delete-button.component.ts +53 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-form/product-form.component.html +209 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-form/product-form.component.spec.ts +24 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-form/product-form.component.ts +182 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-form-button/product-form-button.component.html +17 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-form-button/product-form-button.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-form-button/product-form-button.component.ts +39 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-form.service.ts +11 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-import-page/product-import-page.component.html +1 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-import-page/product-import-page.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-import-page/product-import-page.component.ts +66 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-list/product-list.component.html +254 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-list/product-list.component.spec.ts +24 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-list/product-list.component.ts +171 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-measure-form/product-measure-form.component.html +44 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-measure-form/product-measure-form.component.spec.ts +24 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-measure-form/product-measure-form.component.ts +93 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-measures-list/product-measures-list.component.html +90 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-measures-list/product-measures-list.component.spec.ts +24 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-measures-list/product-measures-list.component.ts +153 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-nav-bar/product-nav-bar.component.html +3 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-nav-bar/product-nav-bar.component.spec.ts +24 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-nav-bar/product-nav-bar.component.ts +7 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-quick-search/product-quick-search.component.html +110 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-quick-search/product-quick-search.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-quick-search/product-quick-search.component.ts +102 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-routing.module.ts +49 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-search/product-search.component.html +78 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-search/product-search.component.scss +12 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-search/product-search.component.ts +153 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-search/product-search.module.ts +22 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-summary-chart/product-summary-chart.component.html +11 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-summary-chart/product-summary-chart.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-summary-chart/product-summary-chart.component.ts +62 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-summary-chart/product-summary-chart.module.ts +15 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-summary-widget/product-summary-widget.component.html +9 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-summary-widget/product-summary-widget.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-summary-widget/product-summary-widget.component.ts +39 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-tax/product-tax-delete-button/product-tax-delete-button.component.html +32 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-tax/product-tax-delete-button/product-tax-delete-button.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-tax/product-tax-delete-button/product-tax-delete-button.component.ts +55 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-tax/product-tax-form-button/product-tax-form-button.component.html +49 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-tax/product-tax-form-button/product-tax-form-button.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-tax/product-tax-form-button/product-tax-form-button.component.ts +87 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-tax/product-tax-list/product-tax-list.component.html +48 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-tax/product-tax-list/product-tax-list.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-tax/product-tax-list/product-tax-list.component.ts +33 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-tax/product-tax.module.ts +23 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-tax/product-tax.service.ts +11 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-view-page/product-view-page.component.html +34 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product-view-page/product-view-page.component.ts +63 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product.module.ts +69 -0
- package/projects/inventory-common/src/lib/inventory-common/product/product.service.ts +54 -0
- package/projects/inventory-common/src/lib/inventory-common/product/widgets/product-category-badges/product-category-badges.component.html +8 -0
- package/projects/inventory-common/src/lib/inventory-common/product/widgets/product-category-badges/product-category-badges.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/product/widgets/product-category-badges/product-category-badges.component.ts +16 -0
- package/projects/inventory-common/src/lib/inventory-common/reports/inventory-value-report/inventory-value-report.component.html +140 -0
- package/projects/inventory-common/src/lib/inventory-common/reports/inventory-value-report/inventory-value-report.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/reports/inventory-value-report/inventory-value-report.component.ts +191 -0
- package/projects/inventory-common/src/lib/inventory-common/reports/low-stock-report/low-stock-report.component.html +158 -0
- package/projects/inventory-common/src/lib/inventory-common/reports/low-stock-report/low-stock-report.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/reports/low-stock-report/low-stock-report.component.ts +191 -0
- package/projects/inventory-common/src/lib/inventory-common/services/techlify-form-service.ts +14 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-issuances/stock-issuance-delete-button/stock-issuance-delete-button.component.html +32 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-issuances/stock-issuance-delete-button/stock-issuance-delete-button.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-issuances/stock-issuance-delete-button/stock-issuance-delete-button.component.ts +49 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-issuances/stock-issuance-delete-button/stock-issuance-delete-button.module.ts +11 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-issuances/stock-issuance.service.ts +11 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-issuances/stock-issuances-list/stock-issuances-list.component.html +165 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-issuances/stock-issuances-list/stock-issuances-list.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-issuances/stock-issuances-list/stock-issuances-list.component.ts +113 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-issuances/stock-issuances-list/stock-issuances-list.module.ts +26 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-issuances/stock-issuances-routing.module.ts +16 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-issuances/stock-issuances.module.ts +36 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-issuances/stock-issue-form/stock-issue-form/stock-issue-form.component.html +64 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-issuances/stock-issue-form/stock-issue-form/stock-issue-form.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-issuances/stock-issue-form/stock-issue-form/stock-issue-form.component.ts +115 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-issuances/stock-issue-form/stock-issue-form-button/stock-issue-form-button.component.html +20 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-issuances/stock-issue-form/stock-issue-form-button/stock-issue-form-button.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-issuances/stock-issue-form/stock-issue-form-button/stock-issue-form-button.component.ts +35 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-issuances/stock-issue-form/stock-issue-form.module.ts +29 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-receipts/stock-receipt-delete-button/stock-receipt-delete-button.component.html +32 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-receipts/stock-receipt-delete-button/stock-receipt-delete-button.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-receipts/stock-receipt-delete-button/stock-receipt-delete-button.component.ts +49 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form/stock-receipt-form.component.html +74 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form/stock-receipt-form.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form/stock-receipt-form.component.ts +122 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form-button/stock-receipt-form-button.component.html +18 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form-button/stock-receipt-form-button.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form-button/stock-receipt-form-button.component.ts +33 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form.module.ts +29 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-receipts/stock-receipt.service.ts +11 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-receipts/stock-receipts-list-page/stock-receipts-list-page.component.html +139 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-receipts/stock-receipts-list-page/stock-receipts-list-page.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-receipts/stock-receipts-list-page/stock-receipts-list-page.component.ts +109 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-receipts/stock-receipts-routing.module.ts +16 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-receipts/stock-receipts.module.ts +45 -0
- package/projects/inventory-common/src/lib/inventory-common/stock-summary.service.ts +18 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/payee-selector/payee-selector/payee-selector.component.html +22 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/payee-selector/payee-selector/payee-selector.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/payee-selector/payee-selector/payee-selector.component.ts +44 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/payee-selector/payee-selector.module.ts +19 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier-delete-button/supplier-delete-button.component.css +0 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier-delete-button/supplier-delete-button.component.html +3 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier-delete-button/supplier-delete-button.component.spec.ts +28 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier-delete-button/supplier-delete-button.component.ts +56 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier-form/supplier-form-button/supplier-form-button.component.css +0 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier-form/supplier-form-button/supplier-form-button.component.html +3 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier-form/supplier-form-button/supplier-form-button.component.spec.ts +28 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier-form/supplier-form-button/supplier-form-button.component.ts +40 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier-form/supplier-form.component.html +100 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier-form/supplier-form.component.ts +116 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier-form/supplier-form.service.ts +11 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier-information/supplier-information.component.html +67 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier-information/supplier-information.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier-information/supplier-information.component.ts +68 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier-routing.module.ts +32 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier-type.service.ts +17 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier-view/supplier-view.component.html +60 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier-view/supplier-view.component.ts +58 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier.component.html +3 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier.component.ts +16 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier.module.ts +46 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/supplier.service.ts +57 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/suppliers-list/suppliers-list.component.html +98 -0
- package/projects/inventory-common/src/lib/inventory-common/supplier/suppliers-list/suppliers-list.component.ts +126 -0
- package/projects/inventory-common/src/lib/inventory-common/techlify-filter/techlify-filter.component.html +442 -0
- package/projects/inventory-common/src/lib/inventory-common/techlify-filter/techlify-filter.component.scss +0 -0
- package/projects/inventory-common/src/lib/inventory-common/techlify-filter/techlify-filter.component.ts +109 -0
- package/projects/inventory-common/src/lib/inventory-common/techlify-filter/techlify-filter.module.ts +24 -0
- package/projects/inventory-common/src/public-api.ts +10 -0
- package/projects/inventory-common/tsconfig.lib.json +17 -0
- package/projects/inventory-common/tsconfig.lib.prod.json +13 -0
- package/projects/inventory-common/tsconfig.spec.json +17 -0
- package/public_api.ts +23 -0
- package/releases/techlify-ng-users-0.0.4.tgz +0 -0
- package/releases/techlify-ng-users-0.0.5.tgz +0 -0
- package/src/.htaccess +19 -0
- package/src/app/@modules/@shared/print-button/print-button/print-button.component.html +3 -0
- package/src/app/@modules/@shared/print-button/print-button/print-button.component.scss +0 -0
- package/src/app/@modules/@shared/print-button/print-button/print-button.component.ts +11 -0
- package/src/app/@modules/@shared/print-button/print-button.module.ts +11 -0
- package/src/app/@modules/@shared/print-button/print.service.ts +38 -0
- package/src/app/@modules/@shared/techlify-form-service.ts +14 -0
- package/src/app/@modules/@shared/user-menu/user-menu.component.html +26 -0
- package/src/app/@modules/@shared/user-menu/user-menu.component.spec.ts +23 -0
- package/src/app/@modules/@shared/user-menu/user-menu.component.ts +46 -0
- package/src/app/@modules/@shared/user-menu/user-menu.module.ts +20 -0
- package/src/app/@modules/administration/administration-routing.module.ts +44 -0
- package/src/app/@modules/administration/administration.component.html +3 -0
- package/src/app/@modules/administration/administration.component.ts +11 -0
- package/src/app/@modules/administration/administration.module.ts +18 -0
- package/src/app/@modules/administration/administration.service.ts +33 -0
- package/src/app/@modules/auth/auth-routing.module.ts +17 -0
- package/src/app/@modules/auth/auth.module.ts +12 -0
- package/src/app/@modules/auth/login/login.component.html +302 -0
- package/src/app/@modules/auth/login/login.component.scss +43 -0
- package/src/app/@modules/auth/login/login.component.ts +57 -0
- package/src/app/@modules/inventory-common/category/category-form/category-form.component.html +41 -0
- package/src/app/@modules/inventory-common/category/category-form/category-form.component.scss +0 -0
- package/src/app/@modules/inventory-common/category/category-form/category-form.component.ts +75 -0
- package/src/app/@modules/inventory-common/category/category-form-button/category-form-button.component.html +32 -0
- package/src/app/@modules/inventory-common/category/category-form-button/category-form-button.component.scss +0 -0
- package/src/app/@modules/inventory-common/category/category-form-button/category-form-button.component.ts +29 -0
- package/src/app/@modules/inventory-common/category/category-list-page/category-list-page.component.html +79 -0
- package/src/app/@modules/inventory-common/category/category-list-page/category-list-page.component.scss +0 -0
- package/src/app/@modules/inventory-common/category/category-list-page/category-list-page.component.ts +61 -0
- package/src/app/@modules/inventory-common/category/category-routing.module.ts +16 -0
- package/src/app/@modules/inventory-common/category/category.module.ts +36 -0
- package/src/app/@modules/inventory-common/category/category.service.ts +11 -0
- package/src/app/@modules/inventory-common/inventory-common-routing.module.ts +55 -0
- package/src/app/@modules/inventory-common/inventory-common.module.ts +20 -0
- package/src/app/@modules/inventory-common/inventory-dashboard-page/inventory-dashboard-page.component.html +88 -0
- package/src/app/@modules/inventory-common/inventory-dashboard-page/inventory-dashboard-page.component.scss +0 -0
- package/src/app/@modules/inventory-common/inventory-dashboard-page/inventory-dashboard-page.component.ts +35 -0
- package/src/app/@modules/inventory-common/measure/measure-delete/measure-delete-button/measure-delete-button.component.html +37 -0
- package/src/app/@modules/inventory-common/measure/measure-delete/measure-delete-button/measure-delete-button.component.scss +0 -0
- package/src/app/@modules/inventory-common/measure/measure-delete/measure-delete-button/measure-delete-button.component.ts +44 -0
- package/src/app/@modules/inventory-common/measure/measure-delete/measure-delete.module.ts +11 -0
- package/src/app/@modules/inventory-common/measure/measure-form/measure-form/measure-form.component.html +66 -0
- package/src/app/@modules/inventory-common/measure/measure-form/measure-form/measure-form.component.scss +0 -0
- package/src/app/@modules/inventory-common/measure/measure-form/measure-form/measure-form.component.ts +78 -0
- package/src/app/@modules/inventory-common/measure/measure-form/measure-form-button/measure-form-button.component.html +16 -0
- package/src/app/@modules/inventory-common/measure/measure-form/measure-form-button/measure-form-button.component.scss +0 -0
- package/src/app/@modules/inventory-common/measure/measure-form/measure-form-button/measure-form-button.component.ts +29 -0
- package/src/app/@modules/inventory-common/measure/measure-form/measure-form.module.ts +13 -0
- package/src/app/@modules/inventory-common/measure/measure-routing.module.ts +16 -0
- package/src/app/@modules/inventory-common/measure/measure.module.ts +26 -0
- package/src/app/@modules/inventory-common/measure/measure.service.ts +11 -0
- package/src/app/@modules/inventory-common/measure/measures-list/measures-list.component.html +88 -0
- package/src/app/@modules/inventory-common/measure/measures-list/measures-list.component.scss +0 -0
- package/src/app/@modules/inventory-common/measure/measures-list/measures-list.component.ts +67 -0
- package/src/app/@modules/inventory-common/product/low-stock-products-widget/low-stock-products-widget.component.html +52 -0
- package/src/app/@modules/inventory-common/product/low-stock-products-widget/low-stock-products-widget.component.scss +0 -0
- package/src/app/@modules/inventory-common/product/low-stock-products-widget/low-stock-products-widget.component.ts +42 -0
- package/src/app/@modules/inventory-common/product/low-stock-products-widget/low-stock-products-widget.module.ts +20 -0
- package/src/app/@modules/inventory-common/product/product-basic-info/product-basic-info.component.html +114 -0
- package/src/app/@modules/inventory-common/product/product-basic-info/product-basic-info.component.scss +0 -0
- package/src/app/@modules/inventory-common/product/product-basic-info/product-basic-info.component.ts +43 -0
- package/src/app/@modules/inventory-common/product/product-delete-button/product-delete-button.component.html +33 -0
- package/src/app/@modules/inventory-common/product/product-delete-button/product-delete-button.component.scss +0 -0
- package/src/app/@modules/inventory-common/product/product-delete-button/product-delete-button.component.ts +53 -0
- package/src/app/@modules/inventory-common/product/product-form/product-form.component.html +209 -0
- package/src/app/@modules/inventory-common/product/product-form/product-form.component.spec.ts +24 -0
- package/src/app/@modules/inventory-common/product/product-form/product-form.component.ts +182 -0
- package/src/app/@modules/inventory-common/product/product-form-button/product-form-button.component.html +17 -0
- package/src/app/@modules/inventory-common/product/product-form-button/product-form-button.component.scss +0 -0
- package/src/app/@modules/inventory-common/product/product-form-button/product-form-button.component.ts +39 -0
- package/src/app/@modules/inventory-common/product/product-form.service.ts +11 -0
- package/src/app/@modules/inventory-common/product/product-import-page/product-import-page.component.html +1 -0
- package/src/app/@modules/inventory-common/product/product-import-page/product-import-page.component.scss +0 -0
- package/src/app/@modules/inventory-common/product/product-import-page/product-import-page.component.ts +66 -0
- package/src/app/@modules/inventory-common/product/product-list/product-list.component.html +229 -0
- package/src/app/@modules/inventory-common/product/product-list/product-list.component.spec.ts +24 -0
- package/src/app/@modules/inventory-common/product/product-list/product-list.component.ts +176 -0
- package/src/app/@modules/inventory-common/product/product-measure-form/product-measure-form.component.html +44 -0
- package/src/app/@modules/inventory-common/product/product-measure-form/product-measure-form.component.spec.ts +24 -0
- package/src/app/@modules/inventory-common/product/product-measure-form/product-measure-form.component.ts +93 -0
- package/src/app/@modules/inventory-common/product/product-measures-list/product-measures-list.component.html +90 -0
- package/src/app/@modules/inventory-common/product/product-measures-list/product-measures-list.component.spec.ts +24 -0
- package/src/app/@modules/inventory-common/product/product-measures-list/product-measures-list.component.ts +153 -0
- package/src/app/@modules/inventory-common/product/product-nav-bar/product-nav-bar.component.html +3 -0
- package/src/app/@modules/inventory-common/product/product-nav-bar/product-nav-bar.component.spec.ts +24 -0
- package/src/app/@modules/inventory-common/product/product-nav-bar/product-nav-bar.component.ts +7 -0
- package/src/app/@modules/inventory-common/product/product-routing.module.ts +49 -0
- package/src/app/@modules/inventory-common/product/product-search/product-search.component.html +78 -0
- package/src/app/@modules/inventory-common/product/product-search/product-search.component.scss +12 -0
- package/src/app/@modules/inventory-common/product/product-search/product-search.component.ts +153 -0
- package/src/app/@modules/inventory-common/product/product-search/product-search.module.ts +22 -0
- package/src/app/@modules/inventory-common/product/product-summary-chart/product-summary-chart.component.html +17 -0
- package/src/app/@modules/inventory-common/product/product-summary-chart/product-summary-chart.component.scss +0 -0
- package/src/app/@modules/inventory-common/product/product-summary-chart/product-summary-chart.component.ts +45 -0
- package/src/app/@modules/inventory-common/product/product-summary-chart/product-summary-chart.module.ts +18 -0
- package/src/app/@modules/inventory-common/product/product-tax/product-tax-delete-button/product-tax-delete-button.component.html +32 -0
- package/src/app/@modules/inventory-common/product/product-tax/product-tax-delete-button/product-tax-delete-button.component.scss +0 -0
- package/src/app/@modules/inventory-common/product/product-tax/product-tax-delete-button/product-tax-delete-button.component.ts +55 -0
- package/src/app/@modules/inventory-common/product/product-tax/product-tax-form-button/product-tax-form-button.component.html +49 -0
- package/src/app/@modules/inventory-common/product/product-tax/product-tax-form-button/product-tax-form-button.component.scss +0 -0
- package/src/app/@modules/inventory-common/product/product-tax/product-tax-form-button/product-tax-form-button.component.ts +87 -0
- package/src/app/@modules/inventory-common/product/product-tax/product-tax-list/product-tax-list.component.html +48 -0
- package/src/app/@modules/inventory-common/product/product-tax/product-tax-list/product-tax-list.component.scss +0 -0
- package/src/app/@modules/inventory-common/product/product-tax/product-tax-list/product-tax-list.component.ts +33 -0
- package/src/app/@modules/inventory-common/product/product-tax/product-tax.module.ts +23 -0
- package/src/app/@modules/inventory-common/product/product-tax/product-tax.service.ts +11 -0
- package/src/app/@modules/inventory-common/product/product-view-page/product-view-page.component.html +34 -0
- package/src/app/@modules/inventory-common/product/product-view-page/product-view-page.component.ts +63 -0
- package/src/app/@modules/inventory-common/product/product.module.ts +67 -0
- package/src/app/@modules/inventory-common/product/product.service.ts +54 -0
- package/src/app/@modules/inventory-common/stock-issuances/stock-issuance-delete-button/stock-issuance-delete-button.component.html +32 -0
- package/src/app/@modules/inventory-common/stock-issuances/stock-issuance-delete-button/stock-issuance-delete-button.component.scss +0 -0
- package/src/app/@modules/inventory-common/stock-issuances/stock-issuance-delete-button/stock-issuance-delete-button.component.ts +49 -0
- package/src/app/@modules/inventory-common/stock-issuances/stock-issuance-delete-button/stock-issuance-delete-button.module.ts +11 -0
- package/src/app/@modules/inventory-common/stock-issuances/stock-issuance.service.ts +11 -0
- package/src/app/@modules/inventory-common/stock-issuances/stock-issuances-list/stock-issuances-list.component.html +165 -0
- package/src/app/@modules/inventory-common/stock-issuances/stock-issuances-list/stock-issuances-list.component.scss +0 -0
- package/src/app/@modules/inventory-common/stock-issuances/stock-issuances-list/stock-issuances-list.component.ts +113 -0
- package/src/app/@modules/inventory-common/stock-issuances/stock-issuances-list/stock-issuances-list.module.ts +26 -0
- package/src/app/@modules/inventory-common/stock-issuances/stock-issuances-routing.module.ts +16 -0
- package/src/app/@modules/inventory-common/stock-issuances/stock-issuances.module.ts +36 -0
- package/src/app/@modules/inventory-common/stock-issuances/stock-issue-form/stock-issue-form/stock-issue-form.component.html +64 -0
- package/src/app/@modules/inventory-common/stock-issuances/stock-issue-form/stock-issue-form/stock-issue-form.component.scss +0 -0
- package/src/app/@modules/inventory-common/stock-issuances/stock-issue-form/stock-issue-form/stock-issue-form.component.ts +115 -0
- package/src/app/@modules/inventory-common/stock-issuances/stock-issue-form/stock-issue-form-button/stock-issue-form-button.component.html +20 -0
- package/src/app/@modules/inventory-common/stock-issuances/stock-issue-form/stock-issue-form-button/stock-issue-form-button.component.scss +0 -0
- package/src/app/@modules/inventory-common/stock-issuances/stock-issue-form/stock-issue-form-button/stock-issue-form-button.component.ts +35 -0
- package/src/app/@modules/inventory-common/stock-issuances/stock-issue-form/stock-issue-form.module.ts +29 -0
- package/src/app/@modules/inventory-common/stock-receipts/stock-receipt-delete-button/stock-receipt-delete-button.component.html +32 -0
- package/src/app/@modules/inventory-common/stock-receipts/stock-receipt-delete-button/stock-receipt-delete-button.component.scss +0 -0
- package/src/app/@modules/inventory-common/stock-receipts/stock-receipt-delete-button/stock-receipt-delete-button.component.ts +49 -0
- package/src/app/@modules/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form/stock-receipt-form.component.html +74 -0
- package/src/app/@modules/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form/stock-receipt-form.component.scss +0 -0
- package/src/app/@modules/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form/stock-receipt-form.component.ts +122 -0
- package/src/app/@modules/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form-button/stock-receipt-form-button.component.html +18 -0
- package/src/app/@modules/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form-button/stock-receipt-form-button.component.scss +0 -0
- package/src/app/@modules/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form-button/stock-receipt-form-button.component.ts +33 -0
- package/src/app/@modules/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form.module.ts +29 -0
- package/src/app/@modules/inventory-common/stock-receipts/stock-receipt.service.ts +11 -0
- package/src/app/@modules/inventory-common/stock-receipts/stock-receipts-list-page/stock-receipts-list-page.component.html +139 -0
- package/src/app/@modules/inventory-common/stock-receipts/stock-receipts-list-page/stock-receipts-list-page.component.scss +0 -0
- package/src/app/@modules/inventory-common/stock-receipts/stock-receipts-list-page/stock-receipts-list-page.component.ts +109 -0
- package/src/app/@modules/inventory-common/stock-receipts/stock-receipts-routing.module.ts +16 -0
- package/src/app/@modules/inventory-common/stock-receipts/stock-receipts.module.ts +45 -0
- package/src/app/@modules/inventory-common/stock-summary.service.ts +18 -0
- package/src/app/@modules/inventory-common/supplier/payee-selector/payee-selector/payee-selector.component.html +22 -0
- package/src/app/@modules/inventory-common/supplier/payee-selector/payee-selector/payee-selector.component.scss +0 -0
- package/src/app/@modules/inventory-common/supplier/payee-selector/payee-selector/payee-selector.component.ts +44 -0
- package/src/app/@modules/inventory-common/supplier/payee-selector/payee-selector.module.ts +19 -0
- package/src/app/@modules/inventory-common/supplier/supplier-form/supplier-form.component.html +133 -0
- package/src/app/@modules/inventory-common/supplier/supplier-form/supplier-form.component.ts +116 -0
- package/src/app/@modules/inventory-common/supplier/supplier-form/supplier-form.service.ts +11 -0
- package/src/app/@modules/inventory-common/supplier/supplier-information/supplier-information.component.html +67 -0
- package/src/app/@modules/inventory-common/supplier/supplier-information/supplier-information.component.scss +0 -0
- package/src/app/@modules/inventory-common/supplier/supplier-information/supplier-information.component.ts +68 -0
- package/src/app/@modules/inventory-common/supplier/supplier-routing.module.ts +32 -0
- package/src/app/@modules/inventory-common/supplier/supplier-type.service.ts +17 -0
- package/src/app/@modules/inventory-common/supplier/supplier-view/supplier-view.component.html +60 -0
- package/src/app/@modules/inventory-common/supplier/supplier-view/supplier-view.component.ts +58 -0
- package/src/app/@modules/inventory-common/supplier/supplier.component.html +3 -0
- package/src/app/@modules/inventory-common/supplier/supplier.component.scss +0 -0
- package/src/app/@modules/inventory-common/supplier/supplier.component.ts +16 -0
- package/src/app/@modules/inventory-common/supplier/supplier.module.ts +42 -0
- package/src/app/@modules/inventory-common/supplier/supplier.service.ts +57 -0
- package/src/app/@modules/inventory-common/supplier/suppliers-list/suppliers-list.component.html +140 -0
- package/src/app/@modules/inventory-common/supplier/suppliers-list/suppliers-list.component.ts +240 -0
- package/src/app/@modules/sidebar-layout/expandable-menu/expandable-menu.component.html +10 -0
- package/src/app/@modules/sidebar-layout/expandable-menu/expandable-menu.component.scss +20 -0
- package/src/app/@modules/sidebar-layout/expandable-menu/expandable-menu.component.ts +24 -0
- package/src/app/@modules/sidebar-layout/menu-item.model.ts +12 -0
- package/src/app/@modules/sidebar-layout/sidebar-administration-menu/sidebar-administration-menu.component.html +26 -0
- package/src/app/@modules/sidebar-layout/sidebar-administration-menu/sidebar-administration-menu.component.ts +23 -0
- package/src/app/@modules/sidebar-layout/sidebar-layout/sidebar-layout.component.html +32 -0
- package/src/app/@modules/sidebar-layout/sidebar-layout/sidebar-layout.component.scss +48 -0
- package/src/app/@modules/sidebar-layout/sidebar-layout/sidebar-layout.component.ts +173 -0
- package/src/app/@modules/sidebar-layout/sidebar-layout-routing.module.ts +52 -0
- package/src/app/@modules/sidebar-layout/sidebar-layout.module.ts +52 -0
- package/src/app/@modules/sidebar-layout/top-menu/top-menu.component.html +85 -0
- package/src/app/@modules/sidebar-layout/top-menu/top-menu.component.scss +0 -0
- package/src/app/@modules/sidebar-layout/top-menu/top-menu.component.ts +46 -0
- package/src/app/@modules/sidebar-layout/top-menu/top-menu.service.ts +29 -0
- package/src/app/@modules/techlify-filter/techlify-filter.component.html +442 -0
- package/src/app/@modules/techlify-filter/techlify-filter.component.scss +0 -0
- package/src/app/@modules/techlify-filter/techlify-filter.component.ts +109 -0
- package/src/app/@modules/techlify-filter/techlify-filter.module.ts +24 -0
- package/src/app/@modules/user/user-layout/user-layout.component.html +15 -0
- package/src/app/@modules/user/user-layout/user-layout.component.scss +0 -0
- package/src/app/@modules/user/user-layout/user-layout.component.ts +12 -0
- package/src/app/@modules/user/user-routing.module.ts +23 -0
- package/src/app/@modules/user/user.module.ts +13 -0
- package/src/app/@modules/user-setting-button/user-setting-button/user-setting-button.component.html +15 -0
- package/src/app/@modules/user-setting-button/user-setting-button/user-setting-button.component.scss +0 -0
- package/src/app/@modules/user-setting-button/user-setting-button/user-setting-button.component.ts +12 -0
- package/src/app/@modules/user-setting-button/user-setting-button.module.ts +20 -0
- package/src/app/app-routing.module.ts +28 -0
- package/src/app/app.component.html +1 -0
- package/src/app/app.component.scss +43 -0
- package/src/app/app.component.spec.ts +18 -0
- package/src/app/app.component.ts +62 -0
- package/src/app/app.module.ts +73 -0
- package/src/app/material.module.ts +95 -0
- package/src/assets/.gitkeep +0 -0
- package/src/assets/images/techlify-logo-xs.png +0 -0
- package/src/assets/product/product-import-sample.csv +1 -0
- package/src/environments/common-environment.ts +36 -0
- package/src/environments/environment.prod.ts +10 -0
- package/src/environments/environment.staging.ts +19 -0
- package/src/environments/environment.ts +18 -0
- package/src/favicon.ico +0 -0
- package/src/index.html +34 -0
- package/src/main.ts +19 -0
- package/src/polyfills.ts +57 -0
- package/src/styles.scss +366 -0
- package/src/test.ts +12 -0
- package/src/theme/theme-variables.scss +132 -0
- package/src/theme/theme.scss +17 -0
- package/src/tsconfig.app.json +15 -0
- package/src/tsconfig.spec.json +14 -0
- package/tsconfig.app.json +17 -0
- package/tsconfig.json +69 -0
- package/tslint.json +130 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { NgModule } from "@angular/core";
|
|
2
|
+
import { CommonModule } from "@angular/common";
|
|
3
|
+
import { UserSettingButtonComponent } from "./user-setting-button/user-setting-button.component";
|
|
4
|
+
import { MatButtonModule } from "@angular/material/button";
|
|
5
|
+
import { MatIconModule } from "@angular/material/icon";
|
|
6
|
+
import { MatMenuModule } from "@angular/material/menu";
|
|
7
|
+
import { RouterModule } from "@angular/router";
|
|
8
|
+
|
|
9
|
+
@NgModule({
|
|
10
|
+
declarations: [UserSettingButtonComponent],
|
|
11
|
+
exports: [UserSettingButtonComponent],
|
|
12
|
+
imports: [
|
|
13
|
+
CommonModule,
|
|
14
|
+
MatButtonModule,
|
|
15
|
+
MatIconModule,
|
|
16
|
+
MatMenuModule,
|
|
17
|
+
RouterModule,
|
|
18
|
+
],
|
|
19
|
+
})
|
|
20
|
+
export class UserSettingButtonModule {}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { NgModule } from "@angular/core";
|
|
2
|
+
import { PreloadAllModules, RouterModule, Routes } from "@angular/router";
|
|
3
|
+
import { AuthenticationGuard } from "ngx-techlify-core";
|
|
4
|
+
|
|
5
|
+
const routes: Routes = [
|
|
6
|
+
{
|
|
7
|
+
path: "login",
|
|
8
|
+
loadChildren: () =>
|
|
9
|
+
import("ngx-techlify-core").then((mod) => mod.LoginModule),
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
path: "",
|
|
13
|
+
loadChildren: () =>
|
|
14
|
+
import("@modules/sidebar-layout/sidebar-layout.module").then(
|
|
15
|
+
(mod) => mod.SidebarLayoutModule
|
|
16
|
+
),
|
|
17
|
+
canActivate: [AuthenticationGuard],
|
|
18
|
+
},
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
@NgModule({
|
|
22
|
+
imports: [
|
|
23
|
+
RouterModule.forRoot(routes, { preloadingStrategy: PreloadAllModules }),
|
|
24
|
+
],
|
|
25
|
+
exports: [RouterModule],
|
|
26
|
+
providers: [],
|
|
27
|
+
})
|
|
28
|
+
export class AppRoutingModule {}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<router-outlet></router-outlet>
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
table {
|
|
2
|
+
width: 100%;
|
|
3
|
+
margin: 10px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.mt-10 {
|
|
7
|
+
margin-top: 5rem;
|
|
8
|
+
}
|
|
9
|
+
.mat-nav-link,
|
|
10
|
+
.mat-nav-link:hover {
|
|
11
|
+
font-size: 14px;
|
|
12
|
+
text-decoration: none;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.toolbar-item-spacer {
|
|
16
|
+
flex: 1 1 auto;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.app-container {
|
|
20
|
+
height: 90%;
|
|
21
|
+
margin: 0;
|
|
22
|
+
}
|
|
23
|
+
.app-sidenav {
|
|
24
|
+
position: fixed;
|
|
25
|
+
left: 0;
|
|
26
|
+
max-width: calc(20%);
|
|
27
|
+
min-width: calc(20%);
|
|
28
|
+
max-height: calc(100%);
|
|
29
|
+
min-height: calc(100%);
|
|
30
|
+
box-shadow: none;
|
|
31
|
+
border-right: 1px solid rgb(173, 171, 171);
|
|
32
|
+
}
|
|
33
|
+
.app-sidenav-content {
|
|
34
|
+
display: flex;
|
|
35
|
+
height: 500px;
|
|
36
|
+
align-items: center;
|
|
37
|
+
justify-content: center;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.mat-list-item,
|
|
41
|
+
.mat-expansion-panel-header {
|
|
42
|
+
color: rgb(0, 119, 255);
|
|
43
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { TestBed } from "@angular/core/testing";
|
|
2
|
+
import { RouterTestingModule } from "@angular/router/testing";
|
|
3
|
+
import { AppComponent } from "./app.component";
|
|
4
|
+
|
|
5
|
+
describe("AppComponent", () => {
|
|
6
|
+
beforeEach(async () => {
|
|
7
|
+
await TestBed.configureTestingModule({
|
|
8
|
+
imports: [RouterTestingModule],
|
|
9
|
+
declarations: [AppComponent],
|
|
10
|
+
}).compileComponents();
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
it("should create the app", () => {
|
|
14
|
+
const fixture = TestBed.createComponent(AppComponent);
|
|
15
|
+
const app = fixture.componentInstance;
|
|
16
|
+
expect(app).toBeTruthy();
|
|
17
|
+
});
|
|
18
|
+
});
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { Component, OnInit } from "@angular/core";
|
|
2
|
+
import { CurrentUserService, HttpCacheService, User } from "ngx-techlify-core";
|
|
3
|
+
import { NgxPermissionsService } from "ngx-permissions";
|
|
4
|
+
import { NavigationEnd, Router } from "@angular/router";
|
|
5
|
+
|
|
6
|
+
@Component({
|
|
7
|
+
selector: "app-root",
|
|
8
|
+
templateUrl: "./app.component.html",
|
|
9
|
+
styleUrls: ["./app.component.scss"],
|
|
10
|
+
})
|
|
11
|
+
export class AppComponent implements OnInit {
|
|
12
|
+
constructor(
|
|
13
|
+
private httpCacheService: HttpCacheService,
|
|
14
|
+
private currentUserService: CurrentUserService,
|
|
15
|
+
private ngxPermissionsService: NgxPermissionsService,
|
|
16
|
+
private router: Router
|
|
17
|
+
) {}
|
|
18
|
+
|
|
19
|
+
ngOnInit() {
|
|
20
|
+
// Reset the cache for fresh load
|
|
21
|
+
this.httpCacheService.cleanCache();
|
|
22
|
+
|
|
23
|
+
// update the user and permissions
|
|
24
|
+
this.setupUserAndPermissionsAfterLogin();
|
|
25
|
+
|
|
26
|
+
this.refreshUser();
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
private refreshUser() {
|
|
30
|
+
this.currentUserService.getUserObservable(true).subscribe({
|
|
31
|
+
next: (user: User) => {
|
|
32
|
+
const permissions = ((user?.permissions as []) || []).map(
|
|
33
|
+
(x: any) => x.slug
|
|
34
|
+
);
|
|
35
|
+
if (user?.user_type_id === 1) {
|
|
36
|
+
permissions.push("app_admin");
|
|
37
|
+
} else if (user?.user_type_id === 2) {
|
|
38
|
+
permissions.push("client_admin");
|
|
39
|
+
} else if (user?.user_type_id === 3) {
|
|
40
|
+
permissions.push("client_user");
|
|
41
|
+
}
|
|
42
|
+
this.ngxPermissionsService.loadPermissions(permissions);
|
|
43
|
+
},
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Listen for route change and update the user and permissions.
|
|
49
|
+
*
|
|
50
|
+
* @private
|
|
51
|
+
*/
|
|
52
|
+
private setupUserAndPermissionsAfterLogin() {
|
|
53
|
+
// listen for route change after the login and reset the permissions
|
|
54
|
+
this.router.events.subscribe((event: any) => {
|
|
55
|
+
if (event instanceof NavigationEnd) {
|
|
56
|
+
if (event.url.trim() === "/") {
|
|
57
|
+
this.refreshUser();
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { APP_INITIALIZER, NgModule } from "@angular/core";
|
|
2
|
+
import { BrowserModule } from "@angular/platform-browser";
|
|
3
|
+
|
|
4
|
+
import {
|
|
5
|
+
CoreModule,
|
|
6
|
+
HttpService,
|
|
7
|
+
MaterialModule,
|
|
8
|
+
TechlifyConfig,
|
|
9
|
+
} from "ngx-techlify-core";
|
|
10
|
+
import { AppRoutingModule } from "./app-routing.module";
|
|
11
|
+
import { AppComponent } from "./app.component";
|
|
12
|
+
import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
|
|
13
|
+
import { CurrentUserService, UserConfig } from "ngx-techlify-core";
|
|
14
|
+
import { NgxPermissionsService, NgxPermissionsModule } from "ngx-permissions";
|
|
15
|
+
import { DatePipe } from "@angular/common";
|
|
16
|
+
import { environment } from "src/environments/environment";
|
|
17
|
+
import { NgxSpinnerModule } from "ngx-spinner";
|
|
18
|
+
import { MAT_BUTTON_TOGGLE_DEFAULT_OPTIONS } from "@angular/material/button-toggle";
|
|
19
|
+
|
|
20
|
+
const userConfigInstance = new UserConfig(environment.user);
|
|
21
|
+
const configInstance = new TechlifyConfig(environment);
|
|
22
|
+
|
|
23
|
+
export const setupPermissionFactory = (
|
|
24
|
+
http: HttpService,
|
|
25
|
+
ps: NgxPermissionsService
|
|
26
|
+
) =>
|
|
27
|
+
async function () {
|
|
28
|
+
const userInfo: any = await http.get("api/user/current").toPromise();
|
|
29
|
+
const permissions = ((userInfo?.user?.permissions as []) || []).map(
|
|
30
|
+
(x: any) => x.slug
|
|
31
|
+
);
|
|
32
|
+
if (userInfo?.user?.user_type_id === 1) {
|
|
33
|
+
permissions.push("app_admin");
|
|
34
|
+
} else if (userInfo?.user?.user_type_id === 2) {
|
|
35
|
+
permissions.push("client_admin");
|
|
36
|
+
} else {
|
|
37
|
+
permissions.push("client_user");
|
|
38
|
+
}
|
|
39
|
+
ps.loadPermissions(permissions);
|
|
40
|
+
};
|
|
41
|
+
@NgModule({
|
|
42
|
+
declarations: [AppComponent],
|
|
43
|
+
imports: [
|
|
44
|
+
AppRoutingModule,
|
|
45
|
+
BrowserAnimationsModule,
|
|
46
|
+
BrowserModule,
|
|
47
|
+
CoreModule,
|
|
48
|
+
MaterialModule,
|
|
49
|
+
NgxPermissionsModule.forRoot(),
|
|
50
|
+
NgxSpinnerModule,
|
|
51
|
+
],
|
|
52
|
+
providers: [
|
|
53
|
+
{ provide: TechlifyConfig, useValue: configInstance },
|
|
54
|
+
{ provide: UserConfig, useValue: userConfigInstance },
|
|
55
|
+
{
|
|
56
|
+
provide: APP_INITIALIZER,
|
|
57
|
+
useFactory: setupPermissionFactory,
|
|
58
|
+
deps: [HttpService, NgxPermissionsService],
|
|
59
|
+
multi: true,
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
provide: MAT_BUTTON_TOGGLE_DEFAULT_OPTIONS,
|
|
63
|
+
useValue: {
|
|
64
|
+
hideSingleSelectionIndicator: true,
|
|
65
|
+
hideMultipleSelectionIndicator: true,
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
CurrentUserService,
|
|
69
|
+
DatePipe,
|
|
70
|
+
],
|
|
71
|
+
bootstrap: [AppComponent],
|
|
72
|
+
})
|
|
73
|
+
export class AppModule {}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This module imports and re-exports all Angular Material modules for convenience,
|
|
3
|
+
* so only 1 module import is needed in your feature modules.
|
|
4
|
+
* See https://material.angular.io/guide/getting-started#step-3-import-the-component-modules.
|
|
5
|
+
*
|
|
6
|
+
* To optimize your production builds, you should only import the components used in your app.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
import { NgModule } from "@angular/core";
|
|
10
|
+
import {
|
|
11
|
+
MatCommonModule,
|
|
12
|
+
MatLineModule,
|
|
13
|
+
MatNativeDateModule,
|
|
14
|
+
MatPseudoCheckboxModule,
|
|
15
|
+
MatRippleModule,
|
|
16
|
+
} from "@angular/material/core";
|
|
17
|
+
import { MatOptionModule } from "@angular/material/core";
|
|
18
|
+
import { MatAutocompleteModule } from "@angular/material/autocomplete";
|
|
19
|
+
import { MatBadgeModule } from "@angular/material/badge";
|
|
20
|
+
import { MatButtonModule } from "@angular/material/button";
|
|
21
|
+
import { MatButtonToggleModule } from "@angular/material/button-toggle";
|
|
22
|
+
import { MatCardModule } from "@angular/material/card";
|
|
23
|
+
import { MatCheckboxModule } from "@angular/material/checkbox";
|
|
24
|
+
import { MatChipsModule } from "@angular/material/chips";
|
|
25
|
+
import { MatDatepickerModule } from "@angular/material/datepicker";
|
|
26
|
+
import { MatDialogModule } from "@angular/material/dialog";
|
|
27
|
+
import { MatDividerModule } from "@angular/material/divider";
|
|
28
|
+
import { MatExpansionModule } from "@angular/material/expansion";
|
|
29
|
+
import { MatFormFieldModule } from "@angular/material/form-field";
|
|
30
|
+
import { MatGridListModule } from "@angular/material/grid-list";
|
|
31
|
+
import { MatIconModule } from "@angular/material/icon";
|
|
32
|
+
import { MatInputModule } from "@angular/material/input";
|
|
33
|
+
import { MatListModule } from "@angular/material/list";
|
|
34
|
+
import { MatMenuModule } from "@angular/material/menu";
|
|
35
|
+
import { MatPaginatorModule } from "@angular/material/paginator";
|
|
36
|
+
import { MatProgressBarModule } from "@angular/material/progress-bar";
|
|
37
|
+
import { MatProgressSpinnerModule } from "@angular/material/progress-spinner";
|
|
38
|
+
import { MatRadioModule } from "@angular/material/radio";
|
|
39
|
+
import { MatSelectModule } from "@angular/material/select";
|
|
40
|
+
import { MatSidenavModule } from "@angular/material/sidenav";
|
|
41
|
+
import { MatSlideToggleModule } from "@angular/material/slide-toggle";
|
|
42
|
+
import { MatSliderModule } from "@angular/material/slider";
|
|
43
|
+
import { MatSnackBarModule } from "@angular/material/snack-bar";
|
|
44
|
+
import { MatSortModule } from "@angular/material/sort";
|
|
45
|
+
import { MatStepperModule } from "@angular/material/stepper";
|
|
46
|
+
import { MatTableModule } from "@angular/material/table";
|
|
47
|
+
import { MatTabsModule } from "@angular/material/tabs";
|
|
48
|
+
import { MatToolbarModule } from "@angular/material/toolbar";
|
|
49
|
+
import { MatTooltipModule } from "@angular/material/tooltip";
|
|
50
|
+
import { MatTreeModule } from "@angular/material/tree";
|
|
51
|
+
|
|
52
|
+
@NgModule({
|
|
53
|
+
exports: [
|
|
54
|
+
MatAutocompleteModule,
|
|
55
|
+
MatBadgeModule,
|
|
56
|
+
MatButtonModule,
|
|
57
|
+
MatButtonToggleModule,
|
|
58
|
+
MatCardModule,
|
|
59
|
+
MatCheckboxModule,
|
|
60
|
+
MatChipsModule,
|
|
61
|
+
MatCommonModule,
|
|
62
|
+
MatDatepickerModule,
|
|
63
|
+
MatDialogModule,
|
|
64
|
+
MatDividerModule,
|
|
65
|
+
MatExpansionModule,
|
|
66
|
+
MatFormFieldModule,
|
|
67
|
+
MatGridListModule,
|
|
68
|
+
MatIconModule,
|
|
69
|
+
MatInputModule,
|
|
70
|
+
MatLineModule,
|
|
71
|
+
MatListModule,
|
|
72
|
+
MatMenuModule,
|
|
73
|
+
MatNativeDateModule,
|
|
74
|
+
MatOptionModule,
|
|
75
|
+
MatPaginatorModule,
|
|
76
|
+
MatProgressBarModule,
|
|
77
|
+
MatProgressSpinnerModule,
|
|
78
|
+
MatPseudoCheckboxModule,
|
|
79
|
+
MatRadioModule,
|
|
80
|
+
MatRippleModule,
|
|
81
|
+
MatSelectModule,
|
|
82
|
+
MatSidenavModule,
|
|
83
|
+
MatSlideToggleModule,
|
|
84
|
+
MatSliderModule,
|
|
85
|
+
MatSnackBarModule,
|
|
86
|
+
MatSortModule,
|
|
87
|
+
MatStepperModule,
|
|
88
|
+
MatTableModule,
|
|
89
|
+
MatTabsModule,
|
|
90
|
+
MatToolbarModule,
|
|
91
|
+
MatTooltipModule,
|
|
92
|
+
MatTreeModule,
|
|
93
|
+
],
|
|
94
|
+
})
|
|
95
|
+
export class MaterialModule {}
|
|
File without changes
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Name,SKU,Initial Quantity,Initial Quantity Date,Reorder Point,Measure,Categories
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export const commonEnvironment = {
|
|
2
|
+
projectKey: "INVENTORY",
|
|
3
|
+
storage: localStorage,
|
|
4
|
+
authClientId: 2,
|
|
5
|
+
authGrantType: "password",
|
|
6
|
+
user: {
|
|
7
|
+
appName: "Inventory",
|
|
8
|
+
appLogoUrl: "",
|
|
9
|
+
appUrl: "https://inventory.techlify.com",
|
|
10
|
+
showSignup: false,
|
|
11
|
+
showSocialLogin: false,
|
|
12
|
+
socialLoginRedirectUrl: "",
|
|
13
|
+
showForgotPassword: false,
|
|
14
|
+
allowAppAdminLogin: true,
|
|
15
|
+
loginWithoutSubscription: true,
|
|
16
|
+
allowAllUsersToLogin: true,
|
|
17
|
+
userConfig: {
|
|
18
|
+
showExploreUser: true,
|
|
19
|
+
showRoles: true,
|
|
20
|
+
showPermissions: true,
|
|
21
|
+
showAddUser: true,
|
|
22
|
+
showPhone: false,
|
|
23
|
+
showUserTypes: true,
|
|
24
|
+
userTypes: [
|
|
25
|
+
{
|
|
26
|
+
title: "Admin",
|
|
27
|
+
value: 2,
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
title: "Normal User",
|
|
31
|
+
value: 3,
|
|
32
|
+
},
|
|
33
|
+
],
|
|
34
|
+
},
|
|
35
|
+
},
|
|
36
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { commonEnvironment } from "./common-environment";
|
|
2
|
+
|
|
3
|
+
export const environment = {
|
|
4
|
+
...commonEnvironment,
|
|
5
|
+
production: true,
|
|
6
|
+
version: "0.1",
|
|
7
|
+
apiUrl: "https://api.inventory.techlify.com/public/",
|
|
8
|
+
authClientSecret: "f5VZGE298jQYNATsxkAQHvCCp2gX9ed3HfIWmkgB",
|
|
9
|
+
authGrantType: "password",
|
|
10
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { commonEnvironment } from "./common-environment";
|
|
2
|
+
|
|
3
|
+
export const environment = {
|
|
4
|
+
...commonEnvironment,
|
|
5
|
+
production: true,
|
|
6
|
+
version: "0.1-staging",
|
|
7
|
+
apiUrl: "https://api.inventory.technology.gy/public/",
|
|
8
|
+
authClientSecret: "m5VZGE298jQYNATsxkAQHvCCp2gX9ed3HfIWmkgB",
|
|
9
|
+
authGrantType: "password",
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
/*
|
|
13
|
+
* For easier debugging in development mode, you can import the following file
|
|
14
|
+
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
|
|
15
|
+
*
|
|
16
|
+
* This import should be commented out in production mode because it will have a negative impact
|
|
17
|
+
* on performance if an error is thrown.
|
|
18
|
+
*/
|
|
19
|
+
// import 'zone.js/dist/zone-error'; // Included with Angular CLI.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { commonEnvironment } from "./common-environment";
|
|
2
|
+
|
|
3
|
+
export const environment = {
|
|
4
|
+
...commonEnvironment,
|
|
5
|
+
production: false,
|
|
6
|
+
version: "0.1-dev",
|
|
7
|
+
apiUrl: "http://localhost/inventory-api/public/",
|
|
8
|
+
authClientSecret: "m5VZGE298jQYNATsxkAQHvCCp2gX9ed3HfIWmkgB",
|
|
9
|
+
authGrantType: "password",
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
/*
|
|
13
|
+
* For easier debugging in development mode, you can import the following file
|
|
14
|
+
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
|
|
15
|
+
*
|
|
16
|
+
* This import should be commented out in production mode because it will have a negative impact
|
|
17
|
+
* on performance if an error is thrown.
|
|
18
|
+
*/
|
package/src/favicon.ico
ADDED
|
Binary file
|
package/src/index.html
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<title>InventoryUi</title>
|
|
6
|
+
<base href="/" />
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
8
|
+
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
|
9
|
+
<script
|
|
10
|
+
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
|
|
11
|
+
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
|
|
12
|
+
crossorigin="anonymous"
|
|
13
|
+
></script>
|
|
14
|
+
<link
|
|
15
|
+
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css"
|
|
16
|
+
rel="stylesheet"
|
|
17
|
+
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD"
|
|
18
|
+
crossorigin="anonymous"
|
|
19
|
+
/>
|
|
20
|
+
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
21
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
22
|
+
<link
|
|
23
|
+
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"
|
|
24
|
+
rel="stylesheet"
|
|
25
|
+
/>
|
|
26
|
+
<link
|
|
27
|
+
rel="stylesheet"
|
|
28
|
+
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200"
|
|
29
|
+
/>
|
|
30
|
+
</head>
|
|
31
|
+
<body class="bg-light">
|
|
32
|
+
<app-root></app-root>
|
|
33
|
+
</body>
|
|
34
|
+
</html>
|
package/src/main.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Entry point of the application.
|
|
3
|
+
* Only platform bootstrapping code should be here.
|
|
4
|
+
* For app-specific initialization, use `app/app.component.ts`.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import { enableProdMode } from "@angular/core";
|
|
8
|
+
import { platformBrowserDynamic } from "@angular/platform-browser-dynamic";
|
|
9
|
+
|
|
10
|
+
import { AppModule } from "@app/app.module";
|
|
11
|
+
import { environment } from "@env/environment";
|
|
12
|
+
|
|
13
|
+
if (environment.production) {
|
|
14
|
+
enableProdMode();
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
platformBrowserDynamic()
|
|
18
|
+
.bootstrapModule(AppModule)
|
|
19
|
+
.catch((err) => console.error(err));
|
package/src/polyfills.ts
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/***************************************************************************************************
|
|
2
|
+
* Load `$localize` onto the global scope - used if i18n tags appear in Angular templates.
|
|
3
|
+
*/
|
|
4
|
+
import "@angular/localize/init";
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* This file includes polyfills needed by Angular and is loaded before the app.
|
|
8
|
+
* You can add your own extra polyfills to this file.
|
|
9
|
+
*
|
|
10
|
+
* This file is divided into 2 sections:
|
|
11
|
+
* 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.
|
|
12
|
+
* 2. Application imports. Files imported after ZoneJS that should be loaded before your main
|
|
13
|
+
* file.
|
|
14
|
+
*
|
|
15
|
+
* The current setup is for so-called "evergreen" browsers; the last versions of browsers that
|
|
16
|
+
* automatically update themselves. This includes recent versions of Safari, Chrome (including
|
|
17
|
+
* Opera), Edge on the desktop, and iOS and Chrome on mobile.
|
|
18
|
+
*
|
|
19
|
+
* Learn more in https://angular.io/guide/browser-support
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
/***************************************************************************************************
|
|
23
|
+
* BROWSER POLYFILLS
|
|
24
|
+
*/
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* By default, zone.js will patch all possible macroTask and DomEvents
|
|
28
|
+
* user can disable parts of macroTask/DomEvents patch by setting following flags
|
|
29
|
+
* because those flags need to be set before `zone.js` being loaded, and webpack
|
|
30
|
+
* will put import in the top of bundle, so user need to create a separate file
|
|
31
|
+
* in this directory (for example: zone-flags.ts), and put the following flags
|
|
32
|
+
* into that file, and then add the following code before importing zone.js.
|
|
33
|
+
* import './zone-flags';
|
|
34
|
+
*
|
|
35
|
+
* The flags allowed in zone-flags.ts are listed here.
|
|
36
|
+
*
|
|
37
|
+
* The following flags will work for all browsers.
|
|
38
|
+
*
|
|
39
|
+
* (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame
|
|
40
|
+
* (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick
|
|
41
|
+
* (window as any).__zone_symbol__UNPATCHED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames
|
|
42
|
+
*
|
|
43
|
+
* in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js
|
|
44
|
+
* with the following flag, it will bypass `zone.js` patch for IE/Edge
|
|
45
|
+
*
|
|
46
|
+
* (window as any).__Zone_enable_cross_context_check = true;
|
|
47
|
+
*
|
|
48
|
+
*/
|
|
49
|
+
|
|
50
|
+
/***************************************************************************************************
|
|
51
|
+
* Zone JS is required by default for Angular itself.
|
|
52
|
+
*/
|
|
53
|
+
import "zone.js"; // Included with Angular CLI.
|
|
54
|
+
|
|
55
|
+
/***************************************************************************************************
|
|
56
|
+
* APPLICATION IMPORTS
|
|
57
|
+
*/
|