@things-factory/sales-base 6.2.129 → 6.2.131
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/sales-base",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.131",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
"@things-factory/code-base": "^6.2.126",
|
|
31
31
|
"@things-factory/integration-sftp": "^6.2.126",
|
|
32
32
|
"@things-factory/notification": "^6.2.126",
|
|
33
|
-
"@things-factory/product-base": "^6.2.
|
|
33
|
+
"@things-factory/product-base": "^6.2.130",
|
|
34
34
|
"@things-factory/setting-base": "^6.2.126",
|
|
35
35
|
"@things-factory/shell": "^6.2.126",
|
|
36
36
|
"@things-factory/transport-base": "^6.2.126",
|
|
37
|
-
"@things-factory/warehouse-base": "^6.2.
|
|
37
|
+
"@things-factory/warehouse-base": "^6.2.130"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "28308ab15372295dc9a8117881a6117408df8620"
|
|
40
40
|
}
|
|
@@ -1,15 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
InputType,
|
|
5
|
-
Int,
|
|
6
|
-
ObjectType
|
|
7
|
-
} from 'type-graphql'
|
|
8
|
-
|
|
9
|
-
import {
|
|
10
|
-
ObjectRef,
|
|
11
|
-
ScalarDate
|
|
12
|
-
} from '@things-factory/shell'
|
|
1
|
+
import { Field, Float, InputType, Int, ObjectType } from 'type-graphql'
|
|
2
|
+
|
|
3
|
+
import { ObjectRef, ScalarDate } from '@things-factory/shell'
|
|
13
4
|
|
|
14
5
|
import { OrderProduct } from './order-product'
|
|
15
6
|
|
|
@@ -288,13 +279,13 @@ export class NewOrderProduct {
|
|
|
288
279
|
@Field(type => Float, { nullable: true })
|
|
289
280
|
unpackQty: number
|
|
290
281
|
|
|
291
|
-
@Field(type =>
|
|
282
|
+
@Field(type => Float, { nullable: true })
|
|
292
283
|
palletQty: number
|
|
293
284
|
|
|
294
|
-
@Field(type =>
|
|
285
|
+
@Field(type => Float, { nullable: true })
|
|
295
286
|
actualPalletQty: number
|
|
296
287
|
|
|
297
|
-
@Field(type =>
|
|
288
|
+
@Field(type => Float, { nullable: true })
|
|
298
289
|
adjustedPalletQty: number
|
|
299
290
|
|
|
300
291
|
@Field({ nullable: true })
|