@uniorganization/uni-lib 1.1.70 → 1.1.72
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.
|
@@ -62,6 +62,6 @@ __decorate([
|
|
|
62
62
|
__metadata("design:type", String)
|
|
63
63
|
], EnrInventory.prototype, "materialName", void 0);
|
|
64
64
|
EnrInventory = __decorate([
|
|
65
|
-
(0, typeorm_1.Entity)('
|
|
65
|
+
(0, typeorm_1.Entity)('enr_inventory', { schema: 'enr' })
|
|
66
66
|
], EnrInventory);
|
|
67
67
|
exports.EnrInventory = EnrInventory;
|
|
@@ -43,6 +43,14 @@ __decorate([
|
|
|
43
43
|
(0, typeorm_1.Column)({ name: 'is_default' }),
|
|
44
44
|
__metadata("design:type", Boolean)
|
|
45
45
|
], EvaluationForms.prototype, "isDefault", void 0);
|
|
46
|
+
__decorate([
|
|
47
|
+
(0, typeorm_1.Column)({ name: 'use_autofail' }),
|
|
48
|
+
__metadata("design:type", Boolean)
|
|
49
|
+
], EvaluationForms.prototype, "useAutofail", void 0);
|
|
50
|
+
__decorate([
|
|
51
|
+
(0, typeorm_1.Column)({ name: 'use_pcs' }),
|
|
52
|
+
__metadata("design:type", Boolean)
|
|
53
|
+
], EvaluationForms.prototype, "usePcs", void 0);
|
|
46
54
|
__decorate([
|
|
47
55
|
(0, typeorm_1.OneToMany)(() => question_group_entity_1.QuestionGroup, (questionGroup) => questionGroup.form, {
|
|
48
56
|
eager: true,
|
|
@@ -14,27 +14,23 @@ const typeorm_1 = require("typeorm");
|
|
|
14
14
|
let Inventory = class Inventory {
|
|
15
15
|
};
|
|
16
16
|
__decorate([
|
|
17
|
-
(0, typeorm_1.PrimaryGeneratedColumn)(
|
|
17
|
+
(0, typeorm_1.PrimaryGeneratedColumn)(),
|
|
18
18
|
__metadata("design:type", Number)
|
|
19
19
|
], Inventory.prototype, "id", void 0);
|
|
20
20
|
__decorate([
|
|
21
|
-
(0, typeorm_1.Column)(
|
|
21
|
+
(0, typeorm_1.Column)(),
|
|
22
22
|
__metadata("design:type", String)
|
|
23
23
|
], Inventory.prototype, "plant", void 0);
|
|
24
24
|
__decorate([
|
|
25
|
-
(0, typeorm_1.Column)(
|
|
25
|
+
(0, typeorm_1.Column)(),
|
|
26
26
|
__metadata("design:type", String)
|
|
27
27
|
], Inventory.prototype, "division", void 0);
|
|
28
28
|
__decorate([
|
|
29
|
-
(0, typeorm_1.Column)(
|
|
29
|
+
(0, typeorm_1.Column)(),
|
|
30
30
|
__metadata("design:type", String)
|
|
31
31
|
], Inventory.prototype, "material", void 0);
|
|
32
32
|
__decorate([
|
|
33
|
-
(0, typeorm_1.Column)(
|
|
34
|
-
__metadata("design:type", String)
|
|
35
|
-
], Inventory.prototype, "materialDescription", void 0);
|
|
36
|
-
__decorate([
|
|
37
|
-
(0, typeorm_1.Column)({ name: 'storage' }),
|
|
33
|
+
(0, typeorm_1.Column)(),
|
|
38
34
|
__metadata("design:type", String)
|
|
39
35
|
], Inventory.prototype, "storage", void 0);
|
|
40
36
|
__decorate([
|
|
@@ -42,13 +38,17 @@ __decorate([
|
|
|
42
38
|
__metadata("design:type", String)
|
|
43
39
|
], Inventory.prototype, "batch", void 0);
|
|
44
40
|
__decorate([
|
|
45
|
-
(0, typeorm_1.Column)(
|
|
41
|
+
(0, typeorm_1.Column)(),
|
|
46
42
|
__metadata("design:type", String)
|
|
47
43
|
], Inventory.prototype, "unit", void 0);
|
|
48
44
|
__decorate([
|
|
49
45
|
(0, typeorm_1.Column)({ name: 'available_qty' }),
|
|
50
46
|
__metadata("design:type", Number)
|
|
51
47
|
], Inventory.prototype, "availableQty", void 0);
|
|
48
|
+
__decorate([
|
|
49
|
+
(0, typeorm_1.Column)({ name: 'material_description' }),
|
|
50
|
+
__metadata("design:type", String)
|
|
51
|
+
], Inventory.prototype, "materialDescription", void 0);
|
|
52
52
|
Inventory = __decorate([
|
|
53
53
|
(0, typeorm_1.Entity)('inventory', { schema: 'enr' })
|
|
54
54
|
], Inventory);
|