@colijnit/sharedcomponents 1.0.23 → 1.0.25
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/.browserslistrc +16 -0
- package/.editorconfig +16 -0
- package/.vscode/extensions.json +4 -0
- package/.vscode/launch.json +20 -0
- package/.vscode/tasks.json +42 -0
- package/README.md +11 -8
- package/Sharedcomponents.iml +11 -0
- package/angular.json +133 -0
- package/karma.conf.js +44 -0
- package/move-assets.js +14 -0
- package/package.json +74 -26
- package/projects/sharedcomponents/.browserslistrc +16 -0
- package/projects/sharedcomponents/README.md +24 -0
- package/projects/sharedcomponents/karma.conf.js +44 -0
- package/projects/sharedcomponents/ng-package.json +17 -0
- package/projects/sharedcomponents/package.json +18 -0
- package/projects/sharedcomponents/src/lib/assets/dictionary/text.properties.ts +8 -0
- package/projects/sharedcomponents/src/lib/assets/icons/angle_left_solid.svg +1 -0
- package/projects/sharedcomponents/src/lib/assets/icons/angle_right_solid.svg +1 -0
- package/projects/sharedcomponents/src/lib/assets/icons/arrow_fat_right.svg +1 -0
- package/projects/sharedcomponents/src/lib/assets/icons/arrow_point_left.svg +8 -0
- package/projects/sharedcomponents/src/lib/assets/icons/arrow_point_right.svg +4 -0
- package/projects/sharedcomponents/src/lib/assets/icons/bring_forward_regular.svg +1 -0
- package/projects/sharedcomponents/src/lib/assets/icons/check_round.svg +1 -0
- package/projects/sharedcomponents/src/lib/assets/icons/delete_left_regular.svg +1 -0
- package/projects/sharedcomponents/src/lib/assets/icons/delivery_truck.svg +12 -0
- package/projects/sharedcomponents/src/lib/assets/icons/email.svg +5 -0
- package/projects/sharedcomponents/src/lib/assets/icons/pdf.svg +15 -0
- package/projects/sharedcomponents/src/lib/assets/icons/print.svg +10 -0
- package/projects/sharedcomponents/src/lib/assets/icons/signature_field.svg +9 -0
- package/projects/sharedcomponents/src/lib/assets/icons/xml.svg +9 -0
- package/projects/sharedcomponents/src/lib/components/circular-gauge/co-circular-gauge.component.ts +139 -0
- package/projects/sharedcomponents/src/lib/components/circular-gauge/co-circular-gauge.module.ts +19 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/circular-gauge/style/_layout.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/circular-gauge/style/_material-definition.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/circular-gauge/style/_theme.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/circular-gauge/style/material.scss +0 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-base-view.component.ts +68 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-day-view.component.ts +31 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-event.component.ts +67 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-events.component.ts +48 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-half-hour-cell.component.ts +81 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-header.component.ts +265 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-hour-cell.component.ts +38 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-hour-view-labels.component.ts +50 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-hour-view.component.ts +46 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-month-view.component.ts +65 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-view.component.ts +38 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-week-select-view.component.ts +63 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-week-view.component.ts +46 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/style/_layout.scss +443 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/style/_material-definition.scss +11 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/style/_theme.scss +7 -0
- package/{lib/components/layout-switcher → projects/sharedcomponents/src/lib/components/date-planning/component/agenda}/style/material.scss +0 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/calendar/calendar-all-months.component.ts +37 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/calendar/calendar-all-years.component.ts +52 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/calendar/calendar-header.component.ts +124 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/calendar/calendar-view.component.ts +201 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/calendar/calendar.component.ts +35 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/calendar/style/_layout.scss +167 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/calendar/style/_material-definition.scss +7 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/component/calendar/style/_theme.scss +7 -0
- package/{lib/components/linear-gauge → projects/sharedcomponents/src/lib/components/date-planning/component/calendar}/style/material.scss +0 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/date-planning.component.ts +133 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/date-planning.module.ts +56 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/style/_layout.scss +47 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/style/_material-definition.scss +0 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/style/_theme.scss +7 -0
- package/projects/sharedcomponents/src/lib/components/date-planning/style/material.scss +5 -0
- package/projects/sharedcomponents/src/lib/components/docsign/component/signature/signature.component.ts +82 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/docsign/component/signature/style/_layout.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/docsign/component/signature/style/_material-definition.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/docsign/component/signature/style/_theme.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/docsign/component/signature/style/material.scss +0 -0
- package/projects/sharedcomponents/src/lib/components/docsign/component/signatures/signatures.component.ts +50 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/docsign/component/signatures/style/_layout.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/docsign/component/signatures/style/_material-definition.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/docsign/component/signatures/style/_theme.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/docsign/component/signatures/style/material.scss +0 -0
- package/projects/sharedcomponents/src/lib/components/docsign/docsign.component.ts +252 -0
- package/projects/sharedcomponents/src/lib/components/docsign/docsign.module.ts +22 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/docsign/style/_layout.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/docsign/style/_material-definition.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/docsign/style/_theme.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/docsign/style/material.scss +0 -0
- package/projects/sharedcomponents/src/lib/components/key-pad/key-pad.component.ts +205 -0
- package/projects/sharedcomponents/src/lib/components/key-pad/key-pad.module.ts +19 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/key-pad/style/_layout.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/key-pad/style/_material-definition.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/key-pad/style/_theme.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/key-pad/style/material.scss +0 -0
- package/projects/sharedcomponents/src/lib/components/layout-switcher/layout-switcher.component.ts +98 -0
- package/projects/sharedcomponents/src/lib/components/layout-switcher/layout-switcher.module.ts +21 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/layout-switcher/style/_layout.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/layout-switcher/style/_material-definition.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/layout-switcher/style/_theme.scss +0 -0
- package/projects/sharedcomponents/src/lib/components/layout-switcher/style/material.scss +5 -0
- package/projects/sharedcomponents/src/lib/components/linear-gauge/co-linear-gauge.component.ts +56 -0
- package/projects/sharedcomponents/src/lib/components/linear-gauge/co-linear-gauge.module.ts +17 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/linear-gauge/style/_layout.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/linear-gauge/style/_material-definition.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/linear-gauge/style/_theme.scss +0 -0
- package/projects/sharedcomponents/src/lib/components/linear-gauge/style/material.scss +5 -0
- package/projects/sharedcomponents/src/lib/components/send-method-dialog/enums/send-option.ts +6 -0
- package/projects/sharedcomponents/src/lib/components/send-method-dialog/send-method-dialog.component.ts +342 -0
- package/projects/sharedcomponents/src/lib/components/send-method-dialog/send-method-dialog.module.ts +33 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/send-method-dialog/style/_layout.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/send-method-dialog/style/_material-definition.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/send-method-dialog/style/_theme.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/send-method-dialog/style/material.scss +0 -0
- package/projects/sharedcomponents/src/lib/components/statusbar/statusbar.component.ts +97 -0
- package/projects/sharedcomponents/src/lib/components/statusbar/statusbar.module.ts +21 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/statusbar/style/_layout.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/statusbar/style/_material-definition.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/statusbar/style/_theme.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/statusbar/style/material.scss +0 -0
- package/projects/sharedcomponents/src/lib/components/stock/stock-in-order/stock-in-order.component.ts +0 -0
- package/projects/sharedcomponents/src/lib/components/stock/stock-information/stock-information.component.ts +64 -0
- package/projects/sharedcomponents/src/lib/components/stock/stock-information-grid/stock-information-grid.component.ts +384 -0
- package/projects/sharedcomponents/src/lib/components/stock/stock-location/stock-location.component.ts +84 -0
- package/{lib/components/stock/stock-transfer/co-drop-down-list-fields.interface.d.ts → projects/sharedcomponents/src/lib/components/stock/stock-transfer/co-drop-down-list-fields.interface.ts} +2 -2
- package/projects/sharedcomponents/src/lib/components/stock/stock-transfer/stock-change-amount.component.ts +73 -0
- package/projects/sharedcomponents/src/lib/components/stock/stock-transfer/stock-transfer.component.ts +153 -0
- package/projects/sharedcomponents/src/lib/components/stock/stock.component.ts +165 -0
- package/projects/sharedcomponents/src/lib/components/stock/stock.module.ts +51 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/stock/style/_layout.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/stock/style/_material-definition.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/stock/style/_theme.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/components/stock/style/material.scss +0 -0
- package/projects/sharedcomponents/src/lib/enum/calendar-view.enum.ts +6 -0
- package/{lib/enum/icon.enum.d.ts → projects/sharedcomponents/src/lib/enum/icon.enum.ts} +5 -2
- package/projects/sharedcomponents/src/lib/enum/keyboard-code.enum.ts +30 -0
- package/projects/sharedcomponents/src/lib/enum/language-code.enum.ts +6 -0
- package/projects/sharedcomponents/src/lib/enum/month.enum.ts +15 -0
- package/projects/sharedcomponents/src/lib/enum/time-period.enum.ts +9 -0
- package/projects/sharedcomponents/src/lib/factory/business-object-factory.ts +120 -0
- package/projects/sharedcomponents/src/lib/factory/decorators/boolean.decorator.ts +113 -0
- package/projects/sharedcomponents/src/lib/factory/decorators/complex-array.decorator.ts +61 -0
- package/projects/sharedcomponents/src/lib/factory/decorators/complex-field.decorator.ts +63 -0
- package/projects/sharedcomponents/src/lib/factory/decorators/date-field.decorator.ts +41 -0
- package/projects/sharedcomponents/src/lib/factory/decorators/string-number.decorator.ts +48 -0
- package/projects/sharedcomponents/src/lib/model/agenda-event-per-day.model.ts +6 -0
- package/projects/sharedcomponents/src/lib/model/agenda-event.model.ts +17 -0
- package/projects/sharedcomponents/src/lib/model/agenda-null-objects.ts +11 -0
- package/projects/sharedcomponents/src/lib/model/business-object.ts +85 -0
- package/projects/sharedcomponents/src/lib/model/constant/all-months.ts +17 -0
- package/projects/sharedcomponents/src/lib/model/date-range.ts +10 -0
- package/projects/sharedcomponents/src/lib/model/day.model.ts +9 -0
- package/projects/sharedcomponents/src/lib/model/icon-svg.ts +18 -0
- package/projects/sharedcomponents/src/lib/model/month.model.ts +11 -0
- package/projects/sharedcomponents/src/lib/model/time-window.bo.ts +21 -0
- package/projects/sharedcomponents/src/lib/model/week.model.ts +5 -0
- package/projects/sharedcomponents/src/lib/model/weekday.model.ts +17 -0
- package/projects/sharedcomponents/src/lib/pipe/array-number.pipe.ts +14 -0
- package/projects/sharedcomponents/src/lib/pipe/master-pipes.ts +7 -0
- package/projects/sharedcomponents/src/lib/pipe/ucfirst.pipe.ts +14 -0
- package/projects/sharedcomponents/src/lib/service/dictionary.service.ts +86 -0
- package/projects/sharedcomponents/src/lib/service/icon-cache.service.ts +51 -0
- package/projects/sharedcomponents/src/lib/service/options.service.ts +66 -0
- package/projects/sharedcomponents/src/lib/service/shared-connector.service.ts +258 -0
- package/projects/sharedcomponents/src/lib/service/shared-initializer.service.ts +29 -0
- package/projects/sharedcomponents/src/lib/service/shared.service.ts +21 -0
- package/projects/sharedcomponents/src/lib/service/stock.service.ts +95 -0
- package/{lib → projects/sharedcomponents/src/lib}/style/_mixin.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/style/_variables.scss +0 -0
- package/{lib → projects/sharedcomponents/src/lib}/style/sharedcomponents-globals.scss +0 -0
- package/projects/sharedcomponents/src/lib/utils/array-utils.ts +202 -0
- package/projects/sharedcomponents/src/lib/utils/calendar.utils.ts +75 -0
- package/projects/sharedcomponents/src/lib/utils/date-utils.ts +302 -0
- package/projects/sharedcomponents/src/lib/utils/function/not-nill.function.ts +4 -0
- package/projects/sharedcomponents/src/lib/utils/is-nill.function.ts +4 -0
- package/projects/sharedcomponents/src/lib/utils/string-utils.ts +67 -0
- package/{public-api.d.ts → projects/sharedcomponents/src/public-api.ts} +5 -0
- package/projects/sharedcomponents/src/test.ts +27 -0
- package/projects/sharedcomponents/tsconfig.lib.json +18 -0
- package/projects/sharedcomponents/tsconfig.lib.prod.json +10 -0
- package/projects/sharedcomponents/tsconfig.spec.json +17 -0
- package/script/merge-icons.js +39 -0
- package/src/app/app.component.scss +9 -0
- package/src/app/app.component.spec.ts +31 -0
- package/src/app/app.component.ts +156 -0
- package/src/app/app.module.ts +60 -0
- package/src/assets/.gitkeep +0 -0
- package/src/environments/environment.prod.ts +3 -0
- package/src/environments/environment.ts +16 -0
- package/src/favicon.ico +0 -0
- package/src/index.html +13 -0
- package/src/main.ts +12 -0
- package/src/polyfills.ts +53 -0
- package/src/styles.scss +40 -0
- package/src/test.ts +26 -0
- package/tsconfig.app.json +15 -0
- package/tsconfig.json +65 -0
- package/tsconfig.spec.json +18 -0
- package/bundles/colijnit-sharedcomponents.umd.js +0 -3701
- package/bundles/colijnit-sharedcomponents.umd.js.map +0 -1
- package/colijnit-sharedcomponents-1.0.23.tgz +0 -0
- package/colijnit-sharedcomponents.d.ts +0 -16
- package/colijnit-sharedcomponents.metadata.json +0 -1
- package/esm2015/colijnit-sharedcomponents.js +0 -17
- package/esm2015/lib/assets/dictionary/text.properties.js +0 -11
- package/esm2015/lib/components/circular-gauge/co-circular-gauge.component.js +0 -125
- package/esm2015/lib/components/circular-gauge/co-circular-gauge.module.js +0 -21
- package/esm2015/lib/components/docsign/component/signature/signature.component.js +0 -75
- package/esm2015/lib/components/docsign/component/signatures/signatures.component.js +0 -44
- package/esm2015/lib/components/docsign/docsign.component.js +0 -225
- package/esm2015/lib/components/docsign/docsign.module.js +0 -23
- package/esm2015/lib/components/key-pad/key-pad.component.js +0 -191
- package/esm2015/lib/components/key-pad/key-pad.module.js +0 -21
- package/esm2015/lib/components/layout-switcher/layout-switcher.component.js +0 -74
- package/esm2015/lib/components/layout-switcher/layout-switcher.module.js +0 -21
- package/esm2015/lib/components/linear-gauge/co-linear-gauge.component.js +0 -55
- package/esm2015/lib/components/linear-gauge/co-linear-gauge.module.js +0 -19
- package/esm2015/lib/components/send-method-dialog/enums/send-option.js +0 -8
- package/esm2015/lib/components/send-method-dialog/send-method-dialog.component.js +0 -309
- package/esm2015/lib/components/send-method-dialog/send-method-dialog.module.js +0 -31
- package/esm2015/lib/components/statusbar/statusbar.component.js +0 -81
- package/esm2015/lib/components/statusbar/statusbar.module.js +0 -23
- package/esm2015/lib/components/stock/stock-information/stock-information.component.js +0 -54
- package/esm2015/lib/components/stock/stock-information-grid/stock-information-grid.component.js +0 -350
- package/esm2015/lib/components/stock/stock-location/stock-location.component.js +0 -62
- package/esm2015/lib/components/stock/stock-transfer/co-drop-down-list-fields.interface.js +0 -2
- package/esm2015/lib/components/stock/stock-transfer/stock-change-amount.component.js +0 -68
- package/esm2015/lib/components/stock/stock-transfer/stock-transfer.component.js +0 -130
- package/esm2015/lib/components/stock/stock.component.js +0 -140
- package/esm2015/lib/components/stock/stock.module.js +0 -48
- package/esm2015/lib/enum/icon.enum.js +0 -17
- package/esm2015/lib/enum/keyboard-code.enum.js +0 -32
- package/esm2015/lib/enum/language-code.enum.js +0 -8
- package/esm2015/lib/factory/business-object-factory.js +0 -120
- package/esm2015/lib/factory/decorators/boolean.decorator.js +0 -102
- package/esm2015/lib/factory/decorators/complex-array.decorator.js +0 -55
- package/esm2015/lib/factory/decorators/complex-field.decorator.js +0 -57
- package/esm2015/lib/factory/decorators/date-field.decorator.js +0 -36
- package/esm2015/lib/factory/decorators/string-number.decorator.js +0 -43
- package/esm2015/lib/model/business-object.js +0 -81
- package/esm2015/lib/model/icon-svg.js +0 -16
- package/esm2015/lib/service/dictionary.service.js +0 -76
- package/esm2015/lib/service/icon-cache.service.js +0 -51
- package/esm2015/lib/service/options.service.js +0 -71
- package/esm2015/lib/service/shared-connector.service.js +0 -278
- package/esm2015/lib/service/shared.service.js +0 -30
- package/esm2015/lib/service/stock.service.js +0 -95
- package/esm2015/lib/utils/array-utils.js +0 -183
- package/esm2015/lib/utils/is-nill.function.js +0 -5
- package/esm2015/lib/utils/string-utils.js +0 -64
- package/esm2015/public-api.js +0 -21
- package/fesm2015/colijnit-sharedcomponents.js +0 -3511
- package/fesm2015/colijnit-sharedcomponents.js.map +0 -1
- package/lib/assets/dictionary/text.properties.d.ts +0 -3
- package/lib/components/circular-gauge/co-circular-gauge.component.d.ts +0 -20
- package/lib/components/circular-gauge/co-circular-gauge.module.d.ts +0 -2
- package/lib/components/docsign/component/signature/signature.component.d.ts +0 -16
- package/lib/components/docsign/component/signatures/signatures.component.d.ts +0 -12
- package/lib/components/docsign/docsign.component.d.ts +0 -92
- package/lib/components/docsign/docsign.module.d.ts +0 -2
- package/lib/components/key-pad/key-pad.component.d.ts +0 -36
- package/lib/components/key-pad/key-pad.module.d.ts +0 -2
- package/lib/components/layout-switcher/layout-switcher.component.d.ts +0 -16
- package/lib/components/layout-switcher/layout-switcher.module.d.ts +0 -2
- package/lib/components/linear-gauge/co-linear-gauge.component.d.ts +0 -16
- package/lib/components/linear-gauge/co-linear-gauge.module.d.ts +0 -2
- package/lib/components/send-method-dialog/enums/send-option.d.ts +0 -6
- package/lib/components/send-method-dialog/send-method-dialog.component.d.ts +0 -62
- package/lib/components/send-method-dialog/send-method-dialog.module.d.ts +0 -2
- package/lib/components/statusbar/statusbar.component.d.ts +0 -23
- package/lib/components/statusbar/statusbar.module.d.ts +0 -2
- package/lib/components/stock/stock-information/stock-information.component.d.ts +0 -10
- package/lib/components/stock/stock-information-grid/stock-information-grid.component.d.ts +0 -60
- package/lib/components/stock/stock-location/stock-location.component.d.ts +0 -15
- package/lib/components/stock/stock-transfer/stock-change-amount.component.d.ts +0 -18
- package/lib/components/stock/stock-transfer/stock-transfer.component.d.ts +0 -36
- package/lib/components/stock/stock.component.d.ts +0 -42
- package/lib/components/stock/stock.module.d.ts +0 -2
- package/lib/enum/keyboard-code.enum.d.ts +0 -30
- package/lib/enum/language-code.enum.d.ts +0 -6
- package/lib/factory/business-object-factory.d.ts +0 -23
- package/lib/factory/decorators/boolean.decorator.d.ts +0 -43
- package/lib/factory/decorators/complex-array.decorator.d.ts +0 -25
- package/lib/factory/decorators/complex-field.decorator.d.ts +0 -25
- package/lib/factory/decorators/date-field.decorator.d.ts +0 -17
- package/lib/factory/decorators/string-number.decorator.d.ts +0 -22
- package/lib/model/business-object.d.ts +0 -7
- package/lib/model/icon-svg.d.ts +0 -4
- package/lib/service/dictionary.service.d.ts +0 -21
- package/lib/service/icon-cache.service.d.ts +0 -18
- package/lib/service/options.service.d.ts +0 -13
- package/lib/service/shared-connector.service.d.ts +0 -43
- package/lib/service/shared.service.d.ts +0 -8
- package/lib/service/stock.service.d.ts +0 -38
- package/lib/utils/array-utils.d.ts +0 -57
- package/lib/utils/is-nill.function.d.ts +0 -1
- package/lib/utils/string-utils.d.ts +0 -22
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { AxisModel, CircularGaugeComponent } from "@syncfusion/ej2-angular-circulargauge";
|
|
2
|
-
import { AnnotationModel } from "@syncfusion/ej2-circulargauge/src/circular-gauge/axes/axis-model";
|
|
3
|
-
export declare class CoCircularGaugeComponent {
|
|
4
|
-
circulargauge: CircularGaugeComponent;
|
|
5
|
-
set value(value: number);
|
|
6
|
-
get value(): number;
|
|
7
|
-
get color(): string;
|
|
8
|
-
showClass(): boolean;
|
|
9
|
-
private _value;
|
|
10
|
-
private _color;
|
|
11
|
-
majorTicks: Object;
|
|
12
|
-
minorTicks: Object;
|
|
13
|
-
labelStyle: Object;
|
|
14
|
-
lineStyle: Object;
|
|
15
|
-
ranges: Object[];
|
|
16
|
-
getAxes(): AxisModel[];
|
|
17
|
-
getPointers(): Object[];
|
|
18
|
-
getAnnotations(): AnnotationModel[];
|
|
19
|
-
private _setColor;
|
|
20
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter } from "@angular/core";
|
|
2
|
-
import SignaturePad from "signature_pad";
|
|
3
|
-
export declare class SignatureComponent {
|
|
4
|
-
set content(content: ElementRef);
|
|
5
|
-
title: string;
|
|
6
|
-
saveButtonLabel: string;
|
|
7
|
-
clearButtonLabel: string;
|
|
8
|
-
save: EventEmitter<string>;
|
|
9
|
-
showClass(): boolean;
|
|
10
|
-
signature: SignaturePad;
|
|
11
|
-
signatureCanvas: ElementRef;
|
|
12
|
-
handleSave(event: MouseEvent): void;
|
|
13
|
-
handleClear(event: MouseEvent): void;
|
|
14
|
-
private _initCanvas;
|
|
15
|
-
private _resizeSignatureCanvas;
|
|
16
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from "@angular/core";
|
|
2
|
-
export declare class SignaturesComponent {
|
|
3
|
-
showFirstSignature: boolean;
|
|
4
|
-
firstSignatureTitle: string;
|
|
5
|
-
showSecondSignature: boolean;
|
|
6
|
-
secondSignatureTitle: string;
|
|
7
|
-
saveButtonLabel: string;
|
|
8
|
-
clearButtonLabel: string;
|
|
9
|
-
saveFirstSignature: EventEmitter<string>;
|
|
10
|
-
saveSecondSignature: EventEmitter<string>;
|
|
11
|
-
showClass(): boolean;
|
|
12
|
-
}
|
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter } from "@angular/core";
|
|
2
|
-
import { PDFDocument } from "pdf-lib";
|
|
3
|
-
export interface TextDimension {
|
|
4
|
-
x: number;
|
|
5
|
-
y: number;
|
|
6
|
-
width: number;
|
|
7
|
-
height: number;
|
|
8
|
-
page: number;
|
|
9
|
-
}
|
|
10
|
-
export declare class DocsignComponent {
|
|
11
|
-
iframe: ElementRef;
|
|
12
|
-
/**
|
|
13
|
-
* Load an existing [[PDFDocument]]. The input data can be provided in
|
|
14
|
-
* multiple formats:
|
|
15
|
-
*
|
|
16
|
-
* | Type | Contents |
|
|
17
|
-
* | ------------- | ------------------------------------------------------ |
|
|
18
|
-
* | `string` | A base64 encoded string (or data URI) containing a PDF |
|
|
19
|
-
* | `Uint8Array` | The raw bytes of a PDF |
|
|
20
|
-
* | `ArrayBuffer` | The raw bytes of a PDF |
|
|
21
|
-
*
|
|
22
|
-
* For example:
|
|
23
|
-
* ```js
|
|
24
|
-
* import { PDFDocument } from 'pdf-lib'
|
|
25
|
-
*
|
|
26
|
-
* // pdf=string
|
|
27
|
-
* const base64 =
|
|
28
|
-
* 'JVBERi0xLjcKJYGBgYEKCjUgMCBvYmoKPDwKL0ZpbHRlciAvRmxhdGVEZWNvZGUKL0xlbm' +
|
|
29
|
-
* 'd0aCAxMDQKPj4Kc3RyZWFtCniccwrhMlAAwaJ0Ln2P1Jyy1JLM5ERdc0MjCwUjE4WQNC4Q' +
|
|
30
|
-
* '6cNlCFZkqGCqYGSqEJLLZWNuYGZiZmbkYuZsZmlmZGRgZmluDCQNzc3NTM2NzdzMXMxMjQ' +
|
|
31
|
-
* 'ztFEKyuEK0uFxDuAAOERdVCmVuZHN0cmVhbQplbmRvYmoKCjYgMCBvYmoKPDwKL0ZpbHRl' +
|
|
32
|
-
* 'ciAvRmxhdGVEZWNvZGUKL1R5cGUgL09ialN0bQovTiA0Ci9GaXJzdCAyMAovTGVuZ3RoID' +
|
|
33
|
-
* 'IxNQo+PgpzdHJlYW0KeJxVj9GqwjAMhu/zFHkBzTo3nCCCiiKIHPEICuJF3cKoSCu2E8/b' +
|
|
34
|
-
* '20wPIr1p8v9/8kVhgilmGfawX2CGaVrgcAi0/bsy0lrX7IGWpvJ4iJYEN3gEmrrGBlQwGs' +
|
|
35
|
-
* 'HHO9VBX1wNrxAqMX87RBD5xpJuddqwd82tjAHxzV1U5LPgy52DKXWnr1Lheg+j/c/pzGVr' +
|
|
36
|
-
* 'iqV0VlwZPXGPCJjElw/ybkwUmeoWgxesDXGhHJC/D/iikp1Av80ptKU0FdBEe25pPihAM1' +
|
|
37
|
-
* 'u6ytgaaWfs2Hrz35CJT1+EWmAKZW5kc3RyZWFtCmVuZG9iagoKNyAwIG9iago8PAovU2l6' +
|
|
38
|
-
* 'ZSA4Ci9Sb290IDIgMCBSCi9GaWx0ZXIgL0ZsYXRlRGVjb2RlCi9UeXBlIC9YUmVmCi9MZW' +
|
|
39
|
-
* '5ndGggMzgKL1cgWyAxIDIgMiBdCi9JbmRleCBbIDAgOCBdCj4+CnN0cmVhbQp4nBXEwREA' +
|
|
40
|
-
* 'EBAEsCwz3vrvRmOOyyOoGhZdutHN2MT55fIAVocD+AplbmRzdHJlYW0KZW5kb2JqCgpzdG' +
|
|
41
|
-
* 'FydHhyZWYKNTEwCiUlRU9G'
|
|
42
|
-
*
|
|
43
|
-
* const dataUri = 'data:application/pdf;base64,' + base64
|
|
44
|
-
*
|
|
45
|
-
* const pdfDoc1 = await PDFDocument.load(base64)
|
|
46
|
-
* const pdfDoc2 = await PDFDocument.load(dataUri)
|
|
47
|
-
*
|
|
48
|
-
* // pdf=Uint8Array
|
|
49
|
-
* import fs from 'fs'
|
|
50
|
-
* const uint8Array = fs.readFileSync('with_update_sections.pdf')
|
|
51
|
-
* const pdfDoc3 = await PDFDocument.load(uint8Array)
|
|
52
|
-
*
|
|
53
|
-
* // pdf=ArrayBuffer
|
|
54
|
-
* const url = 'https://pdf-lib.js.org/assets/with_update_sections.pdf'
|
|
55
|
-
* const arrayBuffer = await fetch(url).then(res => res.arrayBuffer())
|
|
56
|
-
* const pdfDoc4 = await PDFDocument.load(arrayBuffer)
|
|
57
|
-
*
|
|
58
|
-
* ```
|
|
59
|
-
*
|
|
60
|
-
* @param pdf The input data containing a PDF document.
|
|
61
|
-
* @param options The options to be used when loading the document.
|
|
62
|
-
* @returns Resolves with a document loaded from the input.
|
|
63
|
-
*/
|
|
64
|
-
set pdf(value: any);
|
|
65
|
-
get pdf(): any;
|
|
66
|
-
firstSignatureLabel: string;
|
|
67
|
-
firstSignatureField: string;
|
|
68
|
-
secondSignatureLabel: string;
|
|
69
|
-
secondSignatureField: string;
|
|
70
|
-
saveButtonLabel: string;
|
|
71
|
-
clearButtonLabel: string;
|
|
72
|
-
signDocumentButtonLabel: string;
|
|
73
|
-
cancelButtonLabel: string;
|
|
74
|
-
pdfSaved: EventEmitter<string>;
|
|
75
|
-
cancelClick: EventEmitter<MouseEvent>;
|
|
76
|
-
showClass(): boolean;
|
|
77
|
-
showSignaturePopup: boolean;
|
|
78
|
-
showSigBuyer: boolean;
|
|
79
|
-
sigBuyerPosition: TextDimension;
|
|
80
|
-
showSigSeller: boolean;
|
|
81
|
-
sigSellerPosition: TextDimension;
|
|
82
|
-
showSignatures: boolean;
|
|
83
|
-
pdfDoc: PDFDocument;
|
|
84
|
-
private _pdf;
|
|
85
|
-
saveFirstSignature(sig: string): void;
|
|
86
|
-
saveSecondSignature(sig: string): void;
|
|
87
|
-
private _openPDF;
|
|
88
|
-
private _savePdf;
|
|
89
|
-
private _checkSignatures;
|
|
90
|
-
private _getPositionSignature;
|
|
91
|
-
private _saveSignature;
|
|
92
|
-
}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { Icon } from '../../enum/icon.enum';
|
|
3
|
-
import { IconCacheService } from '../../service/icon-cache.service';
|
|
4
|
-
export declare class KeyPadComponent {
|
|
5
|
-
iconCacheService: IconCacheService;
|
|
6
|
-
icons: typeof Icon;
|
|
7
|
-
set model(value: number);
|
|
8
|
-
get model(): number;
|
|
9
|
-
showValue: boolean;
|
|
10
|
-
emitModelChangeOnEnter: boolean;
|
|
11
|
-
modelChange: EventEmitter<number>;
|
|
12
|
-
internalModelChange: EventEmitter<string>;
|
|
13
|
-
enterClick: EventEmitter<void>;
|
|
14
|
-
showClass(): boolean;
|
|
15
|
-
handleKeyDown(event: KeyboardEvent): void;
|
|
16
|
-
private readonly _validKeyMap;
|
|
17
|
-
constructor(iconCacheService: IconCacheService);
|
|
18
|
-
set internalModel(value: string);
|
|
19
|
-
get internalModel(): string;
|
|
20
|
-
isNegative: boolean;
|
|
21
|
-
private _model;
|
|
22
|
-
private _internalModel;
|
|
23
|
-
private _maxCharacters;
|
|
24
|
-
handleMinusClick(event: MouseEvent | KeyboardEvent): void;
|
|
25
|
-
handleClearClick(event: MouseEvent | KeyboardEvent): void;
|
|
26
|
-
handleBsClick(event: MouseEvent | KeyboardEvent): void;
|
|
27
|
-
handleButtonClick(chr: string): void;
|
|
28
|
-
handleEnterClick(event: MouseEvent | KeyboardEvent): void;
|
|
29
|
-
private _updateModel;
|
|
30
|
-
private _keyDown;
|
|
31
|
-
private _isEnter;
|
|
32
|
-
private _isMinus;
|
|
33
|
-
private _isEscape;
|
|
34
|
-
private _isBackspace;
|
|
35
|
-
private _emitModelChange;
|
|
36
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from "@angular/core";
|
|
2
|
-
import { Icon } from "../../enum/icon.enum";
|
|
3
|
-
import { IconCacheService } from "../../service/icon-cache.service";
|
|
4
|
-
export declare class LayoutSwitcherComponent {
|
|
5
|
-
iconCacheService: IconCacheService;
|
|
6
|
-
readonly icon: typeof Icon;
|
|
7
|
-
showClass(): boolean;
|
|
8
|
-
layoutItems: string[];
|
|
9
|
-
layoutSwitchEmit: EventEmitter<string>;
|
|
10
|
-
get activeIndex(): number;
|
|
11
|
-
set activeIndex(index: number);
|
|
12
|
-
showMaskSidebar: boolean;
|
|
13
|
-
private _activeIndex;
|
|
14
|
-
constructor(iconCacheService: IconCacheService);
|
|
15
|
-
toggleMaskSidebar(): void;
|
|
16
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
declare enum GaugeColor {
|
|
2
|
-
Low = "#E0E0E0",
|
|
3
|
-
Medium = "#F88952",
|
|
4
|
-
High = "#5FDCB3"
|
|
5
|
-
}
|
|
6
|
-
export declare class CoLinearGaugeComponent {
|
|
7
|
-
set value(value: number);
|
|
8
|
-
get value(): number;
|
|
9
|
-
count: number;
|
|
10
|
-
showClass(): boolean;
|
|
11
|
-
private _value;
|
|
12
|
-
color: GaugeColor;
|
|
13
|
-
getStyle(): string;
|
|
14
|
-
private _setColor;
|
|
15
|
-
}
|
|
16
|
-
export {};
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, EventEmitter, OnDestroy } from "@angular/core";
|
|
2
|
-
import { Icon } from "../../enum/icon.enum";
|
|
3
|
-
import { IconCacheService } from "../../service/icon-cache.service";
|
|
4
|
-
import { SendOption } from "./enums/send-option";
|
|
5
|
-
import { Printer } from "@colijnit/sharedapi/build/model/report/printer.bo";
|
|
6
|
-
import { StockService } from "../../service/stock.service";
|
|
7
|
-
import { StockStickersPrintLayouts } from "@colijnit/sharedapi/build/model/report/stock-stickers-print-layouts.bo";
|
|
8
|
-
import { CoDropDownListFields } from "../stock/stock-transfer/co-drop-down-list-fields.interface";
|
|
9
|
-
import { OptionsService } from "../../service/options.service";
|
|
10
|
-
import { DictionaryService } from "../../service/dictionary.service";
|
|
11
|
-
export declare class SendMethodDialogComponent implements OnDestroy {
|
|
12
|
-
iconCacheService: IconCacheService;
|
|
13
|
-
stockService: StockService;
|
|
14
|
-
private _optionsService;
|
|
15
|
-
private _dictionary;
|
|
16
|
-
private _changeDetector;
|
|
17
|
-
readonly icons: typeof Icon;
|
|
18
|
-
readonly sendOption: typeof SendOption;
|
|
19
|
-
showEmailOption: boolean;
|
|
20
|
-
showPrintOption: boolean;
|
|
21
|
-
showPdfOption: boolean;
|
|
22
|
-
showXmlOption: boolean;
|
|
23
|
-
showPrintPriceStickers: boolean;
|
|
24
|
-
showPrintStockStickers: boolean;
|
|
25
|
-
priceListCodeData: any;
|
|
26
|
-
sendOptions: {
|
|
27
|
-
option: SendOption;
|
|
28
|
-
iconName: Icon;
|
|
29
|
-
}[];
|
|
30
|
-
activeSendOption: SendOption;
|
|
31
|
-
showStandardPrinterOptions: boolean;
|
|
32
|
-
showPrinterSelections: boolean;
|
|
33
|
-
showExitButton: boolean;
|
|
34
|
-
defaultPrinter: Printer;
|
|
35
|
-
printTemplates: StockStickersPrintLayouts[];
|
|
36
|
-
printTemplatesField: CoDropDownListFields;
|
|
37
|
-
priceListDataField: CoDropDownListFields;
|
|
38
|
-
upAndLoaded: boolean;
|
|
39
|
-
emails: any[];
|
|
40
|
-
models: boolean[];
|
|
41
|
-
layouts: any[];
|
|
42
|
-
selectedLayout: 'Layout 1';
|
|
43
|
-
showDialog: boolean;
|
|
44
|
-
headerTitle: string;
|
|
45
|
-
printerList: Printer[];
|
|
46
|
-
set articleData(data: any);
|
|
47
|
-
startSignatureClicked: EventEmitter<any>;
|
|
48
|
-
printButtonClicked: EventEmitter<any>;
|
|
49
|
-
showClass(): boolean;
|
|
50
|
-
private _subscriptions;
|
|
51
|
-
constructor(iconCacheService: IconCacheService, stockService: StockService, _optionsService: OptionsService, _dictionary: DictionaryService, _changeDetector: ChangeDetectorRef);
|
|
52
|
-
ngOnDestroy(): void;
|
|
53
|
-
getPrinters(): Promise<void>;
|
|
54
|
-
closeDialogClick(): void;
|
|
55
|
-
handleSignatureStart(): void;
|
|
56
|
-
handlePrintClicked(): void;
|
|
57
|
-
togglePrinterSelection(): void;
|
|
58
|
-
onPrinterClicked(printer: any): void;
|
|
59
|
-
getPrintTemplates(): any;
|
|
60
|
-
private _handleSettingsLoaded;
|
|
61
|
-
private _initConnection;
|
|
62
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from "@angular/core";
|
|
2
|
-
export interface StatusbarData {
|
|
3
|
-
label: string;
|
|
4
|
-
percentage: number;
|
|
5
|
-
count?: number;
|
|
6
|
-
totalCount?: number;
|
|
7
|
-
}
|
|
8
|
-
export declare class StatusbarComponent {
|
|
9
|
-
set statusbarData(value: StatusbarData[]);
|
|
10
|
-
get statusbarData(): StatusbarData[];
|
|
11
|
-
statusbarClick: EventEmitter<void>;
|
|
12
|
-
showClass(): boolean;
|
|
13
|
-
constructor();
|
|
14
|
-
showPopup: boolean;
|
|
15
|
-
popupClass: string;
|
|
16
|
-
private _statusbarData;
|
|
17
|
-
private _mouseY;
|
|
18
|
-
private _windowHeight;
|
|
19
|
-
onHover(event: any): void;
|
|
20
|
-
onLeave(): void;
|
|
21
|
-
onStatusbarClick(): void;
|
|
22
|
-
setPopupClass(): void;
|
|
23
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { ArticleStock as ArticleStockBo } from "@colijnit/articleapi/build/model/article-stock.bo";
|
|
2
|
-
import { ArticleExtended } from "@colijnit/articleapi/build/model/article-extended.bo";
|
|
3
|
-
export declare class StockInformationComponent {
|
|
4
|
-
image: string;
|
|
5
|
-
article: ArticleExtended;
|
|
6
|
-
articleStock: ArticleStockBo;
|
|
7
|
-
allAvailableStockInformation: number;
|
|
8
|
-
allTechnicalStockInformation: number;
|
|
9
|
-
constructor();
|
|
10
|
-
}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from "@angular/core";
|
|
2
|
-
import { StockService } from "../../../service/stock.service";
|
|
3
|
-
import { IconCacheService } from "../../../service/icon-cache.service";
|
|
4
|
-
import { Icon } from "../../../enum/icon.enum";
|
|
5
|
-
import { ArticleStock as ArticleStockBo } from "@colijnit/articleapi/build/model/article-stock.bo";
|
|
6
|
-
import { ArticleStock } from "@colijnit/articleapi/build/model/article-stock";
|
|
7
|
-
import { StockHistoryBo } from "@colijnit/articleapi/build/model/stock-history.bo";
|
|
8
|
-
import { ArticleStockManagement } from "@colijnit/articleapi/build/model/article-stock-management";
|
|
9
|
-
import { ArticleDetailsBo } from "@colijnit/articleapi/build/model/article-details.bo";
|
|
10
|
-
import { StockManagementWarehouses } from "@colijnit/articleapi/build/model/stock-management-warehouses.bo";
|
|
11
|
-
import { CoDropDownListFields } from "../stock-transfer/co-drop-down-list-fields.interface";
|
|
12
|
-
import { ArticleTransaction as ArticleTransactionBo } from "@colijnit/articleapi/build/model/article-transaction.bo";
|
|
13
|
-
export declare class StockInformationGridComponent {
|
|
14
|
-
iconCacheService: IconCacheService;
|
|
15
|
-
private _stockService;
|
|
16
|
-
readonly icons: typeof Icon;
|
|
17
|
-
stock: StockInformationGridComponent;
|
|
18
|
-
articleStockInformation: ArticleStockBo[];
|
|
19
|
-
stockLocationData: ArticleStockBo[];
|
|
20
|
-
stockHistoryInformation: StockHistoryBo[];
|
|
21
|
-
readonly transferIconClicked: EventEmitter<ArticleStockBo>;
|
|
22
|
-
readonly historyClicked: EventEmitter<any>;
|
|
23
|
-
image: string;
|
|
24
|
-
show: boolean;
|
|
25
|
-
hideOrShowLocationTab: boolean;
|
|
26
|
-
showStockHistory: boolean;
|
|
27
|
-
showSendMethodDialog: boolean;
|
|
28
|
-
inOrderInformation: ArticleTransactionBo[];
|
|
29
|
-
orderInformation: ArticleTransactionBo[];
|
|
30
|
-
hideOrShowTabs: boolean;
|
|
31
|
-
dataWareHouseCode: StockManagementWarehouses[];
|
|
32
|
-
dataWareHouseFields: CoDropDownListFields;
|
|
33
|
-
selectedWarehouse: any;
|
|
34
|
-
articleStockSearchInfo: ArticleStock;
|
|
35
|
-
articleDetails: ArticleDetailsBo[];
|
|
36
|
-
selectedArticleDetailsData: ArticleDetailsBo;
|
|
37
|
-
showChangeStockDetails: boolean;
|
|
38
|
-
articleDetailsInformation: ArticleStockManagement;
|
|
39
|
-
tabs: string[];
|
|
40
|
-
activeTab: string;
|
|
41
|
-
get activeTabText(): string;
|
|
42
|
-
constructor(iconCacheService: IconCacheService, _stockService: StockService);
|
|
43
|
-
handleTabClick(tabData: any): void;
|
|
44
|
-
onLocationClick(data: ArticleStockBo): void;
|
|
45
|
-
handleHistoryClick(): void;
|
|
46
|
-
backToStockInformation(): void;
|
|
47
|
-
handleStockTransferClick(event: any): void;
|
|
48
|
-
handleBackToStockClick(): Promise<void>;
|
|
49
|
-
openSendMethodDialog(data: any): void;
|
|
50
|
-
printStockStickers(): void;
|
|
51
|
-
onOkClick(): void;
|
|
52
|
-
onCancelClick(): void;
|
|
53
|
-
openDialogClick(data: any): void;
|
|
54
|
-
getArticleDetails(data: any): void;
|
|
55
|
-
getStockManagementWarehouses(data: ArticleStockBo): void;
|
|
56
|
-
onSelectWarehouse(event: any): void;
|
|
57
|
-
getInOrderData(): Promise<void>;
|
|
58
|
-
getOrderData(): Promise<void>;
|
|
59
|
-
addNewRow(): void;
|
|
60
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from "@angular/core";
|
|
2
|
-
import { ArticleStock } from "@colijnit/articleapi/build/model/article-stock";
|
|
3
|
-
import { StockService } from "../../../service/stock.service";
|
|
4
|
-
export declare class StockLocationComponent {
|
|
5
|
-
private _stockService;
|
|
6
|
-
stockLocationInformation: ArticleStock;
|
|
7
|
-
backToStockLines: EventEmitter<any>;
|
|
8
|
-
allWarehouses: any;
|
|
9
|
-
stockLocationColumns: any[];
|
|
10
|
-
constructor(_stockService: StockService);
|
|
11
|
-
backToStockInformation(): void;
|
|
12
|
-
onOkClick(): void;
|
|
13
|
-
onCancelClick(): void;
|
|
14
|
-
onSelectWarehouse(event: any): void;
|
|
15
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit, EventEmitter } from "@angular/core";
|
|
2
|
-
import { StockService } from "../../../service/stock.service";
|
|
3
|
-
import { StockStatus } from "@colijnit/articleapi/build/model/stock-status.bo";
|
|
4
|
-
import { CoDropDownListFields } from "./co-drop-down-list-fields.interface";
|
|
5
|
-
import { ArticleDetailsBo } from "@colijnit/articleapi/build/model/article-details.bo";
|
|
6
|
-
export declare class StockChangeAmountComponent implements AfterViewInit {
|
|
7
|
-
private _stockService;
|
|
8
|
-
selectedArticleDetailsData: ArticleDetailsBo;
|
|
9
|
-
readonly closeStockChangeAmount: EventEmitter<any>;
|
|
10
|
-
stockState: StockStatus[];
|
|
11
|
-
stockStateDropdownField: CoDropDownListFields;
|
|
12
|
-
constructor(_stockService: StockService);
|
|
13
|
-
ngAfterViewInit(): void;
|
|
14
|
-
closeDialogClick(): void;
|
|
15
|
-
handleOkClick(data: ArticleDetailsBo): Promise<void>;
|
|
16
|
-
handleCancelClick(): void;
|
|
17
|
-
getStockState(): void;
|
|
18
|
-
}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit, EventEmitter } from "@angular/core";
|
|
2
|
-
import { PrintStockStickers } from "@colijnit/articleapi/build/model/print-stock-stickers";
|
|
3
|
-
import { StockService } from "../../../service/stock.service";
|
|
4
|
-
import { CoDropDownListFields } from "./co-drop-down-list-fields.interface";
|
|
5
|
-
import { ArticleStock as ArticleStockBo } from "@colijnit/articleapi/build/model/article-stock.bo";
|
|
6
|
-
import { ArticleDetailsBo } from "@colijnit/articleapi/build/model/article-details.bo";
|
|
7
|
-
import { StockManagementWarehouses } from "@colijnit/articleapi/build/model/stock-management-warehouses.bo";
|
|
8
|
-
import { StockStatus } from "@colijnit/articleapi/build/model/stock-status.bo";
|
|
9
|
-
import { StockLocation } from "@colijnit/articleapi/build/model/stock-location.bo";
|
|
10
|
-
export declare class StockTransferComponent implements AfterViewInit {
|
|
11
|
-
private _stockService;
|
|
12
|
-
stockSticker: PrintStockStickers;
|
|
13
|
-
article: ArticleStockBo;
|
|
14
|
-
articleToTransfer: ArticleDetailsBo;
|
|
15
|
-
articleWarehouse: any[];
|
|
16
|
-
allWarehouses: any[];
|
|
17
|
-
handleCancelClicked: EventEmitter<any>;
|
|
18
|
-
handleStickerClicked: EventEmitter<any>;
|
|
19
|
-
allWarehousesDropdownFields: CoDropDownListFields;
|
|
20
|
-
allLocationDropdownFields: CoDropDownListFields;
|
|
21
|
-
showSendMethodDialog: boolean;
|
|
22
|
-
warehouses: StockManagementWarehouses[];
|
|
23
|
-
stockState: StockStatus[];
|
|
24
|
-
stockStateDropdownField: CoDropDownListFields;
|
|
25
|
-
locations: StockLocation[];
|
|
26
|
-
selectedWarehouse: any;
|
|
27
|
-
constructor(_stockService: StockService);
|
|
28
|
-
ngAfterViewInit(): void;
|
|
29
|
-
handleOkClick(data: ArticleDetailsBo): Promise<void>;
|
|
30
|
-
handleCancelClick(): void;
|
|
31
|
-
handleSelectedWarehouse(event: any): void;
|
|
32
|
-
handleStickerClick(): Promise<void>;
|
|
33
|
-
getStockManagementWarehouses(): void;
|
|
34
|
-
getStockManagementLocations(data: any): void;
|
|
35
|
-
getStockState(): void;
|
|
36
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, EventEmitter, OnDestroy } from "@angular/core";
|
|
2
|
-
import { StockService } from "../../service/stock.service";
|
|
3
|
-
import { ArticleStock as ArticleStockBo } from "@colijnit/articleapi/build/model/article-stock.bo";
|
|
4
|
-
import { ArticleExtended } from "@colijnit/articleapi/build/model/article-extended.bo";
|
|
5
|
-
import { ArticleStock } from "@colijnit/articleapi/build/model/article-stock";
|
|
6
|
-
import { StockHistoryBo } from "@colijnit/articleapi/build/model/stock-history.bo";
|
|
7
|
-
import { ArticleDetailsBo } from "@colijnit/articleapi/build/model/article-details.bo";
|
|
8
|
-
import { OptionsService } from "../../service/options.service";
|
|
9
|
-
import { DictionaryService } from "../../service/dictionary.service";
|
|
10
|
-
export declare class StockComponent implements OnDestroy {
|
|
11
|
-
stockService: StockService;
|
|
12
|
-
private _optionsService;
|
|
13
|
-
private _dictionary;
|
|
14
|
-
private _changeDetector;
|
|
15
|
-
stock: StockComponent;
|
|
16
|
-
handleStickerClicked: EventEmitter<any>;
|
|
17
|
-
set article(article: any);
|
|
18
|
-
articleWarehouse: any[];
|
|
19
|
-
allWarehouses: any[];
|
|
20
|
-
showClass(): boolean;
|
|
21
|
-
showStockInformationGrid: boolean;
|
|
22
|
-
showStockLocation: boolean;
|
|
23
|
-
showStockTransfer: boolean;
|
|
24
|
-
stockInformation: ArticleStockBo[];
|
|
25
|
-
stockLocationInformation: ArticleStockBo[];
|
|
26
|
-
stockTransferArticle: ArticleStockBo;
|
|
27
|
-
stockTransferArticleDetails: ArticleDetailsBo;
|
|
28
|
-
articleExtended: ArticleExtended;
|
|
29
|
-
stockHistory: StockHistoryBo[];
|
|
30
|
-
allAvailableStock: number;
|
|
31
|
-
allTechnicalStock: number;
|
|
32
|
-
private _subscriptions;
|
|
33
|
-
constructor(stockService: StockService, _optionsService: OptionsService, _dictionary: DictionaryService, _changeDetector: ChangeDetectorRef);
|
|
34
|
-
ngOnDestroy(): void;
|
|
35
|
-
backToStockLinesClicked(): void;
|
|
36
|
-
handleStockTransferClick(event: any): void;
|
|
37
|
-
backToStock(): void;
|
|
38
|
-
getStockHistory(): Promise<void>;
|
|
39
|
-
getStockInformation(data: ArticleStock): Promise<void>;
|
|
40
|
-
private _handleSettingsLoaded;
|
|
41
|
-
private _initConnection;
|
|
42
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
export declare enum KeyboardCode {
|
|
2
|
-
Backspace = "Backspace",
|
|
3
|
-
Digit0 = "Digit0",
|
|
4
|
-
Digit1 = "Digit1",
|
|
5
|
-
Digit2 = "Digit2",
|
|
6
|
-
Digit3 = "Digit3",
|
|
7
|
-
Digit4 = "Digit4",
|
|
8
|
-
Digit5 = "Digit5",
|
|
9
|
-
Digit6 = "Digit6",
|
|
10
|
-
Digit7 = "Digit7",
|
|
11
|
-
Digit8 = "Digit8",
|
|
12
|
-
Digit9 = "Digit9",
|
|
13
|
-
Enter = "Enter",
|
|
14
|
-
Escape = "Escape",
|
|
15
|
-
Minus = "Minus",
|
|
16
|
-
Numpad0 = "Numpad0",
|
|
17
|
-
Numpad1 = "Numpad1",
|
|
18
|
-
Numpad2 = "Numpad2",
|
|
19
|
-
Numpad3 = "Numpad3",
|
|
20
|
-
Numpad4 = "Numpad4",
|
|
21
|
-
Numpad5 = "Numpad5",
|
|
22
|
-
Numpad6 = "Numpad6",
|
|
23
|
-
Numpad7 = "Numpad7",
|
|
24
|
-
Numpad8 = "Numpad8",
|
|
25
|
-
Numpad9 = "Numpad9",
|
|
26
|
-
NumpadDecimal = "NumpadDecimal",
|
|
27
|
-
NumpadEnter = "NumpadEnter",
|
|
28
|
-
NumpadSubtract = "NumpadSubtract",
|
|
29
|
-
Period = "Period"
|
|
30
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { BusinessObject } from "../model/business-object";
|
|
2
|
-
export declare class BusinessObjectFactory {
|
|
3
|
-
constructor();
|
|
4
|
-
/**
|
|
5
|
-
* Creates and returns a new business data object instance of given class, with all given data properties applied to it in a
|
|
6
|
-
* complex-aware style. That is, all properties on given class that are decorated with @ComplexField(..) or @ComplexArray(..) decorators
|
|
7
|
-
* become strongly typed business objects, with methods that are usable and such.
|
|
8
|
-
*
|
|
9
|
-
* @param modelClass
|
|
10
|
-
* @param {Object} rawData The object with all (possibly raw/flat/not alive) data to be applied to the created model object
|
|
11
|
-
*/
|
|
12
|
-
makeWithRawBackendData(modelClass: any, rawData: Object): BusinessObject;
|
|
13
|
-
makeBOArrayFromRawBackendDataArray(modelClass: any, arrayOfRawDatas: Object[]): BusinessObject[];
|
|
14
|
-
instantiateNewBo(modelClass: any): BusinessObject;
|
|
15
|
-
/**
|
|
16
|
-
* Applies all properties of given 'source' object to the given 'destination' businessobject, if destination has that property.
|
|
17
|
-
* Works with the @ComplexField(), @ComplexArray, @BooleanText, @CoInject and @DateField annotations of given destination model.
|
|
18
|
-
*
|
|
19
|
-
* @param sourceData Raw data to copy to destination model
|
|
20
|
-
* @param {BusinessObject} destinationModel InOut: The annotated businessobject to apply source properties to
|
|
21
|
-
*/
|
|
22
|
-
private _copyAllPropertiesDecoratorProcessedFrom;
|
|
23
|
-
}
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import { DbBooleanValueType } from "@colijnit/articleapi/build/enum/db-boolean-value-type.enum";
|
|
2
|
-
/**
|
|
3
|
-
* There are 'J', 'T', 'N', 'F', 0 and 1 'boolean values' in the database. These should be translated to true and false boolean values in
|
|
4
|
-
* our client application.
|
|
5
|
-
*
|
|
6
|
-
* The values 'J' and 'N' seem to be most commonly used. This is the default setting when using this decorator.
|
|
7
|
-
* You can pass 'T' or 1 for the other variants as follows:
|
|
8
|
-
*
|
|
9
|
-
* Usage:
|
|
10
|
-
*
|
|
11
|
-
* @BooleanText() or @BooleanText("J") (the default, uses YesNoDbType char values)
|
|
12
|
-
* public foo: boolean // 'J' and 'N' become true and false after BusinessObjectFactoryService and -SerializerService processing
|
|
13
|
-
*
|
|
14
|
-
* @BooleanText('T') (uses TrueFalseDbType char values)
|
|
15
|
-
* public bar: boolean // 'T' and 'F' become true and false after BusinessObjectFactoryService and -SerializerService processing
|
|
16
|
-
*
|
|
17
|
-
* @BooleanText(1)
|
|
18
|
-
* public baz: boolean // 1 and 0 become true and false after BusinessObjectFactoryService and -SerializerService processing
|
|
19
|
-
*/
|
|
20
|
-
export declare function BooleanText(type?: "J" | "T" | 1): PropertyDecorator;
|
|
21
|
-
export declare class BooleanTextDecorator {
|
|
22
|
-
/**
|
|
23
|
-
* Returns whether given property (as a string) on given object is a boolean text field. That is, it's a field that is decorated
|
|
24
|
-
* with the @BooleanText decorator.
|
|
25
|
-
*/
|
|
26
|
-
static IsBooleanTextField(target: Object, propertyKey: string): boolean;
|
|
27
|
-
/**
|
|
28
|
-
* Returns the logical true or false value of given character ('J', 'N', 'T' or 'F') or number (0 or 1).
|
|
29
|
-
* Returns UNDEFINED if given boolChar was not recognised as a boolean text.
|
|
30
|
-
*/
|
|
31
|
-
static GetLogicalBooleanValue(dbBoolChar: DbBooleanValueType | string): boolean;
|
|
32
|
-
/**
|
|
33
|
-
* Returns the boolean character / number of given logical bool property on target object. Uses its @BooleanText() annotation to decide
|
|
34
|
-
* what character / number to return.
|
|
35
|
-
* Used in BusinessObjectSerializerServiceService to convert logical bools to their original boolean character.
|
|
36
|
-
* @returns {string|number} The original, reverse-engineered boolean character (or number) of given object property, or undefined.
|
|
37
|
-
*/
|
|
38
|
-
static GetDbBooleanValue(target: Object, propertyKey: string): DbBooleanValueType;
|
|
39
|
-
private static _IsJaNeeProp;
|
|
40
|
-
private static _IsTrueFalseProp;
|
|
41
|
-
private static _IsZeroOneProp;
|
|
42
|
-
private static _IsProp;
|
|
43
|
-
}
|