@things-factory/worksheet-base 6.0.78 → 6.0.82
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/dist-server/controllers/outbound/picking-worksheet-controller.js +1 -1
- package/dist-server/controllers/outbound/picking-worksheet-controller.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +17 -17
- package/server/controllers/outbound/picking-worksheet-controller.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/worksheet-base",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.82",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -24,21 +24,21 @@
|
|
|
24
24
|
"migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@things-factory/auth-base": "^6.0.
|
|
28
|
-
"@things-factory/biz-base": "^6.0.
|
|
29
|
-
"@things-factory/document-template-base": "^6.0.
|
|
30
|
-
"@things-factory/id-rule-base": "^6.0.
|
|
31
|
-
"@things-factory/integration-lmd": "^6.0.
|
|
32
|
-
"@things-factory/integration-marketplace": "^6.0.
|
|
33
|
-
"@things-factory/integration-sellercraft": "^6.0.
|
|
34
|
-
"@things-factory/integration-sftp": "^6.0.
|
|
35
|
-
"@things-factory/marketplace-base": "^6.0.
|
|
36
|
-
"@things-factory/notification": "^6.0.
|
|
37
|
-
"@things-factory/sales-base": "^6.0.
|
|
38
|
-
"@things-factory/setting-base": "^6.0.
|
|
39
|
-
"@things-factory/shell": "^6.0.
|
|
40
|
-
"@things-factory/transport-base": "^6.0.
|
|
41
|
-
"@things-factory/warehouse-base": "^6.0.
|
|
27
|
+
"@things-factory/auth-base": "^6.0.82",
|
|
28
|
+
"@things-factory/biz-base": "^6.0.82",
|
|
29
|
+
"@things-factory/document-template-base": "^6.0.82",
|
|
30
|
+
"@things-factory/id-rule-base": "^6.0.82",
|
|
31
|
+
"@things-factory/integration-lmd": "^6.0.82",
|
|
32
|
+
"@things-factory/integration-marketplace": "^6.0.82",
|
|
33
|
+
"@things-factory/integration-sellercraft": "^6.0.82",
|
|
34
|
+
"@things-factory/integration-sftp": "^6.0.82",
|
|
35
|
+
"@things-factory/marketplace-base": "^6.0.82",
|
|
36
|
+
"@things-factory/notification": "^6.0.82",
|
|
37
|
+
"@things-factory/sales-base": "^6.0.82",
|
|
38
|
+
"@things-factory/setting-base": "^6.0.82",
|
|
39
|
+
"@things-factory/shell": "^6.0.82",
|
|
40
|
+
"@things-factory/transport-base": "^6.0.82",
|
|
41
|
+
"@things-factory/warehouse-base": "^6.0.82"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "6cd2a84db2c9ad8d9e75ecbdfcc53df1b20cf79f"
|
|
44
44
|
}
|
|
@@ -1117,7 +1117,7 @@ export class PickingWorksheetController extends VasWorksheetController {
|
|
|
1117
1117
|
|
|
1118
1118
|
async completePicking(releaseGoodNo: string): Promise<Worksheet> {
|
|
1119
1119
|
let releaseGood: ReleaseGood = await this.findRefOrder(ReleaseGood, {
|
|
1120
|
-
domain: this.domain,
|
|
1120
|
+
domain: { id: this.domain.id },
|
|
1121
1121
|
name: releaseGoodNo,
|
|
1122
1122
|
status: ORDER_STATUS.PICKING
|
|
1123
1123
|
})
|