@things-factory/operato-mms 5.0.0-alpha.50 → 5.0.0-alpha.53
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.
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
import { SingleColumnFormStyles } from '@things-factory/form-ui'
|
|
2
1
|
import '@things-factory/grist-ui'
|
|
3
|
-
|
|
4
|
-
import { client, CustomAlert } from '@things-factory/shell'
|
|
2
|
+
|
|
5
3
|
import gql from 'graphql-tag'
|
|
6
4
|
import { css, html, LitElement } from 'lit-element'
|
|
7
5
|
|
|
6
|
+
import { SingleColumnFormStyles } from '@things-factory/form-ui'
|
|
7
|
+
import { i18next, localize } from '@things-factory/i18n-base'
|
|
8
|
+
import { client } from '@things-factory/shell'
|
|
9
|
+
|
|
8
10
|
export class SelectDateTimePopup extends localize(i18next)(LitElement) {
|
|
9
11
|
static get styles() {
|
|
10
12
|
return [
|
|
@@ -66,14 +68,14 @@ export class SelectDateTimePopup extends localize(i18next)(LitElement) {
|
|
|
66
68
|
if (this.storeId) {
|
|
67
69
|
const response = await client.mutate({
|
|
68
70
|
mutation: gql`
|
|
69
|
-
mutation syncMarketplaceOrder($storeId: String!, $
|
|
70
|
-
syncMarketplaceOrder(storeId: $storeId,
|
|
71
|
+
mutation syncMarketplaceOrder($storeId: String!, $fromCreatedDate: String!, $toCreatedDate: String!) {
|
|
72
|
+
syncMarketplaceOrder(storeId: $storeId, fromCreatedDate: $fromCreatedDate, toCreatedDate: $toCreatedDate)
|
|
71
73
|
}
|
|
72
74
|
`,
|
|
73
75
|
variables: {
|
|
74
76
|
storeId: this.storeId,
|
|
75
|
-
|
|
76
|
-
|
|
77
|
+
fromCreatedDate: new Date(this._getInputByName('fromDate').value).toISOString(),
|
|
78
|
+
toCreatedDate: new Date(this._getInputByName('toDate').value).toISOString()
|
|
77
79
|
}
|
|
78
80
|
})
|
|
79
81
|
|
|
@@ -1,16 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
3
|
exports.NoGenerator = void 0;
|
|
7
|
-
const
|
|
4
|
+
const uuid_1 = require("uuid");
|
|
8
5
|
class NoGenerator {
|
|
9
6
|
static id() {
|
|
10
|
-
return `${(0,
|
|
7
|
+
return `${(0, uuid_1.v4)()}`;
|
|
11
8
|
}
|
|
12
9
|
static sku() {
|
|
13
|
-
return `SKU-${(0,
|
|
10
|
+
return `SKU-${(0, uuid_1.v4)()}`;
|
|
14
11
|
}
|
|
15
12
|
}
|
|
16
13
|
exports.NoGenerator = NoGenerator;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-generator.js","sourceRoot":"","sources":["../../server/util/no-generator.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"no-generator.js","sourceRoot":"","sources":["../../server/util/no-generator.ts"],"names":[],"mappings":";;;AAAA,+BAAmC;AAEnC,MAAa,WAAW;IACtB,MAAM,CAAC,EAAE;QACP,OAAO,GAAG,IAAA,SAAM,GAAE,EAAE,CAAA;IACtB,CAAC;IAED,MAAM,CAAC,GAAG;QACR,OAAO,OAAO,IAAA,SAAM,GAAE,EAAE,CAAA;IAC1B,CAAC;CACF;AARD,kCAQC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-mms",
|
|
3
|
-
"version": "5.0.0-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.53",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@material/mwc-formfield": "^0.25.3",
|
|
42
42
|
"@material/mwc-linear-progress": "^0.25.3",
|
|
43
43
|
"@material/mwc-radio": "^0.25.3",
|
|
44
|
-
"@operato/ghost-print": "1.0.0-beta.
|
|
44
|
+
"@operato/ghost-print": "1.0.0-beta.26",
|
|
45
45
|
"@operato/scene-chartjs": "^1.0.0-alpha.18",
|
|
46
46
|
"@operato/scene-clock": "^1.0.0-alpha.18",
|
|
47
47
|
"@operato/scene-clone": "^1.0.0-alpha.18",
|
|
@@ -67,41 +67,41 @@
|
|
|
67
67
|
"@operato/scene-table": "^1.0.0-alpha.18",
|
|
68
68
|
"@operato/scene-timer": "^1.0.0-alpha.18",
|
|
69
69
|
"@operato/scene-wheel-sorter": "^1.0.0-alpha.18",
|
|
70
|
-
"@things-factory/apptool-ui": "^5.0.0-alpha.
|
|
71
|
-
"@things-factory/attachment-base": "^5.0.0-alpha.
|
|
72
|
-
"@things-factory/auth-ui": "^5.0.0-alpha.
|
|
73
|
-
"@things-factory/biz-base": "^5.0.0-alpha.
|
|
74
|
-
"@things-factory/board-service": "^5.0.0-alpha.
|
|
75
|
-
"@things-factory/board-ui": "^5.0.0-alpha.
|
|
76
|
-
"@things-factory/code-ui": "^5.0.0-alpha.
|
|
77
|
-
"@things-factory/context-ui": "^5.0.0-alpha.
|
|
78
|
-
"@things-factory/dashboard": "^5.0.0-alpha.
|
|
79
|
-
"@things-factory/export-ui": "^5.0.0-alpha.
|
|
80
|
-
"@things-factory/export-ui-csv": "^5.0.0-alpha.
|
|
81
|
-
"@things-factory/export-ui-excel": "^5.0.0-alpha.
|
|
82
|
-
"@things-factory/geography": "^5.0.0-alpha.
|
|
83
|
-
"@things-factory/grist-ui": "^5.0.0-alpha.
|
|
84
|
-
"@things-factory/help": "^5.0.0-alpha.
|
|
85
|
-
"@things-factory/i18n-base": "^5.0.0-alpha.
|
|
86
|
-
"@things-factory/integration-fulfillment": "^5.0.0-alpha.
|
|
87
|
-
"@things-factory/integration-lmd": "^5.0.0-alpha.
|
|
88
|
-
"@things-factory/lite-menu": "^5.0.0-alpha.
|
|
89
|
-
"@things-factory/marketplace-base": "^5.0.0-alpha.
|
|
90
|
-
"@things-factory/more-ui": "^5.0.0-alpha.
|
|
91
|
-
"@things-factory/notification": "^5.0.0-alpha.
|
|
92
|
-
"@things-factory/oauth2-client": "^5.0.0-alpha.
|
|
93
|
-
"@things-factory/pdf": "^5.0.0-alpha.
|
|
94
|
-
"@things-factory/product-base": "^5.0.0-alpha.
|
|
95
|
-
"@things-factory/resource-ui": "^5.0.0-alpha.
|
|
96
|
-
"@things-factory/scene-google-map": "^5.0.0-alpha.
|
|
97
|
-
"@things-factory/scene-visualizer": "^5.0.0-alpha.
|
|
98
|
-
"@things-factory/setting-ui": "^5.0.0-alpha.
|
|
99
|
-
"@things-factory/system-ui": "^5.0.0-alpha.
|
|
100
|
-
"@things-factory/warehouse-base": "^5.0.0-alpha.
|
|
70
|
+
"@things-factory/apptool-ui": "^5.0.0-alpha.52",
|
|
71
|
+
"@things-factory/attachment-base": "^5.0.0-alpha.52",
|
|
72
|
+
"@things-factory/auth-ui": "^5.0.0-alpha.52",
|
|
73
|
+
"@things-factory/biz-base": "^5.0.0-alpha.52",
|
|
74
|
+
"@things-factory/board-service": "^5.0.0-alpha.52",
|
|
75
|
+
"@things-factory/board-ui": "^5.0.0-alpha.52",
|
|
76
|
+
"@things-factory/code-ui": "^5.0.0-alpha.52",
|
|
77
|
+
"@things-factory/context-ui": "^5.0.0-alpha.52",
|
|
78
|
+
"@things-factory/dashboard": "^5.0.0-alpha.52",
|
|
79
|
+
"@things-factory/export-ui": "^5.0.0-alpha.52",
|
|
80
|
+
"@things-factory/export-ui-csv": "^5.0.0-alpha.52",
|
|
81
|
+
"@things-factory/export-ui-excel": "^5.0.0-alpha.52",
|
|
82
|
+
"@things-factory/geography": "^5.0.0-alpha.52",
|
|
83
|
+
"@things-factory/grist-ui": "^5.0.0-alpha.52",
|
|
84
|
+
"@things-factory/help": "^5.0.0-alpha.52",
|
|
85
|
+
"@things-factory/i18n-base": "^5.0.0-alpha.52",
|
|
86
|
+
"@things-factory/integration-fulfillment": "^5.0.0-alpha.52",
|
|
87
|
+
"@things-factory/integration-lmd": "^5.0.0-alpha.52",
|
|
88
|
+
"@things-factory/lite-menu": "^5.0.0-alpha.52",
|
|
89
|
+
"@things-factory/marketplace-base": "^5.0.0-alpha.53",
|
|
90
|
+
"@things-factory/more-ui": "^5.0.0-alpha.52",
|
|
91
|
+
"@things-factory/notification": "^5.0.0-alpha.52",
|
|
92
|
+
"@things-factory/oauth2-client": "^5.0.0-alpha.52",
|
|
93
|
+
"@things-factory/pdf": "^5.0.0-alpha.52",
|
|
94
|
+
"@things-factory/product-base": "^5.0.0-alpha.53",
|
|
95
|
+
"@things-factory/resource-ui": "^5.0.0-alpha.52",
|
|
96
|
+
"@things-factory/scene-google-map": "^5.0.0-alpha.52",
|
|
97
|
+
"@things-factory/scene-visualizer": "^5.0.0-alpha.52",
|
|
98
|
+
"@things-factory/setting-ui": "^5.0.0-alpha.52",
|
|
99
|
+
"@things-factory/system-ui": "^5.0.0-alpha.52",
|
|
100
|
+
"@things-factory/warehouse-base": "^5.0.0-alpha.53"
|
|
101
101
|
},
|
|
102
102
|
"devDependencies": {
|
|
103
|
-
"@things-factory/builder": "^5.0.0-alpha.
|
|
103
|
+
"@things-factory/builder": "^5.0.0-alpha.52",
|
|
104
104
|
"@types/node-fetch": "^2.5.7"
|
|
105
105
|
},
|
|
106
|
-
"gitHead": "
|
|
106
|
+
"gitHead": "c2bd847741fa037a3472fefa7688be73ce231eac"
|
|
107
107
|
}
|