@hitsoft/e-donusum 1.0.7 → 1.0.9
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/_metronic/kt/_utils/DomHelpers.ts +478 -0
- package/_metronic/kt/_utils/ElementAnimateUtil.ts +111 -0
- package/_metronic/kt/_utils/EventHandlerUtil.ts +144 -0
- package/_metronic/kt/_utils/_DOMEventHandlerUtil.ts +60 -0
- package/_metronic/kt/_utils/_DataUtil.ts +72 -0
- package/_metronic/kt/_utils/_ElementStyleUtil.ts +17 -0
- package/_metronic/kt/_utils/_TypesHelpers.ts +54 -0
- package/_metronic/kt/_utils/index.ts +12 -0
- package/_metronic/kt/_utils/models/OffsetModel.ts +4 -0
- package/_metronic/kt/_utils/models/ViewPortModel.ts +4 -0
- package/_metronic/kt/components/MenuComponent.ts +1093 -0
- package/_metronic/kt/components/_CookieComponent.ts +60 -0
- package/_metronic/kt/components/_DrawerComponent.ts +385 -0
- package/_metronic/kt/components/_FeedbackComponent.ts +152 -0
- package/_metronic/kt/components/_PasswordMeterComponent.ts +273 -0
- package/_metronic/kt/components/_ScrollComponent.ts +312 -0
- package/_metronic/kt/components/_ScrollTopComponent.ts +148 -0
- package/_metronic/kt/components/_StepperComponent.ts +354 -0
- package/_metronic/kt/components/_StickyComponent.ts +293 -0
- package/_metronic/kt/components/_SwapperComponent.ts +208 -0
- package/_metronic/kt/components/_ToggleComponent.ts +218 -0
- package/_metronic/kt/components/index.ts +11 -0
- package/_metronic/kt/index.ts +3 -0
- package/_metronic/kt/kt-helpers.ts +12 -0
- package/_metronic/kt/layout/ThemeMode.ts +211 -0
- package/_metronic/kt/layout/index.ts +1 -0
- package/_metronic/layout/components/content/content.component.html +12 -0
- package/_metronic/layout/components/content/content.component.scss +0 -0
- package/_metronic/layout/components/content/content.component.ts +35 -0
- package/_metronic/layout/components/footer/footer.component.html +32 -0
- package/_metronic/layout/components/footer/footer.component.scss +0 -0
- package/_metronic/layout/components/footer/footer.component.spec.ts +25 -0
- package/_metronic/layout/components/footer/footer.component.ts +13 -0
- package/_metronic/layout/components/header/header-menu/header-menu.component.html +546 -0
- package/_metronic/layout/components/header/header-menu/header-menu.component.scss +4 -0
- package/_metronic/layout/components/header/header-menu/header-menu.component.spec.ts +25 -0
- package/_metronic/layout/components/header/header-menu/header-menu.component.ts +53 -0
- package/_metronic/layout/components/header/header.component.html +87 -0
- package/_metronic/layout/components/header/header.component.scss +0 -0
- package/_metronic/layout/components/header/header.component.spec.ts +25 -0
- package/_metronic/layout/components/header/header.component.ts +139 -0
- package/_metronic/layout/components/header/navbar/navbar.component.html +92 -0
- package/_metronic/layout/components/header/navbar/navbar.component.scss +0 -0
- package/_metronic/layout/components/header/navbar/navbar.component.spec.ts +23 -0
- package/_metronic/layout/components/header/navbar/navbar.component.ts +26 -0
- package/_metronic/layout/components/header/page-title/page-title.component.html +57 -0
- package/_metronic/layout/components/header/page-title/page-title.component.ts +31 -0
- package/_metronic/layout/components/scripts-init/scripts-init.component.html +0 -0
- package/_metronic/layout/components/scripts-init/scripts-init.component.ts +82 -0
- package/_metronic/layout/components/sidebar/sidebar-footer/sidebar-footer.component.html +9 -0
- package/_metronic/layout/components/sidebar/sidebar-footer/sidebar-footer.component.scss +0 -0
- package/_metronic/layout/components/sidebar/sidebar-footer/sidebar-footer.component.spec.ts +23 -0
- package/_metronic/layout/components/sidebar/sidebar-footer/sidebar-footer.component.ts +15 -0
- package/_metronic/layout/components/sidebar/sidebar-logo/sidebar-logo.component.html +26 -0
- package/_metronic/layout/components/sidebar/sidebar-logo/sidebar-logo.component.scss +0 -0
- package/_metronic/layout/components/sidebar/sidebar-logo/sidebar-logo.component.spec.ts +23 -0
- package/_metronic/layout/components/sidebar/sidebar-logo/sidebar-logo.component.ts +36 -0
- package/_metronic/layout/components/sidebar/sidebar-menu/sidebar-menu.component.html +397 -0
- package/_metronic/layout/components/sidebar/sidebar-menu/sidebar-menu.component.scss +0 -0
- package/_metronic/layout/components/sidebar/sidebar-menu/sidebar-menu.component.spec.ts +23 -0
- package/_metronic/layout/components/sidebar/sidebar-menu/sidebar-menu.component.ts +15 -0
- package/_metronic/layout/components/sidebar/sidebar.component.html +16 -0
- package/_metronic/layout/components/sidebar/sidebar.component.scss +0 -0
- package/_metronic/layout/components/sidebar/sidebar.component.spec.ts +23 -0
- package/_metronic/layout/components/sidebar/sidebar.component.ts +203 -0
- package/_metronic/layout/components/toolbar/accounting/accounting.component.html +84 -0
- package/_metronic/layout/components/toolbar/accounting/accounting.component.scss +0 -0
- package/_metronic/layout/components/toolbar/accounting/accounting.component.spec.ts +23 -0
- package/_metronic/layout/components/toolbar/accounting/accounting.component.ts +14 -0
- package/_metronic/layout/components/toolbar/classic/classic.component.html +37 -0
- package/_metronic/layout/components/toolbar/classic/classic.component.scss +0 -0
- package/_metronic/layout/components/toolbar/classic/classic.component.spec.ts +23 -0
- package/_metronic/layout/components/toolbar/classic/classic.component.ts +88 -0
- package/_metronic/layout/components/toolbar/extended/extended.component.html +100 -0
- package/_metronic/layout/components/toolbar/extended/extended.component.scss +0 -0
- package/_metronic/layout/components/toolbar/extended/extended.component.spec.ts +23 -0
- package/_metronic/layout/components/toolbar/extended/extended.component.ts +12 -0
- package/_metronic/layout/components/toolbar/reports/reports.component.html +62 -0
- package/_metronic/layout/components/toolbar/reports/reports.component.scss +0 -0
- package/_metronic/layout/components/toolbar/reports/reports.component.spec.ts +23 -0
- package/_metronic/layout/components/toolbar/reports/reports.component.ts +14 -0
- package/_metronic/layout/components/toolbar/saas/saas.component.html +77 -0
- package/_metronic/layout/components/toolbar/saas/saas.component.scss +0 -0
- package/_metronic/layout/components/toolbar/saas/saas.component.spec.ts +23 -0
- package/_metronic/layout/components/toolbar/saas/saas.component.ts +14 -0
- package/_metronic/layout/components/toolbar/toolbar.component.html +27 -0
- package/_metronic/layout/components/toolbar/toolbar.component.scss +0 -0
- package/_metronic/layout/components/toolbar/toolbar.component.spec.ts +25 -0
- package/_metronic/layout/components/toolbar/toolbar.component.ts +126 -0
- package/_metronic/layout/components/topbar/topbar.component.html +90 -0
- package/_metronic/layout/components/topbar/topbar.component.scss +0 -0
- package/_metronic/layout/components/topbar/topbar.component.spec.ts +25 -0
- package/_metronic/layout/components/topbar/topbar.component.ts +21 -0
- package/_metronic/layout/core/configs/config.ts +215 -0
- package/_metronic/layout/core/configs/dark-header.config.ts +138 -0
- package/_metronic/layout/core/configs/dark-sidebar.config.ts +138 -0
- package/_metronic/layout/core/configs/light-header.config.ts +138 -0
- package/_metronic/layout/core/configs/light-sidebar.config.ts +138 -0
- package/_metronic/layout/core/layout-init.service.ts +133 -0
- package/_metronic/layout/core/layout.service.ts +227 -0
- package/_metronic/layout/core/page-info.service.ts +151 -0
- package/_metronic/layout/index.ts +3 -0
- package/_metronic/layout/layout.component.html +70 -0
- package/_metronic/layout/layout.component.scss +15 -0
- package/_metronic/layout/layout.component.ts +400 -0
- package/_metronic/layout/layout.module.ts +93 -0
- package/_metronic/partials/content/cards/card1/card1.component.html +80 -0
- package/_metronic/partials/content/cards/card1/card1.component.ts +19 -0
- package/_metronic/partials/content/cards/card2/card2.component.html +69 -0
- package/_metronic/partials/content/cards/card2/card2.component.ts +21 -0
- package/_metronic/partials/content/cards/card3/card3.component.html +78 -0
- package/_metronic/partials/content/cards/card3/card3.component.ts +18 -0
- package/_metronic/partials/content/cards/card4/card4.component.html +9 -0
- package/_metronic/partials/content/cards/card4/card4.component.ts +14 -0
- package/_metronic/partials/content/cards/card5/card5.component.html +58 -0
- package/_metronic/partials/content/cards/card5/card5.component.ts +19 -0
- package/_metronic/partials/content/cards/cards.module.ts +39 -0
- package/_metronic/partials/content/cards/icon-user.model.ts +6 -0
- package/_metronic/partials/content/cards/user-list/user-list.component.html +15 -0
- package/_metronic/partials/content/cards/user-list/user-list.component.scss +0 -0
- package/_metronic/partials/content/cards/user-list/user-list.component.spec.ts +25 -0
- package/_metronic/partials/content/cards/user-list/user-list.component.ts +15 -0
- package/_metronic/partials/content/chat-inner/chat-inner.component.html +122 -0
- package/_metronic/partials/content/chat-inner/chat-inner.component.ts +74 -0
- package/_metronic/partials/content/chat-inner/chat-inner.module.ts +11 -0
- package/_metronic/partials/content/chat-inner/dataExample.ts +209 -0
- package/_metronic/partials/content/dropdown-menus/dropdown-menu1/dropdown-menu1.component.html +88 -0
- package/_metronic/partials/content/dropdown-menus/dropdown-menu1/dropdown-menu1.component.ts +15 -0
- package/_metronic/partials/content/dropdown-menus/dropdown-menu2/dropdown-menu2.component.html +53 -0
- package/_metronic/partials/content/dropdown-menus/dropdown-menu2/dropdown-menu2.component.ts +15 -0
- package/_metronic/partials/content/dropdown-menus/dropdown-menu3/dropdown-menu3.component.html +74 -0
- package/_metronic/partials/content/dropdown-menus/dropdown-menu3/dropdown-menu3.component.ts +15 -0
- package/_metronic/partials/content/dropdown-menus/dropdown-menus.module.ts +20 -0
- package/_metronic/partials/content/widgets/_new/cards/cards-widget17/cards-widget17.component.html +100 -0
- package/_metronic/partials/content/widgets/_new/cards/cards-widget17/cards-widget17.component.scss +0 -0
- package/_metronic/partials/content/widgets/_new/cards/cards-widget17/cards-widget17.component.spec.ts +23 -0
- package/_metronic/partials/content/widgets/_new/cards/cards-widget17/cards-widget17.component.ts +89 -0
- package/_metronic/partials/content/widgets/_new/cards/cards-widget18/cards-widget18.component.html +154 -0
- package/_metronic/partials/content/widgets/_new/cards/cards-widget18/cards-widget18.component.scss +0 -0
- package/_metronic/partials/content/widgets/_new/cards/cards-widget18/cards-widget18.component.spec.ts +23 -0
- package/_metronic/partials/content/widgets/_new/cards/cards-widget18/cards-widget18.component.ts +28 -0
- package/_metronic/partials/content/widgets/_new/cards/cards-widget20/cards-widget20.component.html +40 -0
- package/_metronic/partials/content/widgets/_new/cards/cards-widget20/cards-widget20.component.scss +3 -0
- package/_metronic/partials/content/widgets/_new/cards/cards-widget20/cards-widget20.component.spec.ts +23 -0
- package/_metronic/partials/content/widgets/_new/cards/cards-widget20/cards-widget20.component.ts +16 -0
- package/_metronic/partials/content/widgets/_new/cards/cards-widget7/cards-widget7.component.html +47 -0
- package/_metronic/partials/content/widgets/_new/cards/cards-widget7/cards-widget7.component.scss +0 -0
- package/_metronic/partials/content/widgets/_new/cards/cards-widget7/cards-widget7.component.spec.ts +23 -0
- package/_metronic/partials/content/widgets/_new/cards/cards-widget7/cards-widget7.component.ts +29 -0
- package/_metronic/partials/content/widgets/_new/charts/new-charts-widget8/new-charts-widget8.component.html +298 -0
- package/_metronic/partials/content/widgets/_new/charts/new-charts-widget8/new-charts-widget8.component.scss +0 -0
- package/_metronic/partials/content/widgets/_new/charts/new-charts-widget8/new-charts-widget8.component.spec.ts +23 -0
- package/_metronic/partials/content/widgets/_new/charts/new-charts-widget8/new-charts-widget8.component.ts +357 -0
- package/_metronic/partials/content/widgets/_new/engage/engage-widget10/engage-widget10.component.html +47 -0
- package/_metronic/partials/content/widgets/_new/engage/engage-widget10/engage-widget10.component.scss +0 -0
- package/_metronic/partials/content/widgets/_new/engage/engage-widget10/engage-widget10.component.spec.ts +23 -0
- package/_metronic/partials/content/widgets/_new/engage/engage-widget10/engage-widget10.component.ts +15 -0
- package/_metronic/partials/content/widgets/_new/lists/lists-widget26/lists-widget26.component.html +46 -0
- package/_metronic/partials/content/widgets/_new/lists/lists-widget26/lists-widget26.component.scss +0 -0
- package/_metronic/partials/content/widgets/_new/lists/lists-widget26/lists-widget26.component.spec.ts +23 -0
- package/_metronic/partials/content/widgets/_new/lists/lists-widget26/lists-widget26.component.ts +20 -0
- package/_metronic/partials/content/widgets/_new/tables/tables-widget16/tables-widget16.component.html +1 -0
- package/_metronic/partials/content/widgets/_new/tables/tables-widget16/tables-widget16.component.scss +0 -0
- package/_metronic/partials/content/widgets/_new/tables/tables-widget16/tables-widget16.component.spec.ts +23 -0
- package/_metronic/partials/content/widgets/_new/tables/tables-widget16/tables-widget16.component.ts +15 -0
- package/_metronic/partials/content/widgets/advance-tables/advance-tables-widget1/advance-tables-widget1.component.html +400 -0
- package/_metronic/partials/content/widgets/advance-tables/advance-tables-widget1/advance-tables-widget1.component.ts +10 -0
- package/_metronic/partials/content/widgets/advance-tables/advance-tables-widget2/advance-tables-widget2.component.html +357 -0
- package/_metronic/partials/content/widgets/advance-tables/advance-tables-widget2/advance-tables-widget2.component.ts +17 -0
- package/_metronic/partials/content/widgets/advance-tables/advance-tables-widget7/advance-tables-widget7.component.html +1267 -0
- package/_metronic/partials/content/widgets/advance-tables/advance-tables-widget7/advance-tables-widget7.component.ts +16 -0
- package/_metronic/partials/content/widgets/base-tables/base-tables-widget1/base-tables-widget1.component.html +1108 -0
- package/_metronic/partials/content/widgets/base-tables/base-tables-widget1/base-tables-widget1.component.ts +25 -0
- package/_metronic/partials/content/widgets/base-tables/base-tables-widget2/base-tables-widget2.component.html +675 -0
- package/_metronic/partials/content/widgets/base-tables/base-tables-widget2/base-tables-widget2.component.ts +21 -0
- package/_metronic/partials/content/widgets/base-tables/base-tables-widget6/base-tables-widget6.component.html +985 -0
- package/_metronic/partials/content/widgets/base-tables/base-tables-widget6/base-tables-widget6.component.ts +21 -0
- package/_metronic/partials/content/widgets/charts/charts-widget1/charts-widget1.component.html +51 -0
- package/_metronic/partials/content/widgets/charts/charts-widget1/charts-widget1.component.ts +128 -0
- package/_metronic/partials/content/widgets/charts/charts-widget2/charts-widget2.component.html +62 -0
- package/_metronic/partials/content/widgets/charts/charts-widget2/charts-widget2.component.ts +129 -0
- package/_metronic/partials/content/widgets/charts/charts-widget3/charts-widget3.component.html +63 -0
- package/_metronic/partials/content/widgets/charts/charts-widget3/charts-widget3.component.ts +141 -0
- package/_metronic/partials/content/widgets/charts/charts-widget4/charts-widget4.component.html +55 -0
- package/_metronic/partials/content/widgets/charts/charts-widget4/charts-widget4.component.ts +146 -0
- package/_metronic/partials/content/widgets/charts/charts-widget5/charts-widget5.component.html +36 -0
- package/_metronic/partials/content/widgets/charts/charts-widget5/charts-widget5.component.ts +132 -0
- package/_metronic/partials/content/widgets/charts/charts-widget6/charts-widget6.component.html +54 -0
- package/_metronic/partials/content/widgets/charts/charts-widget6/charts-widget6.component.ts +146 -0
- package/_metronic/partials/content/widgets/charts/charts-widget7/charts-widget7.component.html +66 -0
- package/_metronic/partials/content/widgets/charts/charts-widget7/charts-widget7.component.ts +167 -0
- package/_metronic/partials/content/widgets/charts/charts-widget8/charts-widget8.component.html +66 -0
- package/_metronic/partials/content/widgets/charts/charts-widget8/charts-widget8.component.ts +170 -0
- package/_metronic/partials/content/widgets/feeds/feeds-widget2/feeds-widget2.component.html +107 -0
- package/_metronic/partials/content/widgets/feeds/feeds-widget2/feeds-widget2.component.ts +11 -0
- package/_metronic/partials/content/widgets/feeds/feeds-widget3/feeds-widget3.component.html +186 -0
- package/_metronic/partials/content/widgets/feeds/feeds-widget3/feeds-widget3.component.ts +11 -0
- package/_metronic/partials/content/widgets/feeds/feeds-widget4/feeds-widget4.component.html +106 -0
- package/_metronic/partials/content/widgets/feeds/feeds-widget4/feeds-widget4.component.ts +11 -0
- package/_metronic/partials/content/widgets/feeds/feeds-widget5/feeds-widget5.component.html +114 -0
- package/_metronic/partials/content/widgets/feeds/feeds-widget5/feeds-widget5.component.ts +11 -0
- package/_metronic/partials/content/widgets/feeds/feeds-widget6/feeds-widget6.component.html +117 -0
- package/_metronic/partials/content/widgets/feeds/feeds-widget6/feeds-widget6.component.ts +11 -0
- package/_metronic/partials/content/widgets/lists/lists-widget1/lists-widget1.component.html +123 -0
- package/_metronic/partials/content/widgets/lists/lists-widget1/lists-widget1.component.ts +9 -0
- package/_metronic/partials/content/widgets/lists/lists-widget2/lists-widget2.component.html +108 -0
- package/_metronic/partials/content/widgets/lists/lists-widget2/lists-widget2.component.ts +9 -0
- package/_metronic/partials/content/widgets/lists/lists-widget3/lists-widget3.component.html +149 -0
- package/_metronic/partials/content/widgets/lists/lists-widget3/lists-widget3.component.ts +9 -0
- package/_metronic/partials/content/widgets/lists/lists-widget4/lists-widget4.component.html +192 -0
- package/_metronic/partials/content/widgets/lists/lists-widget4/lists-widget4.component.ts +10 -0
- package/_metronic/partials/content/widgets/lists/lists-widget5/lists-widget5.component.html +169 -0
- package/_metronic/partials/content/widgets/lists/lists-widget5/lists-widget5.component.ts +9 -0
- package/_metronic/partials/content/widgets/lists/lists-widget6/lists-widget6.component.html +103 -0
- package/_metronic/partials/content/widgets/lists/lists-widget6/lists-widget6.component.ts +9 -0
- package/_metronic/partials/content/widgets/lists/lists-widget7/lists-widget7.component.html +130 -0
- package/_metronic/partials/content/widgets/lists/lists-widget7/lists-widget7.component.ts +9 -0
- package/_metronic/partials/content/widgets/lists/lists-widget8/lists-widget8.component.html +182 -0
- package/_metronic/partials/content/widgets/lists/lists-widget8/lists-widget8.component.ts +10 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget1/mixed-widget1.component.html +169 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget1/mixed-widget1.component.ts +10 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget10/mixed-widget10.component.html +39 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget10/mixed-widget10.component.ts +140 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget11/mixed-widget11.component.html +40 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget11/mixed-widget11.component.ts +133 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget2/mixed-widget2.component.html +84 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget2/mixed-widget2.component.ts +157 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget3/mixed-widget3.component.html +92 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget3/mixed-widget3.component.ts +141 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget4/mixed-widget4.component.html +101 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget4/mixed-widget4.component.ts +14 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget5/mixed-widget5.component.html +57 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget5/mixed-widget5.component.ts +14 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget6/mixed-widget6.component.html +118 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget6/mixed-widget6.component.ts +140 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget7/mixed-widget7.component.html +60 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget7/mixed-widget7.component.ts +65 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget8/mixed-widget8.component.html +158 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget8/mixed-widget8.component.ts +164 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget9/mixed-widget9.component.html +147 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget9/mixed-widget9.component.scss +0 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget9/mixed-widget9.component.spec.ts +25 -0
- package/_metronic/partials/content/widgets/mixed/mixed-widget9/mixed-widget9.component.ts +140 -0
- package/_metronic/partials/content/widgets/stats/stats-widget1/stats-widget1.component.html +12 -0
- package/_metronic/partials/content/widgets/stats/stats-widget1/stats-widget1.component.ts +13 -0
- package/_metronic/partials/content/widgets/stats/stats-widget2/stats-widget2.component.html +13 -0
- package/_metronic/partials/content/widgets/stats/stats-widget2/stats-widget2.component.ts +14 -0
- package/_metronic/partials/content/widgets/stats/stats-widget3/stats-widget3.component.html +46 -0
- package/_metronic/partials/content/widgets/stats/stats-widget3/stats-widget3.component.ts +160 -0
- package/_metronic/partials/content/widgets/stats/stats-widget4/stats-widget4.component.html +44 -0
- package/_metronic/partials/content/widgets/stats/stats-widget4/stats-widget4.component.ts +159 -0
- package/_metronic/partials/content/widgets/stats/stats-widget5/stats-widget5.component.html +14 -0
- package/_metronic/partials/content/widgets/stats/stats-widget5/stats-widget5.component.ts +15 -0
- package/_metronic/partials/content/widgets/stats/stats-widget6/stats-widget6.component.html +24 -0
- package/_metronic/partials/content/widgets/stats/stats-widget6/stats-widget6.component.ts +14 -0
- package/_metronic/partials/content/widgets/tables/tables-widget1/tables-widget1.component.html +273 -0
- package/_metronic/partials/content/widgets/tables/tables-widget1/tables-widget1.component.ts +9 -0
- package/_metronic/partials/content/widgets/tables/tables-widget10/tables-widget10.component.html +489 -0
- package/_metronic/partials/content/widgets/tables/tables-widget10/tables-widget10.component.ts +11 -0
- package/_metronic/partials/content/widgets/tables/tables-widget11/tables-widget11.component.html +464 -0
- package/_metronic/partials/content/widgets/tables/tables-widget11/tables-widget11.component.ts +11 -0
- package/_metronic/partials/content/widgets/tables/tables-widget12/tables-widget12.component.html +550 -0
- package/_metronic/partials/content/widgets/tables/tables-widget12/tables-widget12.component.ts +11 -0
- package/_metronic/partials/content/widgets/tables/tables-widget13/tables-widget13.component.html +485 -0
- package/_metronic/partials/content/widgets/tables/tables-widget13/tables-widget13.component.ts +11 -0
- package/_metronic/partials/content/widgets/tables/tables-widget14/tables-widget14.component.html +1 -0
- package/_metronic/partials/content/widgets/tables/tables-widget14/tables-widget14.component.scss +0 -0
- package/_metronic/partials/content/widgets/tables/tables-widget14/tables-widget14.component.spec.ts +25 -0
- package/_metronic/partials/content/widgets/tables/tables-widget14/tables-widget14.component.ts +15 -0
- package/_metronic/partials/content/widgets/tables/tables-widget2/tables-widget2.component.html +238 -0
- package/_metronic/partials/content/widgets/tables/tables-widget2/tables-widget2.component.ts +9 -0
- package/_metronic/partials/content/widgets/tables/tables-widget3/tables-widget3.component.html +150 -0
- package/_metronic/partials/content/widgets/tables/tables-widget3/tables-widget3.component.ts +11 -0
- package/_metronic/partials/content/widgets/tables/tables-widget4/tables-widget4.component.html +707 -0
- package/_metronic/partials/content/widgets/tables/tables-widget4/tables-widget4.component.ts +24 -0
- package/_metronic/partials/content/widgets/tables/tables-widget5/tables-widget5.component.html +608 -0
- package/_metronic/partials/content/widgets/tables/tables-widget5/tables-widget5.component.ts +26 -0
- package/_metronic/partials/content/widgets/tables/tables-widget6/tables-widget6.component.html +632 -0
- package/_metronic/partials/content/widgets/tables/tables-widget6/tables-widget6.component.ts +26 -0
- package/_metronic/partials/content/widgets/tables/tables-widget7/tables-widget7.component.html +616 -0
- package/_metronic/partials/content/widgets/tables/tables-widget7/tables-widget7.component.ts +26 -0
- package/_metronic/partials/content/widgets/tables/tables-widget8/tables-widget8.component.html +575 -0
- package/_metronic/partials/content/widgets/tables/tables-widget8/tables-widget8.component.ts +26 -0
- package/_metronic/partials/content/widgets/tables/tables-widget9/tables-widget9.component.html +489 -0
- package/_metronic/partials/content/widgets/tables/tables-widget9/tables-widget9.component.ts +9 -0
- package/_metronic/partials/content/widgets/tiles/tiles-widget1/tiles-widget1.component.html +175 -0
- package/_metronic/partials/content/widgets/tiles/tiles-widget1/tiles-widget1.component.ts +202 -0
- package/_metronic/partials/content/widgets/tiles/tiles-widget10/tiles-widget10.component.html +27 -0
- package/_metronic/partials/content/widgets/tiles/tiles-widget10/tiles-widget10.component.ts +12 -0
- package/_metronic/partials/content/widgets/tiles/tiles-widget11/tiles-widget11.component.html +28 -0
- package/_metronic/partials/content/widgets/tiles/tiles-widget11/tiles-widget11.component.ts +19 -0
- package/_metronic/partials/content/widgets/tiles/tiles-widget12/tiles-widget12.component.html +21 -0
- package/_metronic/partials/content/widgets/tiles/tiles-widget12/tiles-widget12.component.ts +18 -0
- package/_metronic/partials/content/widgets/tiles/tiles-widget13/tiles-widget13.component.html +26 -0
- package/_metronic/partials/content/widgets/tiles/tiles-widget13/tiles-widget13.component.ts +12 -0
- package/_metronic/partials/content/widgets/tiles/tiles-widget14/tiles-widget14.component.html +24 -0
- package/_metronic/partials/content/widgets/tiles/tiles-widget14/tiles-widget14.component.ts +10 -0
- package/_metronic/partials/content/widgets/tiles/tiles-widget3/tiles-widget3.component.html +23 -0
- package/_metronic/partials/content/widgets/tiles/tiles-widget3/tiles-widget3.component.ts +12 -0
- package/_metronic/partials/content/widgets/widgets.module.ts +262 -0
- package/_metronic/partials/index.ts +16 -0
- package/_metronic/partials/layout/drawers/activity-drawer/activity-drawer.component.html +649 -0
- package/_metronic/partials/layout/drawers/activity-drawer/activity-drawer.component.ts +11 -0
- package/_metronic/partials/layout/drawers/drawers.module.ts +21 -0
- package/_metronic/partials/layout/drawers/messenger-drawer/messenger-drawer.component.html +59 -0
- package/_metronic/partials/layout/drawers/messenger-drawer/messenger-drawer.component.ts +11 -0
- package/_metronic/partials/layout/engages/engages.component.html +29 -0
- package/_metronic/partials/layout/engages/engages.component.scss +0 -0
- package/_metronic/partials/layout/engages/engages.component.ts +15 -0
- package/_metronic/partials/layout/engages/engages.module.ts +29 -0
- package/_metronic/partials/layout/engages/explore-main-drawer/explore-main-drawer.component.html +177 -0
- package/_metronic/partials/layout/engages/explore-main-drawer/explore-main-drawer.component.ts +19 -0
- package/_metronic/partials/layout/engages/help-drawer/help-drawer.component.html +156 -0
- package/_metronic/partials/layout/engages/help-drawer/help-drawer.component.ts +17 -0
- package/_metronic/partials/layout/engages/purchase-toolbar/purchase-toolbar.component.html +8 -0
- package/_metronic/partials/layout/engages/purchase-toolbar/purchase-toolbar.component.ts +16 -0
- package/_metronic/partials/layout/extras/dropdown-inner/notifications-inner/notifications-inner.component.html +176 -0
- package/_metronic/partials/layout/extras/dropdown-inner/notifications-inner/notifications-inner.component.ts +155 -0
- package/_metronic/partials/layout/extras/dropdown-inner/quick-links-inner/quick-links-inner.component.html +77 -0
- package/_metronic/partials/layout/extras/dropdown-inner/quick-links-inner/quick-links-inner.component.ts +13 -0
- package/_metronic/partials/layout/extras/dropdown-inner/search-result-inner/search-result-inner.component.html +120 -0
- package/_metronic/partials/layout/extras/dropdown-inner/search-result-inner/search-result-inner.component.ts +104 -0
- package/_metronic/partials/layout/extras/dropdown-inner/user-inner/user-inner.component.html +161 -0
- package/_metronic/partials/layout/extras/dropdown-inner/user-inner/user-inner.component.ts +95 -0
- package/_metronic/partials/layout/extras/extras.module.ts +41 -0
- package/_metronic/partials/layout/extras/scroll-top/scroll-top.component.html +1 -0
- package/_metronic/partials/layout/extras/scroll-top/scroll-top.component.ts +75 -0
- package/_metronic/partials/layout/modals/invite-users-modal/invite-users-modal.component.html +0 -0
- package/_metronic/partials/layout/modals/invite-users-modal/invite-users-modal.component.ts +9 -0
- package/_metronic/partials/layout/modals/main-modal/main-modal.component.html +0 -0
- package/_metronic/partials/layout/modals/main-modal/main-modal.component.ts +9 -0
- package/_metronic/partials/layout/modals/modal/modal.component.html +31 -0
- package/_metronic/partials/layout/modals/modal/modal.component.ts +50 -0
- package/_metronic/partials/layout/modals/modal.config.ts +13 -0
- package/_metronic/partials/layout/modals/modals.module.ts +34 -0
- package/_metronic/partials/layout/modals/upgrade-plan-modal/upgrade-plan-modal.component.html +0 -0
- package/_metronic/partials/layout/modals/upgrade-plan-modal/upgrade-plan-modal.component.ts +9 -0
- package/_metronic/partials/layout/splash-screen/splash-screen.component.html +14 -0
- package/_metronic/partials/layout/splash-screen/splash-screen.component.scss +57 -0
- package/_metronic/partials/layout/splash-screen/splash-screen.component.ts +17 -0
- package/_metronic/partials/layout/splash-screen/splash-screen.module.ts +10 -0
- package/_metronic/partials/layout/splash-screen/splash-screen.service.ts +51 -0
- package/_metronic/partials/layout/theme-mode-switcher/theme-mode-switcher.component.html +56 -0
- package/_metronic/partials/layout/theme-mode-switcher/theme-mode-switcher.component.ts +27 -0
- package/_metronic/partials/layout/theme-mode-switcher/theme-mode.module.ts +16 -0
- package/_metronic/partials/layout/theme-mode-switcher/theme-mode.service.ts +87 -0
- package/_metronic/shared/keenicon/icons.json +1 -0
- package/_metronic/shared/keenicon/keenicon.component.html +4 -0
- package/_metronic/shared/keenicon/keenicon.component.scss +0 -0
- package/_metronic/shared/keenicon/keenicon.component.spec.ts +23 -0
- package/_metronic/shared/keenicon/keenicon.component.ts +30 -0
- package/_metronic/shared/shared.module.ts +17 -0
- package/assets/css/style.js +49 -0
- package/assets/css/style.rtl.css +49904 -0
- package/assets/plugins/keenicons/duotone/Read Me.txt +7 -0
- package/assets/plugins/keenicons/duotone/demo-files/demo.css +152 -0
- package/assets/plugins/keenicons/duotone/demo-files/demo.js +30 -0
- package/assets/plugins/keenicons/duotone/demo.html +8060 -0
- package/assets/plugins/keenicons/duotone/fonts/keenicons-duotone.eot +0 -0
- package/assets/plugins/keenicons/duotone/fonts/keenicons-duotone.svg +1720 -0
- package/assets/plugins/keenicons/duotone/fonts/keenicons-duotone.ttf +0 -0
- package/assets/plugins/keenicons/duotone/fonts/keenicons-duotone.woff +0 -0
- package/assets/plugins/keenicons/duotone/selection.json +1 -0
- package/assets/plugins/keenicons/duotone/style.css +8665 -0
- package/assets/plugins/keenicons/outline/Read Me.txt +7 -0
- package/assets/plugins/keenicons/outline/demo-files/demo.css +152 -0
- package/assets/plugins/keenicons/outline/demo-files/demo.js +30 -0
- package/assets/plugins/keenicons/outline/demo.html +8060 -0
- package/assets/plugins/keenicons/outline/fonts/keenicons-outline.eot +0 -0
- package/assets/plugins/keenicons/outline/fonts/keenicons-outline.svg +583 -0
- package/assets/plugins/keenicons/outline/fonts/keenicons-outline.ttf +0 -0
- package/assets/plugins/keenicons/outline/fonts/keenicons-outline.woff +0 -0
- package/assets/plugins/keenicons/outline/selection.json +1 -0
- package/assets/plugins/keenicons/outline/style.css +1746 -0
- package/assets/plugins/keenicons/solid/Read Me.txt +7 -0
- package/assets/plugins/keenicons/solid/demo-files/demo.css +152 -0
- package/assets/plugins/keenicons/solid/demo-files/demo.js +30 -0
- package/assets/plugins/keenicons/solid/demo.html +8060 -0
- package/assets/plugins/keenicons/solid/fonts/keenicons-solid.eot +0 -0
- package/assets/plugins/keenicons/solid/fonts/keenicons-solid.svg +583 -0
- package/assets/plugins/keenicons/solid/fonts/keenicons-solid.ttf +0 -0
- package/assets/plugins/keenicons/solid/fonts/keenicons-solid.woff +0 -0
- package/assets/plugins/keenicons/solid/selection.json +1 -0
- package/assets/plugins/keenicons/solid/style.css +1746 -0
- package/assets/sass/_init.scss +32 -0
- package/assets/sass/components/_btn-secondary.scss +36 -0
- package/assets/sass/components/_landing.scss +136 -0
- package/assets/sass/components/_variables.custom.scss +6 -0
- package/assets/sass/components/_variables.override.scss +15 -0
- package/assets/sass/components/components.scss +8 -0
- package/assets/sass/components/stepper/_multistep.scss +42 -0
- package/assets/sass/core/base/_functions.scss +10 -0
- package/assets/sass/core/base/_mixins.scss +11 -0
- package/assets/sass/core/base/functions/_get.scss +82 -0
- package/assets/sass/core/base/functions/_math.scss +15 -0
- package/assets/sass/core/base/functions/_set.scss +43 -0
- package/assets/sass/core/base/functions/_theme-colors.scss +15 -0
- package/assets/sass/core/base/functions/_valueif.scss +13 -0
- package/assets/sass/core/base/mixins/_breakpoints.scss +25 -0
- package/assets/sass/core/base/mixins/_browsers.scss +23 -0
- package/assets/sass/core/base/mixins/_fixes.scss +15 -0
- package/assets/sass/core/base/mixins/_placeholder.scss +16 -0
- package/assets/sass/core/base/mixins/_property.scss +9 -0
- package/assets/sass/core/base/mixins/_reset.scss +23 -0
- package/assets/sass/core/components/_accordion.scss +107 -0
- package/assets/sass/core/components/_alert.scss +15 -0
- package/assets/sass/core/components/_anchor.scss +37 -0
- package/assets/sass/core/components/_animation.scss +81 -0
- package/assets/sass/core/components/_badge.scss +75 -0
- package/assets/sass/core/components/_blockui.scss +53 -0
- package/assets/sass/core/components/_breadcrumb.scss +69 -0
- package/assets/sass/core/components/_bullet.scss +33 -0
- package/assets/sass/core/components/_buttons.scss +7 -0
- package/assets/sass/core/components/_card.scss +317 -0
- package/assets/sass/core/components/_carousel.scss +130 -0
- package/assets/sass/core/components/_code.scss +24 -0
- package/assets/sass/core/components/_cookiealert.scss +8 -0
- package/assets/sass/core/components/_drawer.scss +78 -0
- package/assets/sass/core/components/_dropdown.scss +12 -0
- package/assets/sass/core/components/_engage.scss +118 -0
- package/assets/sass/core/components/_explore.scss +104 -0
- package/assets/sass/core/components/_fixed.scss +18 -0
- package/assets/sass/core/components/_forms.scss +13 -0
- package/assets/sass/core/components/_helpers.scss +12 -0
- package/assets/sass/core/components/_hover.scss +53 -0
- package/assets/sass/core/components/_image-input.scss +111 -0
- package/assets/sass/core/components/_indicator.scss +17 -0
- package/assets/sass/core/components/_menu.scss +7 -0
- package/assets/sass/core/components/_mixins.scss +13 -0
- package/assets/sass/core/components/_modal.scss +7 -0
- package/assets/sass/core/components/_nav-line-tabs.scss +68 -0
- package/assets/sass/core/components/_nav-pills-custom.scss +91 -0
- package/assets/sass/core/components/_nav.scss +71 -0
- package/assets/sass/core/components/_offcanvas.scss +6 -0
- package/assets/sass/core/components/_overlay.scss +35 -0
- package/assets/sass/core/components/_page-loader.scss +28 -0
- package/assets/sass/core/components/_pagination.scss +176 -0
- package/assets/sass/core/components/_popover.scss +58 -0
- package/assets/sass/core/components/_print.scss +34 -0
- package/assets/sass/core/components/_progress.scss +27 -0
- package/assets/sass/core/components/_pulse.scss +39 -0
- package/assets/sass/core/components/_rating.scss +62 -0
- package/assets/sass/core/components/_reboot.scss +7 -0
- package/assets/sass/core/components/_ribbon.scss +195 -0
- package/assets/sass/core/components/_root.scss +332 -0
- package/assets/sass/core/components/_rotate.scss +47 -0
- package/assets/sass/core/components/_scroll.scss +119 -0
- package/assets/sass/core/components/_scrolltop.scss +69 -0
- package/assets/sass/core/components/_separator.scss +66 -0
- package/assets/sass/core/components/_shape.scss +13 -0
- package/assets/sass/core/components/_stepper.scss +8 -0
- package/assets/sass/core/components/_svg-icon.scss +30 -0
- package/assets/sass/core/components/_symbol.scss +133 -0
- package/assets/sass/core/components/_tables.scss +248 -0
- package/assets/sass/core/components/_testimonials-slider.scss +65 -0
- package/assets/sass/core/components/_theme-mode.scss +38 -0
- package/assets/sass/core/components/_timeline-label.scss +59 -0
- package/assets/sass/core/components/_timeline.scss +96 -0
- package/assets/sass/core/components/_toasts.scss +17 -0
- package/assets/sass/core/components/_toggle.scss +19 -0
- package/assets/sass/core/components/_tooltip.scss +32 -0
- package/assets/sass/core/components/_tree.scss +92 -0
- package/assets/sass/core/components/_type.scss +9 -0
- package/assets/sass/core/components/_utilities.scss +134 -0
- package/assets/sass/core/components/_variables-dark.scss +333 -0
- package/assets/sass/core/components/_variables.scss +1274 -0
- package/assets/sass/core/components/buttons/_base.scss +129 -0
- package/assets/sass/core/components/buttons/_theme.scss +277 -0
- package/assets/sass/core/components/buttons_new/_base.scss +74 -0
- package/assets/sass/core/components/buttons_new/_theme.scss +21 -0
- package/assets/sass/core/components/components.scss +68 -0
- package/assets/sass/core/components/forms/_floating-labels.scss +20 -0
- package/assets/sass/core/components/forms/_form-check.scss +193 -0
- package/assets/sass/core/components/forms/_form-control.scss +70 -0
- package/assets/sass/core/components/forms/_form-select.scss +68 -0
- package/assets/sass/core/components/forms/_input-group.scss +36 -0
- package/assets/sass/core/components/forms/_labels.scss +8 -0
- package/assets/sass/core/components/forms/_required.scss +14 -0
- package/assets/sass/core/components/helpers/_background.scss +248 -0
- package/assets/sass/core/components/helpers/_borders.scss +114 -0
- package/assets/sass/core/components/helpers/_flex.scss +57 -0
- package/assets/sass/core/components/helpers/_opacity.scss +18 -0
- package/assets/sass/core/components/helpers/_shadow.scss +19 -0
- package/assets/sass/core/components/helpers/_text.scss +146 -0
- package/assets/sass/core/components/helpers/_transform.scss +8 -0
- package/assets/sass/core/components/menu/_base.scss +316 -0
- package/assets/sass/core/components/menu/_theme.scss +519 -0
- package/assets/sass/core/components/mixins/_buttons.scss +84 -0
- package/assets/sass/core/components/mixins/_ki.scss +18 -0
- package/assets/sass/core/components/mixins/_menu.scss +301 -0
- package/assets/sass/core/components/mixins/_scroll.scss +34 -0
- package/assets/sass/core/components/mixins/_shape.scss +29 -0
- package/assets/sass/core/components/mixins/_svg-bg-icon.scss +68 -0
- package/assets/sass/core/components/mixins/_svg-icon.scss +11 -0
- package/assets/sass/core/components/mixins/_symbol.scss +42 -0
- package/assets/sass/core/components/stepper/_base.scss +106 -0
- package/assets/sass/core/components/stepper/_links.scss +57 -0
- package/assets/sass/core/components/stepper/_pills.scss +201 -0
- package/assets/sass/core/layout/_base.scss +50 -0
- package/assets/sass/core/layout/base/_container.scss +30 -0
- package/assets/sass/core/layout/base/_content.scss +24 -0
- package/assets/sass/core/layout/base/_footer.scss +99 -0
- package/assets/sass/core/layout/base/_hero.scss +13 -0
- package/assets/sass/core/layout/base/_layout-builder.scss +19 -0
- package/assets/sass/core/layout/base/_layout.scss +29 -0
- package/assets/sass/core/layout/base/_main.scss +75 -0
- package/assets/sass/core/layout/base/_navbar.scss +19 -0
- package/assets/sass/core/layout/base/_page-loader.scss +31 -0
- package/assets/sass/core/layout/base/_page.scss +7 -0
- package/assets/sass/core/layout/base/_print.scss +34 -0
- package/assets/sass/core/layout/base/_reboot.scss +65 -0
- package/assets/sass/core/layout/base/_root.scss +368 -0
- package/assets/sass/core/layout/base/_toolbar.scss +171 -0
- package/assets/sass/core/layout/base/_variables.scss +615 -0
- package/assets/sass/core/layout/base/_wrapper.scss +100 -0
- package/assets/sass/core/layout/base/aside/_aside.scss +275 -0
- package/assets/sass/core/layout/base/header/_header-primary.scss +135 -0
- package/assets/sass/core/layout/base/header/_header-secondary.scss +139 -0
- package/assets/sass/core/layout/base/header/_header-tertiary.scss +138 -0
- package/assets/sass/core/layout/base/header/_header.scss +239 -0
- package/assets/sass/core/layout/base/mixins/_layout-minimize.scss +41 -0
- package/assets/sass/core/layout/base/mixins/_layout-transition.scss +7 -0
- package/assets/sass/core/layout/base/sidebar/_sidebar-panel.scss +281 -0
- package/assets/sass/core/layout/base/sidebar/_sidebar-primary.scss +230 -0
- package/assets/sass/core/layout/base/sidebar/_sidebar-secondary.scss +274 -0
- package/assets/sass/core/layout/base/sidebar/_sidebar.scss +284 -0
- package/assets/sass/core/vendors/plugins/_apexcharts.scss +129 -0
- package/assets/sass/core/vendors/plugins/_bootstrap-maxlength.scss +16 -0
- package/assets/sass/core/vendors/plugins/_ckeditor.scss +54 -0
- package/assets/sass/core/vendors/plugins/_datatables.scss +272 -0
- package/assets/sass/core/vendors/plugins/_daterangepicker.scss +272 -0
- package/assets/sass/core/vendors/plugins/_draggable.scss +28 -0
- package/assets/sass/core/vendors/plugins/_dropzone.scss +188 -0
- package/assets/sass/core/vendors/plugins/_flatpickr.scss +407 -0
- package/assets/sass/core/vendors/plugins/_formvalidation.scss +20 -0
- package/assets/sass/core/vendors/plugins/_fslightbox.scss +11 -0
- package/assets/sass/core/vendors/plugins/_fullcalendar.scss +297 -0
- package/assets/sass/core/vendors/plugins/_gmaps.scss +18 -0
- package/assets/sass/core/vendors/plugins/_jkanban.scss +94 -0
- package/assets/sass/core/vendors/plugins/_jstree.scss +150 -0
- package/assets/sass/core/vendors/plugins/_keenicons.scss +12 -0
- package/assets/sass/core/vendors/plugins/_leaflet.scss +23 -0
- package/assets/sass/core/vendors/plugins/_mixins.scss +5 -0
- package/assets/sass/core/vendors/plugins/_nouislider.scss +103 -0
- package/assets/sass/core/vendors/plugins/_plugins.angular.scss +12 -0
- package/assets/sass/core/vendors/plugins/_plugins.react.scss +12 -0
- package/assets/sass/core/vendors/plugins/_plugins.scss +34 -0
- package/assets/sass/core/vendors/plugins/_plugins.vue.scss +12 -0
- package/assets/sass/core/vendors/plugins/_prismjs.scss +84 -0
- package/assets/sass/core/vendors/plugins/_quill.scss +196 -0
- package/assets/sass/core/vendors/plugins/_recaptcha.scss +32 -0
- package/assets/sass/core/vendors/plugins/_root.scss +36 -0
- package/assets/sass/core/vendors/plugins/_select2.scss +418 -0
- package/assets/sass/core/vendors/plugins/_sweetalert2.scss +112 -0
- package/assets/sass/core/vendors/plugins/_tagify.scss +222 -0
- package/assets/sass/core/vendors/plugins/_tempus-dominus.scss +163 -0
- package/assets/sass/core/vendors/plugins/_tiny-slider.scss +141 -0
- package/assets/sass/core/vendors/plugins/_tinymce.scss +13 -0
- package/assets/sass/core/vendors/plugins/_toastr.scss +87 -0
- package/assets/sass/core/vendors/plugins/_variables-dark.scss +18 -0
- package/assets/sass/core/vendors/plugins/_variables.scss +27 -0
- package/assets/sass/core/vendors/plugins/_vis-timeline.scss +131 -0
- package/assets/sass/core/vendors/plugins/mixins/_nouislider.scss +13 -0
- package/assets/sass/layout/_aside.scss +22 -0
- package/assets/sass/layout/_content.scss +22 -0
- package/assets/sass/layout/_layout.scss +17 -0
- package/assets/sass/layout/_main.scss +21 -0
- package/assets/sass/layout/_page-title.scss +14 -0
- package/assets/sass/layout/_root.scss +49 -0
- package/assets/sass/layout/_toolbar.scss +42 -0
- package/assets/sass/layout/_variables.custom.scss +132 -0
- package/assets/sass/layout/header/_header-dark.scss +77 -0
- package/assets/sass/layout/header/_header-sidebar-light.scss +55 -0
- package/assets/sass/layout/header/_header.scss +170 -0
- package/assets/sass/layout/sidebar/_sidebar-dark.scss +105 -0
- package/assets/sass/layout/sidebar/_sidebar-light.scss +105 -0
- package/assets/sass/layout/sidebar/_sidebar-minimize.scss +64 -0
- package/assets/sass/layout/sidebar/_sidebar.scss +60 -0
- package/assets/sass/plugins.scss +13 -0
- package/assets/sass/style.angular.scss +9 -0
- package/assets/sass/style.scss +14 -0
- package/assets/splash-screen.css +49 -0
- package/config/providers/hit-providers/inbound-despatch-route.provider.d.ts +9 -0
- package/esm2020/config/e-donusum-config.module.mjs +5 -3
- package/esm2020/config/providers/hit-providers/inbound-despatch-route.provider.mjs +20 -0
- package/esm2020/lib/components/hit-branches/hit-branch.component.mjs +28 -0
- package/esm2020/lib/components/hit-branches/hit-branch.module.mjs +55 -0
- package/esm2020/lib/components/hit-business-partner-groups/hit-business-partner-group.component.mjs +28 -0
- package/esm2020/lib/components/hit-business-partner-groups/hit-business-partner-group.module.mjs +52 -0
- package/esm2020/lib/components/hit-business-partners/hit-business-partner.component.mjs +31 -0
- package/esm2020/lib/components/hit-business-partners/hit-business-partner.module.mjs +52 -0
- package/esm2020/lib/components/hit-despatches/hit-despatch.component.mjs +133 -0
- package/esm2020/lib/components/hit-despatches/hit-despatch.module.mjs +71 -0
- package/esm2020/lib/components/hit-despatches/sanitize-html.pipe.mjs +19 -0
- package/esm2020/lib/components/hit-gib-partner-pk-alls/hit-gib-partner-pk-all.component.mjs +28 -0
- package/esm2020/lib/components/hit-gib-partner-pk-alls/hit-gib-partner-pk-all.module.mjs +52 -0
- package/esm2020/lib/components/hit-gib-partner-pks/hit-gib-partner-pk.component.mjs +32 -0
- package/esm2020/lib/components/hit-gib-partner-pks/hit-gib-partner-pk.module.mjs +55 -0
- package/esm2020/lib/components/hit-inbound-despatches/hit-inbound-despatch-routing.module.mjs +38 -0
- package/esm2020/lib/components/hit-inbound-despatches/hit-inbound-despatch.component.mjs +135 -0
- package/esm2020/lib/components/hit-inbound-despatches/hit-inbound-despatch.module.mjs +77 -0
- package/esm2020/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.mjs +3 -3
- package/esm2020/lib/components/hit-invoices/hit-invoice.component.mjs +41 -14
- package/esm2020/lib/components/hit-invoices/hit-invoice.module.mjs +7 -4
- package/esm2020/lib/components/hit-params-generals/hit-params-generals-part1/hit-params-general-part1.component.mjs +2 -1
- package/esm2020/lib/components/hit-params-integrators/hit-params-integrator.component.mjs +2 -1
- package/esm2020/lib/components/hit-setup-wizard/hit-setup-wizard.component.mjs +3 -3
- package/esm2020/lib/components/hit-xslt-rules/hit-xslt-rule.component.mjs +2 -2
- package/esm2020/lib/despatches/despatch/components/despatch.component.mjs +14 -4
- package/esm2020/lib/despatches/despatch/despatch-routing.module.mjs +2 -2
- package/esm2020/lib/e-donusum-routing.module.mjs +16 -2
- package/esm2020/lib/e-donusum.module.mjs +31 -1
- package/esm2020/lib/hit-proxy/hit-branches/hit-branch.service.mjs +10 -4
- package/esm2020/lib/hit-proxy/hit-business-partner-groups/hit-business-partner-group.service.mjs +24 -0
- package/esm2020/lib/hit-proxy/hit-business-partners/hit-business-partner.service.mjs +24 -0
- package/esm2020/lib/hit-proxy/hit-despatch-lines/hit-despatch-line.service.mjs +25 -0
- package/esm2020/lib/hit-proxy/hit-despatches/hit-despatch.service.mjs +70 -0
- package/esm2020/lib/hit-proxy/hit-file-document-type/hit-file-document-type.service.mjs +24 -0
- package/esm2020/lib/hit-proxy/hit-gib-partner-pk-alls/hit-gib-partner-pk-alls.service.mjs +24 -0
- package/esm2020/lib/hit-proxy/hit-gib-partner-pks/hit-gib-partner-pk.service.mjs +24 -0
- package/esm2020/lib/hit-proxy/hit-inbound-despatches/hit-inbound-despatch.service.mjs +39 -0
- package/esm2020/lib/hit-proxy/hit-inbound-despatches/models.mjs +2 -0
- package/esm2020/lib/hit-proxy/hit-invoices/hit-invoice.service.mjs +27 -5
- package/esm2020/lib/invoices/invoice/components/invoice.component.mjs +6 -5
- package/esm2020/lib/invoices/invoice/invoice-routing.module.mjs +1 -1
- package/esm2020/lib/invoices/invoice/invoice.module.mjs +1 -1
- package/esm2020/lib/note-rules/note-rule/note-rule.module.mjs +1 -1
- package/esm2020/lib/proxy/despatches/despatch.service.mjs +2 -2
- package/esm2020/lib/proxy/despatches/models.mjs +1 -1
- package/esm2020/lib/proxy/invoices/invoice.service.mjs +2 -2
- package/esm2020/lib/proxy/invoices/models.mjs +1 -1
- package/esm2020/lib/proxy/note-rule-doc-types/index.mjs +1 -1
- package/esm2020/lib/proxy/note-rule-scenarios/index.mjs +1 -1
- package/esm2020/lib/proxy/note-rules/index.mjs +1 -1
- package/esm2020/lib/proxy/params-companies/index.mjs +1 -1
- package/esm2020/lib/proxy/params-generals/index.mjs +1 -1
- package/esm2020/lib/proxy/params-integrators/index.mjs +1 -1
- package/esm2020/lib/proxy/paramse-dispatches/index.mjs +1 -1
- package/esm2020/lib/proxy/paramse-invoices/index.mjs +1 -1
- package/esm2020/lib/proxy/xslt-formats/index.mjs +1 -1
- package/esm2020/lib/proxy/xslt-rule-doc-types/index.mjs +1 -1
- package/esm2020/lib/proxy/xslt-rule-scenarios/index.mjs +1 -1
- package/esm2020/lib/proxy/xslt-rules/index.mjs +1 -1
- package/esm2020/lib/xslt-rules/xslt-rule/xslt-rule.module.mjs +1 -1
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/hitsoft-e-donusum-config.mjs +108 -89
- package/fesm2015/hitsoft-e-donusum-config.mjs.map +1 -1
- package/fesm2015/hitsoft-e-donusum.mjs +1242 -200
- package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum-config.mjs +108 -89
- package/fesm2020/hitsoft-e-donusum-config.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum.mjs +1242 -200
- package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
- package/lib/components/hit-branches/hit-branch.component.d.ts +13 -0
- package/lib/components/hit-branches/hit-branch.module.d.ts +15 -0
- package/lib/components/hit-business-partner-groups/hit-business-partner-group.component.d.ts +13 -0
- package/lib/components/hit-business-partner-groups/hit-business-partner-group.module.d.ts +15 -0
- package/lib/components/hit-business-partners/hit-business-partner.component.d.ts +16 -0
- package/lib/components/hit-business-partners/hit-business-partner.module.d.ts +15 -0
- package/lib/components/hit-despatches/hit-despatch.component.d.ts +35 -0
- package/lib/components/hit-despatches/hit-despatch.module.d.ts +16 -0
- package/lib/components/hit-despatches/sanitize-html.pipe.d.ts +10 -0
- package/lib/components/hit-gib-partner-pk-alls/hit-gib-partner-pk-all.component.d.ts +13 -0
- package/lib/components/hit-gib-partner-pk-alls/hit-gib-partner-pk-all.module.d.ts +15 -0
- package/lib/components/hit-gib-partner-pks/hit-gib-partner-pk.component.d.ts +17 -0
- package/lib/components/hit-gib-partner-pks/hit-gib-partner-pk.module.d.ts +15 -0
- package/lib/components/hit-inbound-despatches/hit-inbound-despatch-routing.module.d.ts +7 -0
- package/lib/components/hit-inbound-despatches/hit-inbound-despatch.component.d.ts +38 -0
- package/lib/components/hit-inbound-despatches/hit-inbound-despatch.module.d.ts +16 -0
- package/lib/components/hit-invoices/hit-invoice.component.d.ts +10 -1
- package/lib/components/hit-invoices/hit-invoice.module.d.ts +1 -1
- package/lib/hit-proxy/hit-branches/hit-branch.service.d.ts +4 -1
- package/lib/hit-proxy/hit-business-partner-groups/hit-business-partner-group.service.d.ts +12 -0
- package/lib/hit-proxy/hit-business-partners/hit-business-partner.service.d.ts +12 -0
- package/lib/hit-proxy/hit-despatch-lines/hit-despatch-line.service.d.ts +12 -0
- package/lib/hit-proxy/hit-despatches/hit-despatch.service.d.ts +22 -0
- package/lib/hit-proxy/hit-file-document-type/hit-file-document-type.service.d.ts +12 -0
- package/lib/hit-proxy/hit-gib-partner-pk-alls/hit-gib-partner-pk-alls.service.d.ts +12 -0
- package/lib/hit-proxy/hit-gib-partner-pks/hit-gib-partner-pk.service.d.ts +12 -0
- package/lib/hit-proxy/hit-inbound-despatches/hit-inbound-despatch.service.d.ts +16 -0
- package/lib/hit-proxy/hit-inbound-despatches/models.d.ts +11 -0
- package/lib/hit-proxy/hit-invoices/hit-invoice.service.d.ts +4 -1
- package/lib/proxy/despatches/models.d.ts +46 -0
- package/lib/proxy/invoices/models.d.ts +9 -4
- package/package.json +1 -5
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DxDataGridComponent } from 'devextreme-angular';
|
|
3
|
+
import { HitBranchesService } from '../../hit-proxy/hit-branches/hit-branch.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class HitBranchComponent implements OnInit {
|
|
6
|
+
private hitBranchService;
|
|
7
|
+
dxBranchInstance: DxDataGridComponent;
|
|
8
|
+
branchsDataSource: any;
|
|
9
|
+
constructor(hitBranchService: HitBranchesService);
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitBranchComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HitBranchComponent, "lib-branch", never, {}, {}, never, never, false>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./hit-branch.component";
|
|
3
|
+
import * as i2 from "@abp/ng.core";
|
|
4
|
+
import * as i3 from "@abp/ng.theme.shared";
|
|
5
|
+
import * as i4 from "@volo/abp.commercial.ng.ui";
|
|
6
|
+
import * as i5 from "@ngx-validate/core";
|
|
7
|
+
import * as i6 from "@ng-bootstrap/ng-bootstrap";
|
|
8
|
+
import * as i7 from "devextreme-angular";
|
|
9
|
+
import * as i8 from "@abp/ng.components/page";
|
|
10
|
+
export declare class HitBranchModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitBranchModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitBranchModule, [typeof i1.HitBranchComponent], [typeof i2.CoreModule, typeof i3.ThemeSharedModule, typeof i4.CommercialUiModule, typeof i5.NgxValidateCoreModule, typeof i6.NgbCollapseModule, typeof i6.NgbDatepickerModule, typeof i6.NgbDropdownModule, typeof i7.DxDataGridModule, typeof i7.DxCheckBoxModule, typeof i8.PageModule], never>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitBranchModule>;
|
|
14
|
+
}
|
|
15
|
+
export declare function loadHitBranchModuleAsChild(): Promise<typeof HitBranchModule>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DxDataGridComponent } from 'devextreme-angular';
|
|
3
|
+
import { HitBusinessPartnerGroupService } from '../../hit-proxy/hit-business-partner-groups/hit-business-partner-group.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class HitBusinessPartnerGroupComponent implements OnInit {
|
|
6
|
+
private hitBusinessPartnerGroupService;
|
|
7
|
+
dxBusinessPartnerGroupInstance: DxDataGridComponent;
|
|
8
|
+
businessPartnerGroupsDataSource: any;
|
|
9
|
+
constructor(hitBusinessPartnerGroupService: HitBusinessPartnerGroupService);
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitBusinessPartnerGroupComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HitBusinessPartnerGroupComponent, "lib-business-partner-group", never, {}, {}, never, never, false>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./hit-business-partner-group.component";
|
|
3
|
+
import * as i2 from "@abp/ng.core";
|
|
4
|
+
import * as i3 from "@abp/ng.theme.shared";
|
|
5
|
+
import * as i4 from "@volo/abp.commercial.ng.ui";
|
|
6
|
+
import * as i5 from "@ngx-validate/core";
|
|
7
|
+
import * as i6 from "@ng-bootstrap/ng-bootstrap";
|
|
8
|
+
import * as i7 from "devextreme-angular";
|
|
9
|
+
import * as i8 from "@abp/ng.components/page";
|
|
10
|
+
export declare class HitBusinessPartnerGroupModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitBusinessPartnerGroupModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitBusinessPartnerGroupModule, [typeof i1.HitBusinessPartnerGroupComponent], [typeof i2.CoreModule, typeof i3.ThemeSharedModule, typeof i4.CommercialUiModule, typeof i5.NgxValidateCoreModule, typeof i6.NgbCollapseModule, typeof i6.NgbDatepickerModule, typeof i6.NgbDropdownModule, typeof i7.DxDataGridModule, typeof i8.PageModule], never>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitBusinessPartnerGroupModule>;
|
|
14
|
+
}
|
|
15
|
+
export declare function loadHitBusinessPartnerGroupModuleAsChild(): Promise<typeof HitBusinessPartnerGroupModule>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DxDataGridComponent } from 'devextreme-angular';
|
|
3
|
+
import { HitBusinessPartnerGroupService } from '../../hit-proxy/hit-business-partner-groups/hit-business-partner-group.service';
|
|
4
|
+
import { HitBusinessPartnerService } from '../../hit-proxy/hit-business-partners/hit-business-partner.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class HitBusinessPartnerComponent implements OnInit {
|
|
7
|
+
private hitBusinessPartnerService;
|
|
8
|
+
private hitBusinessPartnerGroupService;
|
|
9
|
+
dxBusinessPartnerInstance: DxDataGridComponent;
|
|
10
|
+
businessPartnersDataSource: any;
|
|
11
|
+
businessPartnerGroupDataSource: any;
|
|
12
|
+
constructor(hitBusinessPartnerService: HitBusinessPartnerService, hitBusinessPartnerGroupService: HitBusinessPartnerGroupService);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitBusinessPartnerComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HitBusinessPartnerComponent, "lib-business-partner", never, {}, {}, never, never, false>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./hit-business-partner.component";
|
|
3
|
+
import * as i2 from "@abp/ng.core";
|
|
4
|
+
import * as i3 from "@abp/ng.theme.shared";
|
|
5
|
+
import * as i4 from "@volo/abp.commercial.ng.ui";
|
|
6
|
+
import * as i5 from "@ngx-validate/core";
|
|
7
|
+
import * as i6 from "@ng-bootstrap/ng-bootstrap";
|
|
8
|
+
import * as i7 from "devextreme-angular";
|
|
9
|
+
import * as i8 from "@abp/ng.components/page";
|
|
10
|
+
export declare class HitBusinessPartnerModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitBusinessPartnerModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitBusinessPartnerModule, [typeof i1.HitBusinessPartnerComponent], [typeof i2.CoreModule, typeof i3.ThemeSharedModule, typeof i4.CommercialUiModule, typeof i5.NgxValidateCoreModule, typeof i6.NgbCollapseModule, typeof i6.NgbDatepickerModule, typeof i6.NgbDropdownModule, typeof i7.DxDataGridModule, typeof i8.PageModule], never>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitBusinessPartnerModule>;
|
|
14
|
+
}
|
|
15
|
+
export declare function loadHitBusinessPartnerModuleAsChild(): Promise<typeof HitBusinessPartnerModule>;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { ListService } from '@abp/ng.core';
|
|
2
|
+
import { OnInit } from '@angular/core';
|
|
3
|
+
import { DxDataGridComponent } from 'devextreme-angular';
|
|
4
|
+
import { HitDespatchService } from '../../hit-proxy/hit-despatches/hit-despatch.service';
|
|
5
|
+
import { HitFileDocumentTypeService } from '../../hit-proxy/hit-file-document-type/hit-file-document-type.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class HitDespatchComponent implements OnInit {
|
|
8
|
+
readonly list: ListService;
|
|
9
|
+
readonly service: HitDespatchService;
|
|
10
|
+
private readonly fileDocumentTypeService;
|
|
11
|
+
dxDespatchInstance: DxDataGridComponent;
|
|
12
|
+
dxDespatchFileInstance: DxDataGridComponent;
|
|
13
|
+
despatchesDataSource: any;
|
|
14
|
+
despatchStatusLookup: any;
|
|
15
|
+
despatchReceiverResponseLookup: any;
|
|
16
|
+
despatchObjectsEnumLookup: any;
|
|
17
|
+
despatchFileNameLookup: any;
|
|
18
|
+
despatchFilesDataSource: any;
|
|
19
|
+
isFileModalOpen: boolean;
|
|
20
|
+
isFileModalBusy: boolean;
|
|
21
|
+
constructor(list: ListService, service: HitDespatchService, fileDocumentTypeService: HitFileDocumentTypeService);
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
sendDespatchSingle(record: any): void;
|
|
24
|
+
sendDespatchMultiple(): void;
|
|
25
|
+
getDespatchPreview(record: any): void;
|
|
26
|
+
getIconClass(responseId: any): "" | "fas fa-clock" | "fas fa-check-circle" | "fas fa-times-circle" | "fas fa-minus-circle";
|
|
27
|
+
getDespatchView(record: any): void;
|
|
28
|
+
getDespatchResponses(): void;
|
|
29
|
+
getReceiverResponseName(responseId: any): any;
|
|
30
|
+
showAllFiles(record: any): void;
|
|
31
|
+
DownloadFile(record: any): void;
|
|
32
|
+
getReceiptAdvicePreview(record: any): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitDespatchComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HitDespatchComponent, "lib-despatch", never, {}, {}, never, never, false>;
|
|
35
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./hit-despatch.component";
|
|
3
|
+
import * as i2 from "./sanitize-html.pipe";
|
|
4
|
+
import * as i3 from "@abp/ng.core";
|
|
5
|
+
import * as i4 from "@abp/ng.theme.shared";
|
|
6
|
+
import * as i5 from "@volo/abp.commercial.ng.ui";
|
|
7
|
+
import * as i6 from "@ngx-validate/core";
|
|
8
|
+
import * as i7 from "@ng-bootstrap/ng-bootstrap";
|
|
9
|
+
import * as i8 from "devextreme-angular";
|
|
10
|
+
import * as i9 from "@abp/ng.components/page";
|
|
11
|
+
export declare class HitDespatchModule {
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitDespatchModule, never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitDespatchModule, [typeof i1.HitDespatchComponent, typeof i2.SanitizeHtmlPipe], [typeof i3.CoreModule, typeof i4.ThemeSharedModule, typeof i5.CommercialUiModule, typeof i6.NgxValidateCoreModule, typeof i7.NgbCollapseModule, typeof i7.NgbDatepickerModule, typeof i7.NgbDropdownModule, typeof i8.DxDataGridModule, typeof i8.DxTextAreaModule, typeof i8.DxTextBoxModule, typeof i8.DxHtmlEditorModule, typeof i8.DxSelectBoxModule, typeof i8.DxLookupModule, typeof i8.DxTabPanelModule, typeof i9.PageModule], never>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitDespatchModule>;
|
|
15
|
+
}
|
|
16
|
+
export declare function loadHitDespatchModuleAsChild(): Promise<typeof HitDespatchModule>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SanitizeHtmlPipe implements PipeTransform {
|
|
5
|
+
private _sanitizer;
|
|
6
|
+
constructor(_sanitizer: DomSanitizer);
|
|
7
|
+
transform(value: string): SafeHtml;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SanitizeHtmlPipe, never>;
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SanitizeHtmlPipe, "sanitizeHtml", false>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DxDataGridComponent } from 'devextreme-angular';
|
|
3
|
+
import { HitGibPartnerPkAllService } from '../../hit-proxy/hit-gib-partner-pk-alls/hit-gib-partner-pk-alls.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class HitGibPartnerPkAllComponent implements OnInit {
|
|
6
|
+
private hitGibPartnerPkService;
|
|
7
|
+
dxGibPartnerPkAllInstance: DxDataGridComponent;
|
|
8
|
+
gibPartnerPKAllDataSource: any;
|
|
9
|
+
constructor(hitGibPartnerPkService: HitGibPartnerPkAllService);
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitGibPartnerPkAllComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HitGibPartnerPkAllComponent, "lib-gib-partner-pk-all", never, {}, {}, never, never, false>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./hit-gib-partner-pk-all.component";
|
|
3
|
+
import * as i2 from "@abp/ng.core";
|
|
4
|
+
import * as i3 from "@abp/ng.theme.shared";
|
|
5
|
+
import * as i4 from "@volo/abp.commercial.ng.ui";
|
|
6
|
+
import * as i5 from "@ngx-validate/core";
|
|
7
|
+
import * as i6 from "@ng-bootstrap/ng-bootstrap";
|
|
8
|
+
import * as i7 from "devextreme-angular";
|
|
9
|
+
import * as i8 from "@abp/ng.components/page";
|
|
10
|
+
export declare class HitGibPartnerPkAllModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitGibPartnerPkAllModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitGibPartnerPkAllModule, [typeof i1.HitGibPartnerPkAllComponent], [typeof i2.CoreModule, typeof i3.ThemeSharedModule, typeof i4.CommercialUiModule, typeof i5.NgxValidateCoreModule, typeof i6.NgbCollapseModule, typeof i6.NgbDatepickerModule, typeof i6.NgbDropdownModule, typeof i7.DxDataGridModule, typeof i8.PageModule], never>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitGibPartnerPkAllModule>;
|
|
14
|
+
}
|
|
15
|
+
export declare function loadHitGibPartnerPkAllModuleAsChild(): Promise<typeof HitGibPartnerPkAllModule>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DxDataGridComponent } from 'devextreme-angular';
|
|
3
|
+
import { HitGibPartnerPkService } from '../../hit-proxy/hit-gib-partner-pks/hit-gib-partner-pk.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class HitGibPartnerPkComponent implements OnInit {
|
|
6
|
+
private hitGibPartnerPkService;
|
|
7
|
+
dxGibPkPartnerInstance: DxDataGridComponent;
|
|
8
|
+
gibPartnerPkDatasource: any;
|
|
9
|
+
lookupDataSource: {
|
|
10
|
+
typeName: string;
|
|
11
|
+
typeCode: number;
|
|
12
|
+
}[];
|
|
13
|
+
constructor(hitGibPartnerPkService: HitGibPartnerPkService);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitGibPartnerPkComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HitGibPartnerPkComponent, "lib-gib-partner-pks", never, {}, {}, never, never, false>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./hit-gib-partner-pk.component";
|
|
3
|
+
import * as i2 from "@abp/ng.core";
|
|
4
|
+
import * as i3 from "@abp/ng.theme.shared";
|
|
5
|
+
import * as i4 from "@volo/abp.commercial.ng.ui";
|
|
6
|
+
import * as i5 from "@ngx-validate/core";
|
|
7
|
+
import * as i6 from "@ng-bootstrap/ng-bootstrap";
|
|
8
|
+
import * as i7 from "devextreme-angular";
|
|
9
|
+
import * as i8 from "@abp/ng.components/page";
|
|
10
|
+
export declare class HitGibPartnerPkModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitGibPartnerPkModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitGibPartnerPkModule, [typeof i1.HitGibPartnerPkComponent], [typeof i2.CoreModule, typeof i3.ThemeSharedModule, typeof i4.CommercialUiModule, typeof i5.NgxValidateCoreModule, typeof i6.NgbCollapseModule, typeof i6.NgbDatepickerModule, typeof i6.NgbDropdownModule, typeof i7.DxDataGridModule, typeof i8.PageModule, typeof i7.DxLookupModule], never>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitGibPartnerPkModule>;
|
|
14
|
+
}
|
|
15
|
+
export declare function loadHitGibPartnerPkModuleAsChild(): Promise<typeof HitGibPartnerPkModule>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class HitInboundDespatchRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundDespatchRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitInboundDespatchRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitInboundDespatchRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { ListService } from '@abp/ng.core';
|
|
2
|
+
import { OnInit } from '@angular/core';
|
|
3
|
+
import { DxDataGridComponent } from 'devextreme-angular';
|
|
4
|
+
import { HitInvoiceService } from '../../hit-proxy/hit-invoices/hit-invoice.service';
|
|
5
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
6
|
+
import { ToasterService } from '@abp/ng.theme.shared';
|
|
7
|
+
import { HitInboundDespatchService } from '../../hit-proxy/hit-inbound-despatches/hit-inbound-despatch.service';
|
|
8
|
+
import { HitDespatchLineService } from '../../hit-proxy/hit-despatch-lines/hit-despatch-line.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class HitInboundDespatchComponent implements OnInit {
|
|
11
|
+
readonly list: ListService;
|
|
12
|
+
private readonly despatchService;
|
|
13
|
+
private readonly despatchLineService;
|
|
14
|
+
private readonly invoiceService;
|
|
15
|
+
private readonly formBuilder;
|
|
16
|
+
private readonly toasterService;
|
|
17
|
+
dxInboundDespatchInstance: DxDataGridComponent;
|
|
18
|
+
dxDespatchRowsInstance: DxDataGridComponent;
|
|
19
|
+
inboundDespatchDataSource: any;
|
|
20
|
+
despatchRowsDataSource: any;
|
|
21
|
+
inboundDespatchStatusLookup: any;
|
|
22
|
+
inboundDespatchReceiverResponseLookup: any;
|
|
23
|
+
isModalBusyForResponse: boolean;
|
|
24
|
+
isModalOpenForResponse: boolean;
|
|
25
|
+
faturaOnizleme: any;
|
|
26
|
+
formResponse: FormGroup;
|
|
27
|
+
constructor(list: ListService, despatchService: HitInboundDespatchService, despatchLineService: HitDespatchLineService, invoiceService: HitInvoiceService, formBuilder: FormBuilder, toasterService: ToasterService);
|
|
28
|
+
ngOnInit(): void;
|
|
29
|
+
openResponseModal(record: any): void;
|
|
30
|
+
buildForm(record: any): void;
|
|
31
|
+
sendDespatchResponse(acceptType: any): void;
|
|
32
|
+
getInboundDespatches(): void;
|
|
33
|
+
getReceiverResponseName(responseId: any): any;
|
|
34
|
+
getIconClass(responseId: any): "" | "fas fa-clock" | "fas fa-check-circle" | "fas fa-times-circle" | "fas fa-minus-circle";
|
|
35
|
+
getInboundDespatchPreview(record: any): void;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundDespatchComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HitInboundDespatchComponent, "lib-inbound-despatch", never, {}, {}, never, never, false>;
|
|
38
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./hit-inbound-despatch.component";
|
|
3
|
+
import * as i2 from "@abp/ng.core";
|
|
4
|
+
import * as i3 from "@abp/ng.theme.shared";
|
|
5
|
+
import * as i4 from "@volo/abp.commercial.ng.ui";
|
|
6
|
+
import * as i5 from "@ngx-validate/core";
|
|
7
|
+
import * as i6 from "@ng-bootstrap/ng-bootstrap";
|
|
8
|
+
import * as i7 from "devextreme-angular";
|
|
9
|
+
import * as i8 from "@abp/ng.components/page";
|
|
10
|
+
import * as i9 from "./hit-inbound-despatch-routing.module";
|
|
11
|
+
export declare class HitInboundDespatchModule {
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundDespatchModule, never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitInboundDespatchModule, [typeof i1.HitInboundDespatchComponent], [typeof i2.CoreModule, typeof i3.ThemeSharedModule, typeof i4.CommercialUiModule, typeof i5.NgxValidateCoreModule, typeof i6.NgbCollapseModule, typeof i6.NgbDatepickerModule, typeof i6.NgbDropdownModule, typeof i7.DxDataGridModule, typeof i7.DxTextAreaModule, typeof i7.DxTextBoxModule, typeof i7.DxHtmlEditorModule, typeof i7.DxSelectBoxModule, typeof i7.DxLookupModule, typeof i7.DxTabPanelModule, typeof i8.PageModule, typeof i9.HitInboundDespatchRoutingModule, typeof i7.DxRadioGroupModule], never>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitInboundDespatchModule>;
|
|
15
|
+
}
|
|
16
|
+
export declare function loadHitInboundDespatchModuleAsChild(): Promise<typeof HitInboundDespatchModule>;
|
|
@@ -2,19 +2,26 @@ import { ListService } from '@abp/ng.core';
|
|
|
2
2
|
import { OnInit } from '@angular/core';
|
|
3
3
|
import { DxDataGridComponent } from 'devextreme-angular';
|
|
4
4
|
import { HitInvoiceService } from '../../hit-proxy/hit-invoices/hit-invoice.service';
|
|
5
|
+
import { HitFileDocumentTypeService } from '../../hit-proxy/hit-file-document-type/hit-file-document-type.service';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class HitInvoiceComponent implements OnInit {
|
|
7
8
|
readonly list: ListService;
|
|
8
9
|
private readonly invoiceService;
|
|
10
|
+
private readonly fileDocumentTypeService;
|
|
9
11
|
dxInvoiceInstance: DxDataGridComponent;
|
|
12
|
+
dxInvoiceFileInstance: DxDataGridComponent;
|
|
10
13
|
invoicesDataSource: any;
|
|
11
14
|
invoiceStatusLookup: any;
|
|
15
|
+
invoiceFileNameLookup: any;
|
|
12
16
|
invoiceReceiverResponseLookup: any;
|
|
13
17
|
invoiceObjectsEnumLookup: any;
|
|
18
|
+
invoiceFilesDataSource: any;
|
|
14
19
|
isPreviewModalOpen: boolean;
|
|
15
20
|
isPreviewModalBusy: boolean;
|
|
21
|
+
isFileModalOpen: boolean;
|
|
22
|
+
isFileModalBusy: boolean;
|
|
16
23
|
faturaOnizleme: any;
|
|
17
|
-
constructor(list: ListService, invoiceService: HitInvoiceService);
|
|
24
|
+
constructor(list: ListService, invoiceService: HitInvoiceService, fileDocumentTypeService: HitFileDocumentTypeService);
|
|
18
25
|
ngOnInit(): void;
|
|
19
26
|
sendInvoiceSingle(record: any): void;
|
|
20
27
|
sendInvoiceMultiple(): void;
|
|
@@ -22,9 +29,11 @@ export declare class HitInvoiceComponent implements OnInit {
|
|
|
22
29
|
getInvoicesFromConnector(): void;
|
|
23
30
|
getInvoiceResponses(): void;
|
|
24
31
|
getInvoiceView(record: any): void;
|
|
32
|
+
showAllFiles(record: any): void;
|
|
25
33
|
getInvoicePreview(record: any): void;
|
|
26
34
|
getReceiverResponseName(responseId: any): any;
|
|
27
35
|
getIconClass(responseId: any): "" | "fas fa-clock" | "fas fa-check-circle" | "fas fa-times-circle";
|
|
36
|
+
DownloadFile(record: any): void;
|
|
28
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInvoiceComponent, never>;
|
|
29
38
|
static ɵcmp: i0.ɵɵComponentDeclaration<HitInvoiceComponent, "lib-invoice", never, {}, {}, never, never, false>;
|
|
30
39
|
}
|
|
@@ -10,7 +10,7 @@ import * as i8 from "devextreme-angular";
|
|
|
10
10
|
import * as i9 from "@abp/ng.components/page";
|
|
11
11
|
export declare class HitInvoiceModule {
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInvoiceModule, never>;
|
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<HitInvoiceModule, [typeof i1.HitInvoiceComponent, typeof i2.SanitizeHtmlPipe], [typeof i3.CoreModule, typeof i4.ThemeSharedModule, typeof i5.CommercialUiModule, typeof i6.NgxValidateCoreModule, typeof i7.NgbCollapseModule, typeof i7.NgbDatepickerModule, typeof i7.NgbDropdownModule, typeof i8.DxDataGridModule, typeof i8.DxTextAreaModule, typeof i8.DxTextBoxModule, typeof i8.DxHtmlEditorModule, typeof i8.DxSelectBoxModule, typeof i8.DxLookupModule, typeof i8.DxTabPanelModule, typeof i9.PageModule], never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitInvoiceModule, [typeof i1.HitInvoiceComponent, typeof i2.SanitizeHtmlPipe], [typeof i3.CoreModule, typeof i4.ThemeSharedModule, typeof i5.CommercialUiModule, typeof i6.NgxValidateCoreModule, typeof i7.NgbCollapseModule, typeof i7.NgbDatepickerModule, typeof i7.NgbDropdownModule, typeof i8.DxDataGridModule, typeof i8.DxTextAreaModule, typeof i8.DxTextBoxModule, typeof i8.DxHtmlEditorModule, typeof i8.DxSelectBoxModule, typeof i8.DxLookupModule, typeof i8.DxTabPanelModule, typeof i9.PageModule, typeof i8.DxNumberBoxModule], never>;
|
|
14
14
|
static ɵinj: i0.ɵɵInjectorDeclaration<HitInvoiceModule>;
|
|
15
15
|
}
|
|
16
16
|
export declare function loadHitInvoiceModuleAsChild(): Promise<typeof HitInvoiceModule>;
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import { DevexpressRestService } from '../devexpress-query-builder/devexpress-query-builder';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class HitBranchesService {
|
|
4
5
|
private restService;
|
|
6
|
+
private devexService;
|
|
5
7
|
apiName: string;
|
|
8
|
+
LoadBranches: import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
6
9
|
getBranches: () => import("rxjs").Observable<any>;
|
|
7
10
|
anyExistBranch: () => import("rxjs").Observable<any>;
|
|
8
|
-
constructor(restService: RestService);
|
|
11
|
+
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
9
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitBranchesService, never>;
|
|
10
13
|
static ɵprov: i0.ɵɵInjectableDeclaration<HitBranchesService>;
|
|
11
14
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { RestService } from "@abp/ng.core";
|
|
2
|
+
import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class HitBusinessPartnerGroupService {
|
|
5
|
+
private restService;
|
|
6
|
+
private devexService;
|
|
7
|
+
apiName: string;
|
|
8
|
+
LoadBusinessPartnerGroups: import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
9
|
+
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitBusinessPartnerGroupService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HitBusinessPartnerGroupService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { RestService } from "@abp/ng.core";
|
|
2
|
+
import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class HitBusinessPartnerService {
|
|
5
|
+
private restService;
|
|
6
|
+
private devexService;
|
|
7
|
+
apiName: string;
|
|
8
|
+
LoadBusinessPartners: import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
9
|
+
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitBusinessPartnerService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HitBusinessPartnerService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { RestService } from "@abp/ng.core";
|
|
2
|
+
import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class HitDespatchLineService {
|
|
5
|
+
private restService;
|
|
6
|
+
private devexService;
|
|
7
|
+
apiName: string;
|
|
8
|
+
LoadDespatchLines: (despatchUUID: string) => import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
9
|
+
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitDespatchLineService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HitDespatchLineService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { RestService } from "@abp/ng.core";
|
|
2
|
+
import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class HitDespatchService {
|
|
5
|
+
private restService;
|
|
6
|
+
private devexService;
|
|
7
|
+
apiName: string;
|
|
8
|
+
LoadDespatches: import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
9
|
+
LoadDespatchFiles: (despatchGUID: string) => import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
10
|
+
getSapObjects: () => import("rxjs").Observable<any>;
|
|
11
|
+
getReceiverResponses: () => import("rxjs").Observable<any>;
|
|
12
|
+
getStatuses: () => import("rxjs").Observable<any>;
|
|
13
|
+
sendDespatchById: (despatchIds: string[]) => import("rxjs").Observable<any>;
|
|
14
|
+
getDespatchPreview: (despatchGUID: string, tableValue: number) => import("rxjs").Observable<any>;
|
|
15
|
+
getDespatchResponses: (startDate: string, endDate: string) => import("rxjs").Observable<any>;
|
|
16
|
+
getDespatchView: (despatchUUID: string) => import("rxjs").Observable<any>;
|
|
17
|
+
downloadFileById: (blobID: string) => import("rxjs").Observable<any>;
|
|
18
|
+
getReceiptAdvicePreview: (despatchGUID: string) => import("rxjs").Observable<any>;
|
|
19
|
+
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitDespatchService, never>;
|
|
21
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HitDespatchService>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { RestService } from "@abp/ng.core";
|
|
2
|
+
import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class HitFileDocumentTypeService {
|
|
5
|
+
private restService;
|
|
6
|
+
private devexService;
|
|
7
|
+
apiName: string;
|
|
8
|
+
getFileDocumentTypes: () => import("rxjs").Observable<any>;
|
|
9
|
+
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitFileDocumentTypeService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HitFileDocumentTypeService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { RestService } from "@abp/ng.core";
|
|
2
|
+
import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class HitGibPartnerPkAllService {
|
|
5
|
+
private restService;
|
|
6
|
+
private devexService;
|
|
7
|
+
apiName: string;
|
|
8
|
+
LoadGibPartnerPkAlls: import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
9
|
+
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitGibPartnerPkAllService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HitGibPartnerPkAllService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { RestService } from "@abp/ng.core";
|
|
2
|
+
import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class HitGibPartnerPkService {
|
|
5
|
+
private restService;
|
|
6
|
+
private devexService;
|
|
7
|
+
apiName: string;
|
|
8
|
+
LoadGibPartnerPks: import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
9
|
+
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitGibPartnerPkService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HitGibPartnerPkService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { RestService } from "@abp/ng.core";
|
|
2
|
+
import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
|
|
3
|
+
import { DespatchMainResponseDto } from "./models";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class HitInboundDespatchService {
|
|
6
|
+
private restService;
|
|
7
|
+
private devexService;
|
|
8
|
+
apiName: string;
|
|
9
|
+
LoadInboundDespatches: import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
10
|
+
sendDespatchResponse: (mainResponse: DespatchMainResponseDto) => import("rxjs").Observable<any>;
|
|
11
|
+
getInboundDespatch: (startDate: string, endDate: string) => import("rxjs").Observable<any>;
|
|
12
|
+
getDespatchPreviewInbound: (despatchGUID: string) => import("rxjs").Observable<any>;
|
|
13
|
+
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundDespatchService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HitInboundDespatchService>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export interface DespatchLineResponseDto {
|
|
2
|
+
receivedQuantity: number;
|
|
3
|
+
rejectedQuantity: number;
|
|
4
|
+
rejectReason: string;
|
|
5
|
+
itemCode: string;
|
|
6
|
+
itemName: string;
|
|
7
|
+
}
|
|
8
|
+
export interface DespatchMainResponseDto {
|
|
9
|
+
despatchUUID: string;
|
|
10
|
+
lineResponse: DespatchLineResponseDto[];
|
|
11
|
+
}
|
|
@@ -6,15 +6,18 @@ export declare class HitInvoiceService {
|
|
|
6
6
|
private devexService;
|
|
7
7
|
apiName: string;
|
|
8
8
|
LoadInvoices: import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
9
|
+
LoadInvoiceFiles: (invoiceUUID: string) => import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
9
10
|
sendInvoiceById: (invoiceIds: string[]) => import("rxjs").Observable<any>;
|
|
10
11
|
sendInvoiceToEntegrator: () => import("rxjs").Observable<any>;
|
|
11
12
|
getInvoicesFromConnector: () => import("rxjs").Observable<any>;
|
|
12
|
-
getInvoicesResponses: () => import("rxjs").Observable<any>;
|
|
13
13
|
getStatuses: () => import("rxjs").Observable<any>;
|
|
14
14
|
getSapObjects: () => import("rxjs").Observable<any>;
|
|
15
15
|
getReceiverResponses: () => import("rxjs").Observable<any>;
|
|
16
|
+
getInvoiceResponses: (startDate: string, endDate: string) => import("rxjs").Observable<any>;
|
|
16
17
|
getInvoiceView: (invoiceUUID: string) => import("rxjs").Observable<any>;
|
|
18
|
+
showAllFiles: (invoiceUUID: string) => import("rxjs").Observable<any>;
|
|
17
19
|
getInvoicePreview: (invoiceGUID: string, tableName: string) => import("rxjs").Observable<any>;
|
|
20
|
+
downloadFileById: (blobID: string) => import("rxjs").Observable<any>;
|
|
18
21
|
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
19
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInvoiceService, never>;
|
|
20
23
|
static ɵprov: i0.ɵɵInjectableDeclaration<HitInvoiceService>;
|
|
@@ -73,6 +73,16 @@ export interface DespatchCreateDto {
|
|
|
73
73
|
legalMonetaryTotalChargeTotalAmount?: number;
|
|
74
74
|
legalMonetaryTotalPayableRoundingAmount?: number;
|
|
75
75
|
legalMonetaryTotalPayableAmount?: number;
|
|
76
|
+
isCanceled?: boolean;
|
|
77
|
+
receiverResponse?: number;
|
|
78
|
+
receiverResponseDesc?: string;
|
|
79
|
+
status?: number;
|
|
80
|
+
resourceDocEntry?: number;
|
|
81
|
+
resourceDocType?: number;
|
|
82
|
+
targetDocEntry?: string;
|
|
83
|
+
targetDocType?: number;
|
|
84
|
+
docType?: number;
|
|
85
|
+
senderGB?: string;
|
|
76
86
|
}
|
|
77
87
|
export interface DespatchDto extends FullAuditedEntityDto<string> {
|
|
78
88
|
ublVersionId: string;
|
|
@@ -148,6 +158,16 @@ export interface DespatchDto extends FullAuditedEntityDto<string> {
|
|
|
148
158
|
legalMonetaryTotalChargeTotalAmount?: number;
|
|
149
159
|
legalMonetaryTotalPayableRoundingAmount?: number;
|
|
150
160
|
legalMonetaryTotalPayableAmount?: number;
|
|
161
|
+
isCanceled?: boolean;
|
|
162
|
+
receiverResponse?: number;
|
|
163
|
+
receiverResponseDesc?: string;
|
|
164
|
+
status?: number;
|
|
165
|
+
resourceDocEntry?: number;
|
|
166
|
+
resourceDocType?: number;
|
|
167
|
+
targetDocEntry?: string;
|
|
168
|
+
targetDocType?: number;
|
|
169
|
+
docType?: number;
|
|
170
|
+
senderGB?: string;
|
|
151
171
|
concurrencyStamp?: string;
|
|
152
172
|
}
|
|
153
173
|
export interface DespatchExcelDownloadDto {
|
|
@@ -229,6 +249,16 @@ export interface DespatchUpdateDto {
|
|
|
229
249
|
legalMonetaryTotalChargeTotalAmount?: number;
|
|
230
250
|
legalMonetaryTotalPayableRoundingAmount?: number;
|
|
231
251
|
legalMonetaryTotalPayableAmount?: number;
|
|
252
|
+
isCanceled?: boolean;
|
|
253
|
+
receiverResponse?: number;
|
|
254
|
+
receiverResponseDesc?: string;
|
|
255
|
+
status?: number;
|
|
256
|
+
resourceDocEntry?: number;
|
|
257
|
+
resourceDocType?: number;
|
|
258
|
+
targetDocEntry?: string;
|
|
259
|
+
targetDocType?: number;
|
|
260
|
+
docType?: number;
|
|
261
|
+
senderGB?: string;
|
|
232
262
|
concurrencyStamp?: string;
|
|
233
263
|
}
|
|
234
264
|
export interface GetDespatchesInput extends PagedAndSortedResultRequestDto {
|
|
@@ -330,4 +360,20 @@ export interface GetDespatchesInput extends PagedAndSortedResultRequestDto {
|
|
|
330
360
|
legalMonetaryTotalPayableRoundingAmountMax?: number;
|
|
331
361
|
legalMonetaryTotalPayableAmountMin?: number;
|
|
332
362
|
legalMonetaryTotalPayableAmountMax?: number;
|
|
363
|
+
isCanceled?: boolean;
|
|
364
|
+
receiverResponseMin?: number;
|
|
365
|
+
receiverResponseMax?: number;
|
|
366
|
+
receiverResponseDesc?: string;
|
|
367
|
+
statusMin?: number;
|
|
368
|
+
statusMax?: number;
|
|
369
|
+
resourceDocEntryMin?: number;
|
|
370
|
+
resourceDocEntryMax?: number;
|
|
371
|
+
resourceDocTypeMin?: number;
|
|
372
|
+
resourceDocTypeMax?: number;
|
|
373
|
+
targetDocEntry?: string;
|
|
374
|
+
targetDocTypeMin?: number;
|
|
375
|
+
targetDocTypeMax?: number;
|
|
376
|
+
docTypeMin?: number;
|
|
377
|
+
docTypeMax?: number;
|
|
378
|
+
senderGB?: string;
|
|
333
379
|
}
|