@things-factory/product-base 7.1.33 → 7.1.44
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/service/product/product-types.d.ts +2 -0
- package/dist-server/service/product/product-types.js +8 -0
- package/dist-server/service/product/product-types.js.map +1 -1
- package/dist-server/service/product/product.d.ts +1 -0
- package/dist-server/service/product/product.js +5 -0
- package/dist-server/service/product/product.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/server/service/product/product-types.ts +8 -0
- package/server/service/product/product.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/product-base",
|
|
3
|
-
"version": "7.1.
|
|
3
|
+
"version": "7.1.44",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
"@things-factory/env": "^7.1.16",
|
|
29
29
|
"@things-factory/routing-base": "^7.1.33"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "148ba0e8131943f767684f3ecceb129fdf8f9d9f"
|
|
32
32
|
}
|
|
@@ -216,6 +216,10 @@ export class NewProduct {
|
|
|
216
216
|
// 출고유형
|
|
217
217
|
@Field({ nullable: true })
|
|
218
218
|
releaseType?: string
|
|
219
|
+
|
|
220
|
+
// 바코드
|
|
221
|
+
@Field({ nullable: true })
|
|
222
|
+
barcode?: string
|
|
219
223
|
}
|
|
220
224
|
|
|
221
225
|
@ObjectType()
|
|
@@ -445,6 +449,10 @@ export class ProductPatch {
|
|
|
445
449
|
@Field({ nullable: true })
|
|
446
450
|
releaseType?: string
|
|
447
451
|
|
|
452
|
+
// 바코드
|
|
453
|
+
@Field({ nullable: true })
|
|
454
|
+
barcode?: string
|
|
455
|
+
|
|
448
456
|
@Field({ nullable: true })
|
|
449
457
|
cuFlag?: string
|
|
450
458
|
}
|
|
@@ -109,6 +109,11 @@ export class Product {
|
|
|
109
109
|
@Field({ nullable: true })
|
|
110
110
|
isAuction?: boolean
|
|
111
111
|
|
|
112
|
+
// 바코드
|
|
113
|
+
@Column({ nullable: true })
|
|
114
|
+
@Field({ nullable: true })
|
|
115
|
+
barcode?: string
|
|
116
|
+
|
|
112
117
|
//// To be removed ////
|
|
113
118
|
@Column({ nullable: true })
|
|
114
119
|
@Field({ nullable: true })
|