@things-factory/operato-wms 7.0.1-alpha.78 → 7.0.1-alpha.79

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.
Files changed (45) hide show
  1. package/client/apptools/dashboard-tool.js +1 -1
  2. package/client/bootstrap.js +5 -5
  3. package/client/fetch-board-settings.js +1 -1
  4. package/client/fetch-location-sorting-rule.js +1 -1
  5. package/client/fetch-setting-value.js +1 -1
  6. package/client/pages/components/partner-selector.js +9 -3
  7. package/client/pages/components/popup-reusable-pallet.js +1 -1
  8. package/client/pages/components/select-inventory-popup.js +1 -1
  9. package/client/pages/components/select-product-popup.js +1 -1
  10. package/client/pages/components/vas-templates/vas-pallet-add-popup.js +1 -1
  11. package/client/pages/components/vas-templates/vas-unpack.js +1 -1
  12. package/client/pages/components/worksheet-information-popup.js +1 -1
  13. package/client/pages/inbound/adjust-pallet-qty.js +1 -1
  14. package/client/pages/inbound/palletizing-pallets-popup.js +1 -1
  15. package/client/pages/inbound/select-location-popup.js +1 -1
  16. package/client/pages/inbound/serial-number-list-popup.js +1 -1
  17. package/client/pages/inbound/unloaded-inventories-popup.js +1 -1
  18. package/client/pages/inbound/vas-selector.js +1 -1
  19. package/client/pages/inventory/inventory-by-product-detail.js +1 -1
  20. package/client/pages/inventory/inventory-history-by-pallet.js +1 -1
  21. package/client/pages/inventory/serial-number-list-popup.js +3 -3
  22. package/client/pages/inventory-check/check-inventory-popup.js +1 -1
  23. package/client/pages/inventory-check/search-popup.js +1 -1
  24. package/client/pages/master/print-location-label.js +3 -3
  25. package/client/pages/order/return-order/return-order-inventory-popup.js +1 -1
  26. package/client/pages/order/transport-order/contact-point-selector-popup.js +1 -1
  27. package/client/pages/order/transport-order/delivery-note-popup.js +8 -7
  28. package/client/pages/order/transport-order/transport-driver-popup.js +1 -1
  29. package/client/pages/order/transport-order/upload-delivery-note.js +1 -1
  30. package/client/pages/order/vas-order/popup/target-product-selector-popup.js +1 -1
  31. package/client/pages/outbound/inventory-assign-popup.js +1 -1
  32. package/client/pages/outbound/inventory-reassign-popup.js +1 -1
  33. package/client/pages/outbound/logistics-init/branch-logistics-popup.js +1 -1
  34. package/client/pages/outbound/logistics-init/pickup-logistics-popup.js +1 -1
  35. package/client/pages/outbound/order-remark-popup.js +1 -1
  36. package/client/pages/outbound/outbound-reusable-pallet.js +1 -1
  37. package/client/pages/outbound/picking-replacement-popup.js +1 -1
  38. package/client/pages/outbound/serial-number-popup.js +1 -1
  39. package/client/pages/outbound/tote-popup.js +1 -1
  40. package/client/pages/outbound/transport-vehicles-popup.js +1 -1
  41. package/client/pages/report/job-sheet-popup.js +1 -1
  42. package/client/pages/vas/execute-vas.js +1 -1
  43. package/client/pages/vas/related-vas-list.js +1 -1
  44. package/client/pages/vas/reverse-kitting/popup-combination-sets.js +1 -1
  45. package/package.json +28 -28
@@ -3,7 +3,7 @@ import { connect } from 'pwa-helpers/connect-mixin.js'
3
3
 
4
4
  import '@material/mwc-icon'
5
5
 
6
- import { navigate, store } from '@things-factory/shell'
6
+ import { navigate, store } from '@operato/shell'
7
7
 
8
8
  export class DashboardTool extends connect(store)(LitElement) {
9
9
  static get properties() {
@@ -7,13 +7,13 @@ import gql from 'graphql-tag'
7
7
  import { html } from 'lit'
8
8
 
9
9
  import { setupMenuPart } from '@things-factory/meta-ui'
10
- import { ADD_MORENDA } from '@things-factory/more-base'
10
+ import { ADD_MORENDA } from '@things-factory/more-base/client'
11
11
  import { registerDefaultGroups } from '@operato/board/register-default-groups.js'
12
- import { APPEND_APP_TOOL } from '@things-factory/apptool-base'
13
- import { setupAppToolPart } from '@things-factory/apptool-ui'
12
+ import { APPEND_APP_TOOL } from '@things-factory/apptool-base/client'
13
+ import { setupAppToolPart } from '@things-factory/apptool-ui/dist-client'
14
14
  import { auth } from '@things-factory/auth-base/dist-client'
15
- import { setAuthManagementMenus } from '@things-factory/auth-ui'
16
- import { setupContextUIPart } from '@things-factory/context-ui'
15
+ import { setAuthManagementMenus } from '@things-factory/auth-ui/dist-client'
16
+ import { setupContextUIPart } from '@things-factory/context-ui/dist-client'
17
17
  import { i18next } from '@things-factory/i18n-base'
18
18
  import { appendViewpart, openPopup, toggleOverlay, TOOL_POSITION, VIEWPART_POSITION } from '@operato/layout'
19
19
  import { updateMenuProvider } from '@things-factory/menu-base'
@@ -1,4 +1,4 @@
1
- import { client } from '@things-factory/shell'
1
+ import { client } from '@operato/graphql'
2
2
  import gql from 'graphql-tag'
3
3
 
4
4
  export async function fetchBoardSettings() {
@@ -1,4 +1,4 @@
1
- import { client } from '@things-factory/shell'
1
+ import { client } from '@operato/graphql'
2
2
  import gql from 'graphql-tag'
3
3
 
4
4
  export async function fetchLocationSortingRule(sortingRule) {
@@ -1,6 +1,6 @@
1
1
  import gql from 'graphql-tag'
2
2
 
3
- import { client } from '@things-factory/shell'
3
+ import { client } from '@operato/graphql'
4
4
 
5
5
  export async function fetchSettingRule(setting, partnerDomainId) {
6
6
  const response = await client.query({
@@ -7,7 +7,7 @@ import gql from 'graphql-tag'
7
7
  import { css, html, LitElement } from 'lit'
8
8
 
9
9
  import { i18next } from '@things-factory/i18n-base'
10
- import { client } from '@things-factory/shell'
10
+ import { client } from '@operato/graphql'
11
11
  import { isMobileDevice } from '@things-factory/utils'
12
12
  import { ButtonContainerStyles } from '@operato/styles'
13
13
 
@@ -42,10 +42,16 @@ class PartnerSelector extends LitElement {
42
42
  return html`
43
43
  <search-form id="search-form" .fields=${this.searchFields} @submit=${() => this.dataGrist.fetch()}></search-form>
44
44
 
45
- <ox-grist .mode=${isMobileDevice() ? 'LIST' : 'GRID'} .config=${this.config} .fetchHandler="${this.fetchHandler.bind(this)}"></ox-grist>
45
+ <ox-grist
46
+ .mode=${isMobileDevice() ? 'LIST' : 'GRID'}
47
+ .config=${this.config}
48
+ .fetchHandler="${this.fetchHandler.bind(this)}"
49
+ ></ox-grist>
46
50
 
47
51
  <div class="button-container">
48
- <button @click="${this.select.bind(this)}"><md-icon>select_check_box</md-icon>${i18next.t('button.select')}</button>
52
+ <button @click="${this.select.bind(this)}">
53
+ <md-icon>select_check_box</md-icon>${i18next.t('button.select')}
54
+ </button>
49
55
  </div>
50
56
  `
51
57
  }
@@ -3,7 +3,7 @@ import { css, html, LitElement } from 'lit'
3
3
 
4
4
  import { SingleColumnFormStyles } from '@things-factory/form-ui'
5
5
  import { i18next, localize } from '@things-factory/i18n-base'
6
- import { client } from '@things-factory/shell'
6
+ import { client } from '@operato/graphql'
7
7
 
8
8
  import { PALLET_STATUS } from '../constants'
9
9
 
@@ -5,7 +5,7 @@ import { css, html, LitElement } from 'lit'
5
5
 
6
6
  import { getCodeByName } from '@things-factory/code-base'
7
7
  import { i18next, localize } from '@things-factory/i18n-base'
8
- import { client } from '@things-factory/shell'
8
+ import { client } from '@operato/graphql'
9
9
  import { ScrollbarStyles } from '@things-factory/styles'
10
10
  import { isMobileDevice } from '@things-factory/utils'
11
11
 
@@ -4,7 +4,7 @@ import gql from 'graphql-tag'
4
4
  import { css, html, LitElement } from 'lit'
5
5
 
6
6
  import { i18next, localize } from '@things-factory/i18n-base'
7
- import { client } from '@things-factory/shell'
7
+ import { client } from '@operato/graphql'
8
8
  import { ScrollbarStyles } from '@things-factory/styles'
9
9
  import { isMobileDevice } from '@things-factory/utils'
10
10
 
@@ -1,7 +1,7 @@
1
1
  import { localize, i18next } from '@things-factory/i18n-base'
2
2
  import { SingleColumnFormStyles } from '@things-factory/form-ui'
3
3
  import { LitElement, html, css } from 'lit'
4
- import { client } from '@things-factory/shell'
4
+ import { client } from '@operato/graphql'
5
5
  import gql from 'graphql-tag'
6
6
  import '@things-factory/barcode-ui'
7
7
 
@@ -2,7 +2,7 @@ import '@things-factory/barcode-ui'
2
2
  import { SingleColumnFormStyles } from '@things-factory/form-ui'
3
3
  import '@operato/data-grist'
4
4
  import { i18next, localize } from '@things-factory/i18n-base'
5
- import { client } from '@things-factory/shell'
5
+ import { client } from '@operato/graphql'
6
6
  import gql from 'graphql-tag'
7
7
  import { css, html } from 'lit'
8
8
  import { ORDER_TYPES } from '../../constants'
@@ -5,7 +5,7 @@ import { connect } from 'pwa-helpers/connect-mixin'
5
5
 
6
6
  import { MultiColumnFormStyles } from '@things-factory/form-ui'
7
7
  import { i18next, localize } from '@things-factory/i18n-base'
8
- import { store } from '@things-factory/shell'
8
+ import { store } from '@operato/shell'
9
9
 
10
10
  class WorksheetInformationPopup extends connect(store)(localize(i18next)(LitElement)) {
11
11
  static get properties() {
@@ -6,7 +6,7 @@ import { css, html, LitElement } from 'lit'
6
6
 
7
7
  import { SingleColumnFormStyles } from '@things-factory/form-ui'
8
8
  import { i18next, localize } from '@things-factory/i18n-base'
9
- import { client } from '@things-factory/shell'
9
+ import { client } from '@operato/graphql'
10
10
 
11
11
  class AdjustPalletQty extends localize(i18next)(LitElement) {
12
12
  static get properties() {
@@ -2,7 +2,7 @@ import '@things-factory/barcode-ui'
2
2
  import { MultiColumnFormStyles, SingleColumnFormStyles } from '@things-factory/form-ui'
3
3
  import '@operato/data-grist'
4
4
  import { i18next, localize } from '@things-factory/i18n-base'
5
- import { client } from '@things-factory/shell'
5
+ import { client } from '@operato/graphql'
6
6
  import { isMobileDevice } from '@things-factory/utils'
7
7
  import gql from 'graphql-tag'
8
8
  import { css, html, LitElement } from 'lit'
@@ -1,6 +1,6 @@
1
1
  import '@operato/data-grist'
2
2
  import { i18next, localize } from '@things-factory/i18n-base'
3
- import { store } from '@things-factory/shell'
3
+ import { store } from '@operato/shell'
4
4
  import { isMobileDevice } from '@things-factory/utils'
5
5
  import { css, html, LitElement } from 'lit'
6
6
  import { connect } from 'pwa-helpers/connect-mixin'
@@ -6,7 +6,7 @@ import { css, html, LitElement } from 'lit'
6
6
 
7
7
  import { MultiColumnFormStyles, SingleColumnFormStyles } from '@things-factory/form-ui'
8
8
  import { i18next, localize } from '@things-factory/i18n-base'
9
- import { client } from '@things-factory/shell'
9
+ import { client } from '@operato/graphql'
10
10
  import { ScrollbarStyles } from '@things-factory/styles'
11
11
  import { isMobileDevice } from '@things-factory/utils'
12
12
 
@@ -4,7 +4,7 @@ import { css, html, LitElement } from 'lit'
4
4
  import { connect } from 'pwa-helpers/connect-mixin'
5
5
 
6
6
  import { i18next, localize } from '@things-factory/i18n-base'
7
- import { store } from '@things-factory/shell'
7
+ import { store } from '@operato/shell'
8
8
  import { isMobileDevice } from '@things-factory/utils'
9
9
 
10
10
  class UnloadedInventoriesPopup extends connect(store)(localize(i18next)(LitElement)) {
@@ -1,7 +1,7 @@
1
1
  import '@things-factory/form-ui'
2
2
  import '@operato/data-grist'
3
3
  import { i18next, localize } from '@things-factory/i18n-base'
4
- import { client } from '@things-factory/shell'
4
+ import { client } from '@operato/graphql'
5
5
  import { ScrollbarStyles } from '@things-factory/styles'
6
6
  import { isMobileDevice } from '@things-factory/utils'
7
7
  import gql from 'graphql-tag'
@@ -7,7 +7,7 @@ import { css, html, LitElement } from 'lit'
7
7
 
8
8
  import { i18next, localize } from '@things-factory/i18n-base'
9
9
  import { openPopup } from '@operato/layout'
10
- import { client } from '@things-factory/shell'
10
+ import { client } from '@operato/graphql'
11
11
  import { ScrollbarStyles } from '@things-factory/styles'
12
12
  import { isMobileDevice } from '@things-factory/utils'
13
13
 
@@ -1,7 +1,7 @@
1
1
  import '@material/mwc-button/mwc-button'
2
2
  import '@operato/data-grist'
3
3
  import { i18next, localize } from '@things-factory/i18n-base'
4
- import { client } from '@things-factory/shell'
4
+ import { client } from '@operato/graphql'
5
5
  import { isMobileDevice } from '@things-factory/utils'
6
6
  import { ScrollbarStyles } from '@things-factory/styles'
7
7
  import gql from 'graphql-tag'
@@ -6,7 +6,7 @@ import { css, html, LitElement } from 'lit'
6
6
 
7
7
  import { MultiColumnFormStyles, SingleColumnFormStyles } from '@things-factory/form-ui'
8
8
  import { i18next, localize } from '@things-factory/i18n-base'
9
- import { client } from '@things-factory/shell'
9
+ import { client } from '@operato/graphql'
10
10
  import { isMobileDevice } from '@things-factory/utils'
11
11
 
12
12
  import { INVENTORY_ITEM_CHANGE_TRANSACTION_TYPE, INVENTORY_ITEM_CHANGE_TYPE } from '../constants'
@@ -99,8 +99,8 @@ class SerialNumberListPopup extends localize(i18next)(LitElement) {
99
99
  this.inventory?.cartonId
100
100
  ? this.inventory.cartonId
101
101
  : this.inventory?.palletId
102
- ? this.inventory.palletId
103
- : ''
102
+ ? this.inventory.palletId
103
+ : ''
104
104
  } (${this.inventory.transactionType})`
105
105
  : `${this.inventory.product.sku} - ${`${this.inventory.product.name}`} ( ${this.data?.total || 0} / ${
106
106
  this.inventory.qty
@@ -1,6 +1,6 @@
1
1
  import '@things-factory/barcode-ui'
2
2
  import { SingleColumnFormStyles } from '@things-factory/form-ui'
3
- import { client } from '@things-factory/shell'
3
+ import { client } from '@operato/graphql'
4
4
  import gql from 'graphql-tag'
5
5
  import { i18next, localize } from '@things-factory/i18n-base'
6
6
  import { css, html, LitElement } from 'lit'
@@ -2,7 +2,7 @@ import { SingleColumnFormStyles } from '@things-factory/form-ui'
2
2
  import '@material/mwc-button/mwc-button'
3
3
  import '@operato/data-grist'
4
4
  import { i18next, localize } from '@things-factory/i18n-base'
5
- import { client } from '@things-factory/shell'
5
+ import { client } from '@operato/graphql'
6
6
  import { isMobileDevice } from '@things-factory/utils'
7
7
  import { css, html, LitElement } from 'lit'
8
8
  import gql from 'graphql-tag'
@@ -6,7 +6,7 @@ import { css, html, LitElement } from 'lit'
6
6
 
7
7
  import { MultiColumnFormStyles } from '@things-factory/form-ui'
8
8
  import { i18next, localize } from '@things-factory/i18n-base'
9
- import { client } from '@things-factory/shell'
9
+ import { client } from '@operato/graphql'
10
10
  import { ScrollbarStyles } from '@things-factory/styles'
11
11
  import { isMobileDevice } from '@things-factory/utils'
12
12
 
@@ -237,8 +237,8 @@ export class PrintLocationLabel extends localize(i18next)(LitElement) {
237
237
  location.type === 'BUFFER'
238
238
  ? ''
239
239
  : this._fullLocationFormat // check if full location format is true
240
- ? `${location.zone}-${location.row}-${location.column}-${location.shelf}`
241
- : `${location.zone}-${location.row}-${location.column}`
240
+ ? `${location.zone}-${location.row}-${location.column}-${location.shelf}`
241
+ : `${location.zone}-${location.row}-${location.column}`
242
242
  }
243
243
  })
244
244
  }
@@ -1,7 +1,7 @@
1
1
  import { MultiColumnFormStyles } from '@things-factory/form-ui'
2
2
  import '@operato/data-grist'
3
3
  import { i18next, localize } from '@things-factory/i18n-base'
4
- import { client } from '@things-factory/shell'
4
+ import { client } from '@operato/graphql'
5
5
  import { isMobileDevice } from '@things-factory/utils'
6
6
  import gql from 'graphql-tag'
7
7
  import { css, html, LitElement } from 'lit'
@@ -2,7 +2,7 @@ import '@operato/data-grist'
2
2
  import '@things-factory/import-ui'
3
3
  import '@things-factory/form-ui'
4
4
  import { i18next, localize } from '@things-factory/i18n-base'
5
- import { client } from '@things-factory/shell'
5
+ import { client } from '@operato/graphql'
6
6
  import { ScrollbarStyles } from '@things-factory/styles'
7
7
  import { isMobileDevice } from '@things-factory/utils'
8
8
  import gql from 'graphql-tag'
@@ -8,7 +8,7 @@ import '../../outbound/transport-vehicles-popup'
8
8
 
9
9
  import { i18next, localize } from '@things-factory/i18n-base'
10
10
  import { openPopup } from '@operato/layout'
11
- import { client } from '@things-factory/shell'
11
+ import { client } from '@operato/graphql'
12
12
  import { isMobileDevice } from '@things-factory/utils'
13
13
  import gql from 'graphql-tag'
14
14
  import { css, html, LitElement } from 'lit'
@@ -575,12 +575,13 @@ class DeliveryNotePopup extends localize(i18next)(LitElement) {
575
575
  <option value=""></option>
576
576
 
577
577
  ${this._billingPostCode.map(
578
- (country, key) => html`<option
579
- value=${country.postalCode}
580
- ?selected=${this._deliveryOrder.billingPostalCode == country.postalCode}
581
- >
582
- ${country.postalCode}
583
- </option>`
578
+ (country, key) =>
579
+ html`<option
580
+ value=${country.postalCode}
581
+ ?selected=${this._deliveryOrder.billingPostalCode == country.postalCode}
582
+ >
583
+ ${country.postalCode}
584
+ </option>`
584
585
  )}
585
586
  </select>`}
586
587
 
@@ -3,7 +3,7 @@ import '@things-factory/form-ui'
3
3
  import '@operato/data-grist'
4
4
  import { i18next, localize } from '@things-factory/i18n-base'
5
5
  import '@things-factory/import-ui'
6
- import { client } from '@things-factory/shell'
6
+ import { client } from '@operato/graphql'
7
7
  import { ScrollbarStyles } from '@things-factory/styles'
8
8
  import { isMobileDevice } from '@things-factory/utils'
9
9
  import gql from 'graphql-tag'
@@ -6,7 +6,7 @@ import { css, html, LitElement } from 'lit'
6
6
 
7
7
  import { MultiColumnFormStyles } from '@things-factory/form-ui'
8
8
  import { i18next, localize } from '@things-factory/i18n-base'
9
- import { client } from '@things-factory/shell'
9
+ import { client } from '@operato/graphql'
10
10
  import { isMobileDevice } from '@things-factory/utils'
11
11
 
12
12
  class UploadDeliveryNote extends localize(i18next)(LitElement) {
@@ -4,7 +4,7 @@ import gql from 'graphql-tag'
4
4
  import { css, html, LitElement } from 'lit'
5
5
 
6
6
  import { i18next, localize } from '@things-factory/i18n-base'
7
- import { client } from '@things-factory/shell'
7
+ import { client } from '@operato/graphql'
8
8
  import { ScrollbarStyles } from '@things-factory/styles'
9
9
  import { isMobileDevice } from '@things-factory/utils'
10
10
 
@@ -6,7 +6,7 @@ import { css, html, LitElement } from 'lit'
6
6
 
7
7
  import { MultiColumnFormStyles } from '@things-factory/form-ui'
8
8
  import { i18next, localize } from '@things-factory/i18n-base'
9
- import { client } from '@things-factory/shell'
9
+ import { client } from '@operato/graphql'
10
10
  import { isMobileDevice } from '@things-factory/utils'
11
11
 
12
12
  import { fetchLocationSortingRule } from '../../fetch-location-sorting-rule'
@@ -6,7 +6,7 @@ import { css, html, LitElement } from 'lit'
6
6
 
7
7
  import { sleep } from '@operato/utils'
8
8
  import { i18next, localize } from '@things-factory/i18n-base'
9
- import { client } from '@things-factory/shell'
9
+ import { client } from '@operato/graphql'
10
10
  import { isMobileDevice } from '@things-factory/utils'
11
11
 
12
12
  import { fetchLocationSortingRule } from '../../fetch-location-sorting-rule'
@@ -1,7 +1,7 @@
1
1
  import '@things-factory/form-ui'
2
2
  import '@operato/data-grist'
3
3
  import { i18next, localize } from '@things-factory/i18n-base'
4
- import { client } from '@things-factory/shell'
4
+ import { client } from '@operato/graphql'
5
5
  import { ScrollbarStyles } from '@things-factory/styles'
6
6
  import { isMobileDevice } from '@things-factory/utils'
7
7
  import gql from 'graphql-tag'
@@ -1,7 +1,7 @@
1
1
  import '@things-factory/form-ui'
2
2
  import '@operato/data-grist'
3
3
  import { i18next, localize } from '@things-factory/i18n-base'
4
- import { client } from '@things-factory/shell'
4
+ import { client } from '@operato/graphql'
5
5
  import { ScrollbarStyles } from '@things-factory/styles'
6
6
  import { isMobileDevice } from '@things-factory/utils'
7
7
  import gql from 'graphql-tag'
@@ -5,7 +5,7 @@ import { css, html, LitElement } from 'lit'
5
5
 
6
6
  import { SingleColumnFormStyles } from '@things-factory/form-ui'
7
7
  import { i18next, localize } from '@things-factory/i18n-base'
8
- import { client } from '@things-factory/shell'
8
+ import { client } from '@operato/graphql'
9
9
 
10
10
  class OrderRemarkPopup extends localize(i18next)(LitElement) {
11
11
  static get properties() {
@@ -2,7 +2,7 @@ import '@things-factory/barcode-ui'
2
2
  import { MultiColumnFormStyles, SingleColumnFormStyles } from '@things-factory/form-ui'
3
3
  import '@operato/data-grist'
4
4
  import { i18next, localize } from '@things-factory/i18n-base'
5
- import { client } from '@things-factory/shell'
5
+ import { client } from '@operato/graphql'
6
6
  import { isMobileDevice } from '@things-factory/utils'
7
7
  import gql from 'graphql-tag'
8
8
  import { css, html, LitElement } from 'lit'
@@ -6,7 +6,7 @@ import { css, html, LitElement } from 'lit'
6
6
 
7
7
  import { MultiColumnFormStyles, SingleColumnFormStyles } from '@things-factory/form-ui'
8
8
  import { i18next, localize } from '@things-factory/i18n-base'
9
- import { client } from '@things-factory/shell'
9
+ import { client } from '@operato/graphql'
10
10
  import { isMobileDevice } from '@things-factory/utils'
11
11
 
12
12
  class PickingReplacementPopup extends localize(i18next)(LitElement) {
@@ -6,7 +6,7 @@ import { css, html, LitElement } from 'lit'
6
6
 
7
7
  import { MultiColumnFormStyles, SingleColumnFormStyles } from '@things-factory/form-ui'
8
8
  import { i18next, localize } from '@things-factory/i18n-base'
9
- import { client } from '@things-factory/shell'
9
+ import { client } from '@operato/graphql'
10
10
  import { isMobileDevice } from '@things-factory/utils'
11
11
 
12
12
  import { ORDER_SOURCES } from '../constants'
@@ -6,7 +6,7 @@ import { css, html, LitElement } from 'lit'
6
6
 
7
7
  import { MultiColumnFormStyles, SingleColumnFormStyles } from '@things-factory/form-ui'
8
8
  import { i18next, localize } from '@things-factory/i18n-base'
9
- import { client } from '@things-factory/shell'
9
+ import { client } from '@operato/graphql'
10
10
  import { ScrollbarStyles } from '@things-factory/styles'
11
11
  import { isMobileDevice } from '@things-factory/utils'
12
12
  import { TOTE_STATUS } from '../constants'
@@ -3,7 +3,7 @@ import '@things-factory/form-ui'
3
3
  import '@operato/data-grist'
4
4
  import { i18next, localize } from '@things-factory/i18n-base'
5
5
  import '@things-factory/import-ui'
6
- import { client } from '@things-factory/shell'
6
+ import { client } from '@operato/graphql'
7
7
  import { ScrollbarStyles } from '@things-factory/styles'
8
8
  import { isMobileDevice } from '@things-factory/utils'
9
9
  import gql from 'graphql-tag'
@@ -1,7 +1,7 @@
1
1
  import { SingleColumnFormStyles } from '@things-factory/form-ui'
2
2
  import '@operato/data-grist'
3
3
  import { i18next, localize } from '@things-factory/i18n-base'
4
- import { client } from '@things-factory/shell'
4
+ import { client } from '@operato/graphql'
5
5
  import gql from 'graphql-tag'
6
6
  import { css, html, LitElement } from 'lit'
7
7
 
@@ -1,7 +1,7 @@
1
1
  import '@things-factory/barcode-ui'
2
2
  import { MultiColumnFormStyles } from '@things-factory/form-ui'
3
3
  import { i18next, localize } from '@things-factory/i18n-base'
4
- import { PageView, store } from '@things-factory/shell'
4
+ import { PageView, store } from '@operato/shell'
5
5
  import { css, html } from 'lit'
6
6
  import { connect } from 'pwa-helpers/connect-mixin.js'
7
7
  import { ARRIVAL_NOTICE, RELEASE_OF_GOODS, VAS_ORDER } from '../constants'
@@ -2,7 +2,7 @@ import '@things-factory/barcode-ui'
2
2
  import '@operato/data-grist'
3
3
  import { getRenderer } from '@operato/data-grist'
4
4
  import { i18next, localize } from '@things-factory/i18n-base'
5
- import { client } from '@things-factory/shell'
5
+ import { client } from '@operato/graphql'
6
6
  import { isMobileDevice } from '@things-factory/utils'
7
7
  import gql from 'graphql-tag'
8
8
  import { css, html, LitElement } from 'lit'
@@ -7,7 +7,7 @@ import { css, html, LitElement } from 'lit'
7
7
  import { MultiColumnFormStyles } from '@things-factory/form-ui'
8
8
  import { i18next, localize } from '@things-factory/i18n-base'
9
9
  import { openPopup } from '@operato/layout'
10
- import { client } from '@things-factory/shell'
10
+ import { client } from '@operato/graphql'
11
11
  import { isMobileDevice } from '@things-factory/utils'
12
12
 
13
13
  class PopupCombinationSets extends localize(i18next)(LitElement) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-wms",
3
- "version": "7.0.1-alpha.78",
3
+ "version": "7.0.1-alpha.79",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -73,42 +73,42 @@
73
73
  "@operato/scene-table": "^2.0.0-alpha.0",
74
74
  "@operato/scene-visualizer": "^2.0.0-alpha.0",
75
75
  "@operato/scene-wheel-sorter": "^2.0.0-alpha.0",
76
- "@things-factory/apptool-ui": "^7.0.1-alpha.78",
77
- "@things-factory/auth-ui": "^7.0.1-alpha.78",
76
+ "@things-factory/apptool-ui": "^7.0.1-alpha.79",
77
+ "@things-factory/auth-ui": "^7.0.1-alpha.79",
78
78
  "@things-factory/barcode-ui": "^7.0.1-alpha.71",
79
- "@things-factory/biz-ui": "^7.0.1-alpha.78",
80
- "@things-factory/board-service": "^7.0.1-alpha.78",
81
- "@things-factory/board-ui": "^7.0.1-alpha.78",
82
- "@things-factory/code-ui": "^7.0.1-alpha.78",
83
- "@things-factory/context-ui": "^7.0.1-alpha.71",
79
+ "@things-factory/biz-ui": "^7.0.1-alpha.79",
80
+ "@things-factory/board-service": "^7.0.1-alpha.79",
81
+ "@things-factory/board-ui": "^7.0.1-alpha.79",
82
+ "@things-factory/code-ui": "^7.0.1-alpha.79",
83
+ "@things-factory/context-ui": "^7.0.1-alpha.79",
84
84
  "@things-factory/env": "^7.0.1-alpha.71",
85
- "@things-factory/export-ui": "^7.0.1-alpha.71",
86
- "@things-factory/export-ui-csv": "^7.0.1-alpha.71",
87
- "@things-factory/export-ui-excel": "^7.0.1-alpha.71",
88
- "@things-factory/fav-base": "^7.0.1-alpha.78",
89
- "@things-factory/form-ui": "^7.0.1-alpha.71",
85
+ "@things-factory/export-ui": "^7.0.1-alpha.79",
86
+ "@things-factory/export-ui-csv": "^7.0.1-alpha.79",
87
+ "@things-factory/export-ui-excel": "^7.0.1-alpha.79",
88
+ "@things-factory/fav-base": "^7.0.1-alpha.79",
89
+ "@things-factory/form-ui": "^7.0.1-alpha.79",
90
90
  "@things-factory/geography": "^7.0.1-alpha.78",
91
91
  "@things-factory/help": "^7.0.1-alpha.71",
92
92
  "@things-factory/i18n-base": "^7.0.1-alpha.77",
93
93
  "@things-factory/id-rule-base": "^7.0.1-alpha.78",
94
- "@things-factory/import-ui": "^7.0.1-alpha.77",
95
- "@things-factory/import-ui-excel": "^7.0.1-alpha.77",
96
- "@things-factory/more-ui": "^7.0.1-alpha.71",
94
+ "@things-factory/import-ui": "^7.0.1-alpha.79",
95
+ "@things-factory/import-ui-excel": "^7.0.1-alpha.79",
96
+ "@things-factory/more-ui": "^7.0.1-alpha.79",
97
97
  "@things-factory/notification": "^7.0.1-alpha.78",
98
- "@things-factory/operato-tools": "^7.0.1-alpha.78",
98
+ "@things-factory/operato-tools": "^7.0.1-alpha.79",
99
99
  "@things-factory/pdf": "^7.0.1-alpha.71",
100
100
  "@things-factory/print-proxy-service": "^7.0.1-alpha.71",
101
101
  "@things-factory/print-service": "^7.0.1-alpha.71",
102
- "@things-factory/print-ui": "^7.0.1-alpha.78",
103
- "@things-factory/product-base": "^7.0.1-alpha.78",
104
- "@things-factory/resource-ui": "^7.0.1-alpha.78",
105
- "@things-factory/sales-ui": "^7.0.1-alpha.78",
106
- "@things-factory/setting-ui": "^7.0.1-alpha.78",
107
- "@things-factory/system": "^7.0.1-alpha.71",
108
- "@things-factory/transport-base": "^7.0.1-alpha.78",
109
- "@things-factory/tutorial-ui": "^7.0.1-alpha.78",
110
- "@things-factory/warehouse-base": "^7.0.1-alpha.78",
111
- "@things-factory/worksheet-base": "^7.0.1-alpha.78"
102
+ "@things-factory/print-ui": "^7.0.1-alpha.79",
103
+ "@things-factory/product-base": "^7.0.1-alpha.79",
104
+ "@things-factory/resource-ui": "^7.0.1-alpha.79",
105
+ "@things-factory/sales-ui": "^7.0.1-alpha.79",
106
+ "@things-factory/setting-ui": "^7.0.1-alpha.79",
107
+ "@things-factory/system": "^7.0.1-alpha.79",
108
+ "@things-factory/transport-base": "^7.0.1-alpha.79",
109
+ "@things-factory/tutorial-ui": "^7.0.1-alpha.79",
110
+ "@things-factory/warehouse-base": "^7.0.1-alpha.79",
111
+ "@things-factory/worksheet-base": "^7.0.1-alpha.79"
112
112
  },
113
113
  "devDependencies": {
114
114
  "@things-factory/builder": "^7.0.1-alpha.71",
@@ -117,5 +117,5 @@
117
117
  "cypress-localstorage-commands": "^1.6.1",
118
118
  "eslint-plugin-cypress": "^2.12.1"
119
119
  },
120
- "gitHead": "6423c664e70e7877c362b4aebb7f169e4a2ad22d"
120
+ "gitHead": "b5b88ed7abdb33839beecf802f85976bc39dfaa1"
121
121
  }