@things-factory/operato-wms 5.0.0-alpha.52 → 5.0.0-alpha.55
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/client/pages/inbound/inbound-worksheet.js +1 -1
- package/client/pages/order/arrival-notice/arrival-notice-list.js +1 -3
- package/client/pages/order/arrival-notice/arrival-notice-requests.js +1 -1
- package/client/pages/order/draft-release-good/draft-release-good-list.js +5 -5
- package/client/pages/order/release-order/b2b/b2b-order-list.js +1 -1
- package/client/pages/order/release-order/b2b/b2b-order-requests.js +1 -3
- package/client/pages/order/release-order/b2c/b2c-order-requests.js +1 -1
- package/client/pages/order/transport-order/delivery-order-list.js +1 -1
- package/client/pages/outbound/merged-outbound-worksheet.js +2 -2
- package/client/pages/outbound/packing-worksheet-list.js +1 -1
- package/client/pages/outbound/single-outbound-worksheet.js +1 -1
- package/client/pages/report/custom-elccl/elccl-delivery-order-summary.js +1 -1
- package/client/pages/report/inventory-pallet-storage-report.js +1 -1
- package/package.json +42 -42
|
@@ -195,7 +195,7 @@ class InboundWorksheet extends localize(i18next)(PageView) {
|
|
|
195
195
|
]
|
|
196
196
|
},
|
|
197
197
|
rows: { appendable: false, selectable: { multiple: true } },
|
|
198
|
-
pagination: { limit: 100, pages: [
|
|
198
|
+
pagination: { limit: 100, pages: [100, 200, 500] },
|
|
199
199
|
columns: [
|
|
200
200
|
{ type: 'gutter', gutterName: 'sequence' },
|
|
201
201
|
{ type: 'gutter', gutterName: 'row-selector', multiple: true },
|
|
@@ -10,8 +10,6 @@ import { client, navigate, PageView } from '@things-factory/shell'
|
|
|
10
10
|
import { ScrollbarStyles } from '@things-factory/styles'
|
|
11
11
|
import { isMobileDevice } from '@things-factory/utils'
|
|
12
12
|
|
|
13
|
-
import { ORDER_STATUS } from '../../constants'
|
|
14
|
-
|
|
15
13
|
class ArrivalNoticeList extends localize(i18next)(PageView) {
|
|
16
14
|
static get styles() {
|
|
17
15
|
return [
|
|
@@ -224,7 +222,7 @@ class ArrivalNoticeList extends localize(i18next)(PageView) {
|
|
|
224
222
|
]
|
|
225
223
|
},
|
|
226
224
|
rows: { appendable: false, selectable: { multiple: true } },
|
|
227
|
-
pagination: { limit: 100, pages: [
|
|
225
|
+
pagination: { limit: 100, pages: [100, 200, 500] },
|
|
228
226
|
columns: [
|
|
229
227
|
{ type: 'gutter', gutterName: 'sequence' },
|
|
230
228
|
{ type: 'gutter', gutterName: 'row-selector', multiple: true },
|
|
@@ -233,7 +233,7 @@ class ArrivalNoticeRequests extends localize(i18next)(PageView) {
|
|
|
233
233
|
'acceptedBy'
|
|
234
234
|
]
|
|
235
235
|
},
|
|
236
|
-
pagination: { limit: 100, pages: [
|
|
236
|
+
pagination: { limit: 100, pages: [100, 200, 500] },
|
|
237
237
|
columns: [
|
|
238
238
|
{ type: 'gutter', gutterName: 'sequence' },
|
|
239
239
|
{ type: 'gutter', gutterName: 'row-selector', multiple: true },
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import '@things-factory/form-ui'
|
|
2
2
|
import '@things-factory/grist-ui'
|
|
3
|
-
|
|
3
|
+
|
|
4
4
|
import gql from 'graphql-tag'
|
|
5
5
|
import { css, html } from 'lit-element'
|
|
6
6
|
|
|
7
|
-
import {
|
|
7
|
+
import { GhostPrint } from '@operato/ghost-print'
|
|
8
8
|
import { i18next, localize } from '@things-factory/i18n-base'
|
|
9
|
-
import { client, navigate, PageView
|
|
9
|
+
import { client, CustomAlert, navigate, PageView } from '@things-factory/shell'
|
|
10
10
|
import { CommonButtonStyles, ScrollbarStyles } from '@things-factory/styles'
|
|
11
11
|
import { isMobileDevice } from '@things-factory/utils'
|
|
12
12
|
|
|
13
|
-
import { DRAFT_RELEASE_ORDER_STATUS
|
|
13
|
+
import { DRAFT_RELEASE_ORDER_STATUS } from '../../../constants'
|
|
14
14
|
|
|
15
15
|
// const HEADER_JSON = {
|
|
16
16
|
// 'Content-Type': 'application/json',
|
|
@@ -193,7 +193,7 @@ class DraftReleaseGoodList extends localize(i18next)(PageView) {
|
|
|
193
193
|
this.config = {
|
|
194
194
|
rows: { selectable: { multiple: true }, appendable: false },
|
|
195
195
|
list: { fields: ['name', 'releaseDate', 'status', 'updatedAt'] },
|
|
196
|
-
pagination: { limit: 100, pages: [
|
|
196
|
+
pagination: { limit: 100, pages: [100, 200, 500] },
|
|
197
197
|
columns: [
|
|
198
198
|
{ type: 'gutter', gutterName: 'sequence' },
|
|
199
199
|
{ type: 'gutter', gutterName: 'row-selector', multiple: true },
|
|
@@ -226,7 +226,7 @@ class B2bOrderList extends localize(i18next)(PageView) {
|
|
|
226
226
|
this.config = {
|
|
227
227
|
rows: { selectable: { multiple: true }, appendable: false },
|
|
228
228
|
list: { fields: ['name', 'releaseDate', 'status', 'updatedAt'] },
|
|
229
|
-
pagination: { limit: 100, pages: [
|
|
229
|
+
pagination: { limit: 100, pages: [100, 200, 500] },
|
|
230
230
|
columns: [
|
|
231
231
|
{ type: 'gutter', gutterName: 'sequence' },
|
|
232
232
|
{ type: 'gutter', gutterName: 'row-selector', multiple: true },
|
|
@@ -13,8 +13,6 @@ import { client, navigate, PageView } from '@things-factory/shell'
|
|
|
13
13
|
import { CommonButtonStyles, ScrollbarStyles } from '@things-factory/styles'
|
|
14
14
|
import { isMobileDevice } from '@things-factory/utils'
|
|
15
15
|
|
|
16
|
-
import { ORDER_STATUS } from '../../../constants'
|
|
17
|
-
|
|
18
16
|
class B2bOrderRequests extends localize(i18next)(PageView) {
|
|
19
17
|
static get styles() {
|
|
20
18
|
return [
|
|
@@ -211,7 +209,7 @@ class B2bOrderRequests extends localize(i18next)(PageView) {
|
|
|
211
209
|
this.config = {
|
|
212
210
|
rows: { selectable: { multiple: true }, appendable: false },
|
|
213
211
|
list: { fields: ['name', 'bizplace', 'releaseDate', 'status', 'updatedAt'] },
|
|
214
|
-
pagination: { limit: 100, pages: [
|
|
212
|
+
pagination: { limit: 100, pages: [100, 200, 500] },
|
|
215
213
|
columns: [
|
|
216
214
|
{ type: 'gutter', gutterName: 'sequence' },
|
|
217
215
|
{
|
|
@@ -255,7 +255,7 @@ class B2cOrderRequests extends connect(store)(localize(i18next)(PageView)) {
|
|
|
255
255
|
this.config = {
|
|
256
256
|
rows: { selectable: { multiple: true }, appendable: false },
|
|
257
257
|
list: { fields: ['name', 'bizplace', 'releaseDate', 'status', 'updatedAt'] },
|
|
258
|
-
pagination: { limit: 100, pages: [
|
|
258
|
+
pagination: { limit: 100, pages: [100, 200, 500] },
|
|
259
259
|
columns: [
|
|
260
260
|
{ type: 'gutter', gutterName: 'sequence' },
|
|
261
261
|
{ type: 'gutter', gutterName: 'row-selector', multiple: true },
|
|
@@ -188,7 +188,7 @@ class DeliveryOrderList extends localize(i18next)(PageView) {
|
|
|
188
188
|
this.config = {
|
|
189
189
|
list: { fields: ['name', 'refNo', 'bizplace', 'deliveryDate', 'ownCollection', 'status', 'updatedAt'] },
|
|
190
190
|
rows: { selectable: { multiple: true }, appendable: false },
|
|
191
|
-
pagination: { limit: 100, pages: [
|
|
191
|
+
pagination: { limit: 100, pages: [100, 200, 500] },
|
|
192
192
|
columns: [
|
|
193
193
|
{ type: 'gutter', gutterName: 'dirty' },
|
|
194
194
|
{ type: 'gutter', gutterName: 'sequence' },
|
|
@@ -110,7 +110,7 @@ class MergedOutboundWorksheet extends localize(i18next)(PageView) {
|
|
|
110
110
|
async pageInitialized() {
|
|
111
111
|
const _worksheetStatus = await getCodeByName('WORKSHEET_STATUS')
|
|
112
112
|
const partners = [...(await this._fetchPartners())]
|
|
113
|
-
|
|
113
|
+
|
|
114
114
|
this._searchFields = [
|
|
115
115
|
{
|
|
116
116
|
name: 'name',
|
|
@@ -194,7 +194,7 @@ class MergedOutboundWorksheet extends localize(i18next)(PageView) {
|
|
|
194
194
|
fields: ['name', 'bizplace', 'type', 'status', 'startedAt', 'endedAt']
|
|
195
195
|
},
|
|
196
196
|
rows: { appendable: false, selectable: { multiple: true } },
|
|
197
|
-
pagination: { limit: 100, pages: [
|
|
197
|
+
pagination: { limit: 100, pages: [100, 200, 500] },
|
|
198
198
|
columns: [
|
|
199
199
|
{ type: 'gutter', gutterName: 'sequence' },
|
|
200
200
|
{ type: 'gutter', gutterName: 'row-selector', multiple: true },
|
|
@@ -174,7 +174,7 @@ class PackingWorksheetList extends localize(i18next)(PageView) {
|
|
|
174
174
|
fields: ['releaseGood', 'bizplace', 'type', 'releaseRefNo', 'status', 'startedAt', 'endedAt']
|
|
175
175
|
},
|
|
176
176
|
rows: { appendable: false, selectable: { multiple: true } },
|
|
177
|
-
pagination: { limit: 100, pages: [
|
|
177
|
+
pagination: { limit: 100, pages: [100, 200, 500] },
|
|
178
178
|
columns: [
|
|
179
179
|
{ type: 'gutter', gutterName: 'sequence' },
|
|
180
180
|
{ type: 'gutter', gutterName: 'row-selector', multiple: true },
|
|
@@ -218,7 +218,7 @@ class SingleOutboundWorksheet extends localize(i18next)(PageView) {
|
|
|
218
218
|
fields: ['releaseGood', 'bizplace', 'type', 'releaseRefNo', 'status', 'startedAt', 'endedAt']
|
|
219
219
|
},
|
|
220
220
|
rows: { selectable: { multiple: true }, appendable: false },
|
|
221
|
-
pagination: { limit: 100, pages: [
|
|
221
|
+
pagination: { limit: 100, pages: [100, 200, 500] },
|
|
222
222
|
columns: [
|
|
223
223
|
{ type: 'gutter', gutterName: 'sequence' },
|
|
224
224
|
{ type: 'gutter', gutterName: 'row-selector', multiple: true },
|
|
@@ -128,7 +128,7 @@ class ElcclDeliveryOrderSummary extends connect(store)(localize(i18next)(PageVie
|
|
|
128
128
|
|
|
129
129
|
get gristConfig() {
|
|
130
130
|
return {
|
|
131
|
-
pagination: { limit: 100, pages: [
|
|
131
|
+
pagination: { limit: 100, pages: [100, 200, 500] },
|
|
132
132
|
rows: {
|
|
133
133
|
selectable: false
|
|
134
134
|
},
|
|
@@ -185,7 +185,7 @@ class InventoryPalletStorageReport extends connect(store)(localize(i18next)(Page
|
|
|
185
185
|
list: {
|
|
186
186
|
fields: ['location|zone', 'location|name', 'location|type', 'palletId']
|
|
187
187
|
},
|
|
188
|
-
pagination: { pages: [
|
|
188
|
+
pagination: { pages: [100, 200, 500, 1000] },
|
|
189
189
|
rows: {
|
|
190
190
|
selectable: false
|
|
191
191
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-wms",
|
|
3
|
-
"version": "5.0.0-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.55",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -70,52 +70,52 @@
|
|
|
70
70
|
"@operato/scene-tab": "^1.0.0-alpha.18",
|
|
71
71
|
"@operato/scene-table": "^1.0.0-alpha.18",
|
|
72
72
|
"@operato/scene-wheel-sorter": "^1.0.0-alpha.18",
|
|
73
|
-
"@things-factory/apptool-ui": "^5.0.0-alpha.
|
|
74
|
-
"@things-factory/attachment-ui": "^5.0.0-alpha.
|
|
75
|
-
"@things-factory/auth-ui": "^5.0.0-alpha.
|
|
76
|
-
"@things-factory/barcode-ui": "^5.0.0-alpha.
|
|
77
|
-
"@things-factory/biz-ui": "^5.0.0-alpha.
|
|
78
|
-
"@things-factory/board-service": "^5.0.0-alpha.
|
|
79
|
-
"@things-factory/board-ui": "^5.0.0-alpha.
|
|
80
|
-
"@things-factory/code-ui": "^5.0.0-alpha.
|
|
81
|
-
"@things-factory/context-ui": "^5.0.0-alpha.
|
|
82
|
-
"@things-factory/env": "^5.0.0-alpha.
|
|
83
|
-
"@things-factory/export-ui": "^5.0.0-alpha.
|
|
84
|
-
"@things-factory/export-ui-csv": "^5.0.0-alpha.
|
|
85
|
-
"@things-factory/export-ui-excel": "^5.0.0-alpha.
|
|
86
|
-
"@things-factory/fav-base": "^5.0.0-alpha.
|
|
87
|
-
"@things-factory/form-ui": "^5.0.0-alpha.
|
|
88
|
-
"@things-factory/grist-ui": "^5.0.0-alpha.
|
|
89
|
-
"@things-factory/help": "^5.0.0-alpha.
|
|
90
|
-
"@things-factory/i18n-base": "^5.0.0-alpha.
|
|
91
|
-
"@things-factory/id-rule-base": "^5.0.0-alpha.
|
|
92
|
-
"@things-factory/import-ui": "^5.0.0-alpha.
|
|
93
|
-
"@things-factory/import-ui-excel": "^5.0.0-alpha.
|
|
94
|
-
"@things-factory/menu-ui": "^5.0.0-alpha.
|
|
95
|
-
"@things-factory/more-ui": "^5.0.0-alpha.
|
|
96
|
-
"@things-factory/notification": "^5.0.0-alpha.
|
|
97
|
-
"@things-factory/pdf": "^5.0.0-alpha.
|
|
98
|
-
"@things-factory/print-proxy-service": "^5.0.0-alpha.
|
|
99
|
-
"@things-factory/print-service": "^5.0.0-alpha.
|
|
100
|
-
"@things-factory/print-ui": "^5.0.0-alpha.
|
|
101
|
-
"@things-factory/product-base": "^5.0.0-alpha.
|
|
102
|
-
"@things-factory/resource-ui": "^5.0.0-alpha.
|
|
103
|
-
"@things-factory/sales-ui": "^5.0.0-alpha.
|
|
104
|
-
"@things-factory/scene-google-map": "^5.0.0-alpha.
|
|
105
|
-
"@things-factory/scene-visualizer": "^5.0.0-alpha.
|
|
106
|
-
"@things-factory/setting-ui": "^5.0.0-alpha.
|
|
107
|
-
"@things-factory/system-ui": "^5.0.0-alpha.
|
|
108
|
-
"@things-factory/transport-base": "^5.0.0-alpha.
|
|
109
|
-
"@things-factory/tutorial-ui": "^5.0.0-alpha.
|
|
110
|
-
"@things-factory/warehouse-base": "^5.0.0-alpha.
|
|
111
|
-
"@things-factory/worksheet-base": "^5.0.0-alpha.
|
|
73
|
+
"@things-factory/apptool-ui": "^5.0.0-alpha.55",
|
|
74
|
+
"@things-factory/attachment-ui": "^5.0.0-alpha.55",
|
|
75
|
+
"@things-factory/auth-ui": "^5.0.0-alpha.55",
|
|
76
|
+
"@things-factory/barcode-ui": "^5.0.0-alpha.55",
|
|
77
|
+
"@things-factory/biz-ui": "^5.0.0-alpha.55",
|
|
78
|
+
"@things-factory/board-service": "^5.0.0-alpha.55",
|
|
79
|
+
"@things-factory/board-ui": "^5.0.0-alpha.55",
|
|
80
|
+
"@things-factory/code-ui": "^5.0.0-alpha.55",
|
|
81
|
+
"@things-factory/context-ui": "^5.0.0-alpha.55",
|
|
82
|
+
"@things-factory/env": "^5.0.0-alpha.55",
|
|
83
|
+
"@things-factory/export-ui": "^5.0.0-alpha.55",
|
|
84
|
+
"@things-factory/export-ui-csv": "^5.0.0-alpha.55",
|
|
85
|
+
"@things-factory/export-ui-excel": "^5.0.0-alpha.55",
|
|
86
|
+
"@things-factory/fav-base": "^5.0.0-alpha.55",
|
|
87
|
+
"@things-factory/form-ui": "^5.0.0-alpha.55",
|
|
88
|
+
"@things-factory/grist-ui": "^5.0.0-alpha.55",
|
|
89
|
+
"@things-factory/help": "^5.0.0-alpha.55",
|
|
90
|
+
"@things-factory/i18n-base": "^5.0.0-alpha.55",
|
|
91
|
+
"@things-factory/id-rule-base": "^5.0.0-alpha.55",
|
|
92
|
+
"@things-factory/import-ui": "^5.0.0-alpha.55",
|
|
93
|
+
"@things-factory/import-ui-excel": "^5.0.0-alpha.55",
|
|
94
|
+
"@things-factory/menu-ui": "^5.0.0-alpha.55",
|
|
95
|
+
"@things-factory/more-ui": "^5.0.0-alpha.55",
|
|
96
|
+
"@things-factory/notification": "^5.0.0-alpha.55",
|
|
97
|
+
"@things-factory/pdf": "^5.0.0-alpha.55",
|
|
98
|
+
"@things-factory/print-proxy-service": "^5.0.0-alpha.55",
|
|
99
|
+
"@things-factory/print-service": "^5.0.0-alpha.55",
|
|
100
|
+
"@things-factory/print-ui": "^5.0.0-alpha.55",
|
|
101
|
+
"@things-factory/product-base": "^5.0.0-alpha.55",
|
|
102
|
+
"@things-factory/resource-ui": "^5.0.0-alpha.55",
|
|
103
|
+
"@things-factory/sales-ui": "^5.0.0-alpha.55",
|
|
104
|
+
"@things-factory/scene-google-map": "^5.0.0-alpha.55",
|
|
105
|
+
"@things-factory/scene-visualizer": "^5.0.0-alpha.55",
|
|
106
|
+
"@things-factory/setting-ui": "^5.0.0-alpha.55",
|
|
107
|
+
"@things-factory/system-ui": "^5.0.0-alpha.55",
|
|
108
|
+
"@things-factory/transport-base": "^5.0.0-alpha.55",
|
|
109
|
+
"@things-factory/tutorial-ui": "^5.0.0-alpha.55",
|
|
110
|
+
"@things-factory/warehouse-base": "^5.0.0-alpha.55",
|
|
111
|
+
"@things-factory/worksheet-base": "^5.0.0-alpha.55"
|
|
112
112
|
},
|
|
113
113
|
"devDependencies": {
|
|
114
|
-
"@things-factory/builder": "^5.0.0-alpha.
|
|
114
|
+
"@things-factory/builder": "^5.0.0-alpha.55",
|
|
115
115
|
"cypress": "^9.4.1",
|
|
116
116
|
"cypress-file-upload": "^5.0.8",
|
|
117
117
|
"cypress-localstorage-commands": "^1.6.1",
|
|
118
118
|
"eslint-plugin-cypress": "^2.12.1"
|
|
119
119
|
},
|
|
120
|
-
"gitHead": "
|
|
120
|
+
"gitHead": "0d49b610076865d1e1c346b296e062c36aacaf08"
|
|
121
121
|
}
|