@things-factory/worksheet-base 6.0.82 → 6.0.90
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/inbound/unloading-worksheet-controller.js +2 -2
- package/dist-server/controllers/inbound/unloading-worksheet-controller.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +17 -17
- package/server/controllers/inbound/unloading-worksheet-controller.ts +2 -2
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.90",
|
|
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.90",
|
|
28
|
+
"@things-factory/biz-base": "^6.0.90",
|
|
29
|
+
"@things-factory/document-template-base": "^6.0.90",
|
|
30
|
+
"@things-factory/id-rule-base": "^6.0.90",
|
|
31
|
+
"@things-factory/integration-lmd": "^6.0.90",
|
|
32
|
+
"@things-factory/integration-marketplace": "^6.0.90",
|
|
33
|
+
"@things-factory/integration-sellercraft": "^6.0.90",
|
|
34
|
+
"@things-factory/integration-sftp": "^6.0.90",
|
|
35
|
+
"@things-factory/marketplace-base": "^6.0.90",
|
|
36
|
+
"@things-factory/notification": "^6.0.90",
|
|
37
|
+
"@things-factory/sales-base": "^6.0.90",
|
|
38
|
+
"@things-factory/setting-base": "^6.0.90",
|
|
39
|
+
"@things-factory/shell": "^6.0.90",
|
|
40
|
+
"@things-factory/transport-base": "^6.0.90",
|
|
41
|
+
"@things-factory/warehouse-base": "^6.0.90"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "f414cc54d34c91def66b229a9c417b663399c031"
|
|
44
44
|
}
|
|
@@ -777,7 +777,7 @@ export class UnloadingWorksheetController extends VasWorksheetController {
|
|
|
777
777
|
|
|
778
778
|
worksheetDetail = await this.trxMgr
|
|
779
779
|
.getRepository(WorksheetDetail)
|
|
780
|
-
.findOne({ where: { domain: { id: this.domain.id }, targetProduct } })
|
|
780
|
+
.findOne({ where: { domain: { id: this.domain.id }, targetProduct: { id: targetProduct.id } } })
|
|
781
781
|
} else {
|
|
782
782
|
returnOrder = await this.trxMgr.getRepository(ReturnOrder).findOne({
|
|
783
783
|
where: { domain: { id: this.domain.id }, name: orderNo },
|
|
@@ -1221,7 +1221,7 @@ export class UnloadingWorksheetController extends VasWorksheetController {
|
|
|
1221
1221
|
const arrivalNotice: ArrivalNotice = await this.findRefOrder(
|
|
1222
1222
|
ArrivalNotice,
|
|
1223
1223
|
{
|
|
1224
|
-
domain: this.domain,
|
|
1224
|
+
domain: { id: this.domain },
|
|
1225
1225
|
name: arrivalNoticeNo,
|
|
1226
1226
|
status: In([ORDER_STATUS.PROCESSING, ORDER_STATUS.PUTTING_AWAY])
|
|
1227
1227
|
},
|