@uniorganization/uni-lib 2.0.36 → 3.0.0
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/entities/evaluations.entity.d.ts +1 -0
- package/dist/entities/evaluations.entity.js +4 -0
- package/dist/entities/index.d.ts +1 -6
- package/dist/entities/index.js +1 -6
- package/dist/entities/{raw-sap.entity.js → sap-raw.entity.js} +1 -1
- package/dist/modules/common/constants.d.ts +0 -3
- package/dist/modules/common/constants.js +1 -4
- package/dist/modules/common/shared-db-repositories.provider.d.ts +2 -17
- package/dist/modules/common/shared-db-repositories.provider.js +0 -39
- package/package.json +71 -71
- package/dist/entities/raw-daily-pending.entity.d.ts +0 -57
- package/dist/entities/raw-daily-pending.entity.js +0 -245
- package/dist/entities/raw-enr-pending.entity.d.ts +0 -143
- package/dist/entities/raw-enr-pending.entity.js +0 -583
- package/dist/entities/raw-sap.entity.d.ts +0 -36
- package/dist/entities/raw-sap.js +0 -155
- package/dist/entities/vw-raw-daily-pending.view.d.ts +0 -57
- package/dist/entities/vw-raw-daily-pending.view.js +0 -239
- package/dist/entities/vw-raw-enr-pending.view.d.ts +0 -143
- package/dist/entities/vw-raw-enr-pending.view.js +0 -583
- package/dist/entities/vw-raw-sap.view.d.ts +0 -36
- package/dist/entities/vw-raw-sap.view.js +0 -155
- /package/dist/entities/{raw-sap.d.ts → sap-raw.entity.d.ts} +0 -0
|
@@ -1,155 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.VwRawSap = void 0;
|
|
13
|
-
const typeorm_1 = require("typeorm");
|
|
14
|
-
let VwRawSap = class VwRawSap {
|
|
15
|
-
};
|
|
16
|
-
exports.VwRawSap = VwRawSap;
|
|
17
|
-
__decorate([
|
|
18
|
-
(0, typeorm_1.PrimaryColumn)({ name: 'ticket_number' }),
|
|
19
|
-
__metadata("design:type", String)
|
|
20
|
-
], VwRawSap.prototype, "ticketNo", void 0);
|
|
21
|
-
__decorate([
|
|
22
|
-
(0, typeorm_1.PrimaryColumn)({ name: 'file_date' }),
|
|
23
|
-
__metadata("design:type", Date)
|
|
24
|
-
], VwRawSap.prototype, "fileDate", void 0);
|
|
25
|
-
__decorate([
|
|
26
|
-
(0, typeorm_1.Column)({ name: 'company_id' }),
|
|
27
|
-
__metadata("design:type", String)
|
|
28
|
-
], VwRawSap.prototype, "companyId", void 0);
|
|
29
|
-
__decorate([
|
|
30
|
-
(0, typeorm_1.Column)({ name: 'status' }),
|
|
31
|
-
__metadata("design:type", String)
|
|
32
|
-
], VwRawSap.prototype, "status", void 0);
|
|
33
|
-
__decorate([
|
|
34
|
-
(0, typeorm_1.Column)({ name: 'status_desc' }),
|
|
35
|
-
__metadata("design:type", String)
|
|
36
|
-
], VwRawSap.prototype, "statusDesc", void 0);
|
|
37
|
-
__decorate([
|
|
38
|
-
(0, typeorm_1.Column)({ name: 'reason_description' }),
|
|
39
|
-
__metadata("design:type", String)
|
|
40
|
-
], VwRawSap.prototype, "reasonDescription", void 0);
|
|
41
|
-
__decorate([
|
|
42
|
-
(0, typeorm_1.Column)({ name: 'detail_type' }),
|
|
43
|
-
__metadata("design:type", String)
|
|
44
|
-
], VwRawSap.prototype, "detailTypeName", void 0);
|
|
45
|
-
__decorate([
|
|
46
|
-
(0, typeorm_1.Column)({ name: 'model' }),
|
|
47
|
-
__metadata("design:type", String)
|
|
48
|
-
], VwRawSap.prototype, "modelCode", void 0);
|
|
49
|
-
__decorate([
|
|
50
|
-
(0, typeorm_1.Column)({ name: 'category_id' }),
|
|
51
|
-
__metadata("design:type", String)
|
|
52
|
-
], VwRawSap.prototype, "categoryId", void 0);
|
|
53
|
-
__decorate([
|
|
54
|
-
(0, typeorm_1.Column)({ name: 'serial_no' }),
|
|
55
|
-
__metadata("design:type", String)
|
|
56
|
-
], VwRawSap.prototype, "serialNo", void 0);
|
|
57
|
-
__decorate([
|
|
58
|
-
(0, typeorm_1.Column)({ name: 'imei' }),
|
|
59
|
-
__metadata("design:type", String)
|
|
60
|
-
], VwRawSap.prototype, "imei", void 0);
|
|
61
|
-
__decorate([
|
|
62
|
-
(0, typeorm_1.Column)({ name: 'posting_date' }),
|
|
63
|
-
__metadata("design:type", Date)
|
|
64
|
-
], VwRawSap.prototype, "createDate", void 0);
|
|
65
|
-
__decorate([
|
|
66
|
-
(0, typeorm_1.Column)({ name: 'unit_received_date' }),
|
|
67
|
-
__metadata("design:type", Date)
|
|
68
|
-
], VwRawSap.prototype, "unitReceivedDate", void 0);
|
|
69
|
-
__decorate([
|
|
70
|
-
(0, typeorm_1.Column)({ name: 'category1_description' }),
|
|
71
|
-
__metadata("design:type", String)
|
|
72
|
-
], VwRawSap.prototype, "category1Description", void 0);
|
|
73
|
-
__decorate([
|
|
74
|
-
(0, typeorm_1.Column)({ name: 'category2_description' }),
|
|
75
|
-
__metadata("design:type", String)
|
|
76
|
-
], VwRawSap.prototype, "category2Description", void 0);
|
|
77
|
-
__decorate([
|
|
78
|
-
(0, typeorm_1.Column)({ name: 'category3_description' }),
|
|
79
|
-
__metadata("design:type", String)
|
|
80
|
-
], VwRawSap.prototype, "category3Description", void 0);
|
|
81
|
-
__decorate([
|
|
82
|
-
(0, typeorm_1.Column)({ name: 'consumer' }),
|
|
83
|
-
__metadata("design:type", Number)
|
|
84
|
-
], VwRawSap.prototype, "consumer", void 0);
|
|
85
|
-
__decorate([
|
|
86
|
-
(0, typeorm_1.Column)({ name: 'customer' }),
|
|
87
|
-
__metadata("design:type", String)
|
|
88
|
-
], VwRawSap.prototype, "bpNo", void 0);
|
|
89
|
-
__decorate([
|
|
90
|
-
(0, typeorm_1.Column)({ name: 'state' }),
|
|
91
|
-
__metadata("design:type", String)
|
|
92
|
-
], VwRawSap.prototype, "state", void 0);
|
|
93
|
-
__decorate([
|
|
94
|
-
(0, typeorm_1.Column)({ name: 'asc' }),
|
|
95
|
-
__metadata("design:type", String)
|
|
96
|
-
], VwRawSap.prototype, "ascNo", void 0);
|
|
97
|
-
__decorate([
|
|
98
|
-
(0, typeorm_1.Column)({ name: 'created_by' }),
|
|
99
|
-
__metadata("design:type", String)
|
|
100
|
-
], VwRawSap.prototype, "createdBy", void 0);
|
|
101
|
-
__decorate([
|
|
102
|
-
(0, typeorm_1.Column)({ name: 'in_out_wty' }),
|
|
103
|
-
__metadata("design:type", String)
|
|
104
|
-
], VwRawSap.prototype, "warrantyStatus", void 0);
|
|
105
|
-
__decorate([
|
|
106
|
-
(0, typeorm_1.Column)({ name: 'in_out' }),
|
|
107
|
-
__metadata("design:type", String)
|
|
108
|
-
], VwRawSap.prototype, "inOut", void 0);
|
|
109
|
-
__decorate([
|
|
110
|
-
(0, typeorm_1.Column)({ name: 'ern' }),
|
|
111
|
-
__metadata("design:type", String)
|
|
112
|
-
], VwRawSap.prototype, "ern", void 0);
|
|
113
|
-
__decorate([
|
|
114
|
-
(0, typeorm_1.Column)({ name: 'service_type' }),
|
|
115
|
-
__metadata("design:type", String)
|
|
116
|
-
], VwRawSap.prototype, "serviceType", void 0);
|
|
117
|
-
__decorate([
|
|
118
|
-
(0, typeorm_1.Column)({ name: 'product_type' }),
|
|
119
|
-
__metadata("design:type", String)
|
|
120
|
-
], VwRawSap.prototype, "productType", void 0);
|
|
121
|
-
__decorate([
|
|
122
|
-
(0, typeorm_1.Column)({ name: 'bucket_group' }),
|
|
123
|
-
__metadata("design:type", String)
|
|
124
|
-
], VwRawSap.prototype, "bucketGroup", void 0);
|
|
125
|
-
__decorate([
|
|
126
|
-
(0, typeorm_1.Column)({ name: 'posting_date_aging' }),
|
|
127
|
-
__metadata("design:type", String)
|
|
128
|
-
], VwRawSap.prototype, "postingDateAging", void 0);
|
|
129
|
-
__decorate([
|
|
130
|
-
(0, typeorm_1.Column)({ name: 'unit_received_aging' }),
|
|
131
|
-
__metadata("design:type", String)
|
|
132
|
-
], VwRawSap.prototype, "unitReceivedAging", void 0);
|
|
133
|
-
__decorate([
|
|
134
|
-
(0, typeorm_1.Column)({ name: 'index' }),
|
|
135
|
-
__metadata("design:type", Number)
|
|
136
|
-
], VwRawSap.prototype, "index", void 0);
|
|
137
|
-
__decorate([
|
|
138
|
-
(0, typeorm_1.Column)({ name: 'return_reason_description' }),
|
|
139
|
-
__metadata("design:type", String)
|
|
140
|
-
], VwRawSap.prototype, "returnReasonDescription", void 0);
|
|
141
|
-
__decorate([
|
|
142
|
-
(0, typeorm_1.Column)({ name: 'file_name' }),
|
|
143
|
-
__metadata("design:type", String)
|
|
144
|
-
], VwRawSap.prototype, "fileName", void 0);
|
|
145
|
-
__decorate([
|
|
146
|
-
(0, typeorm_1.Column)({ name: 'dacor_flag' }),
|
|
147
|
-
__metadata("design:type", String)
|
|
148
|
-
], VwRawSap.prototype, "dacorFlag", void 0);
|
|
149
|
-
__decorate([
|
|
150
|
-
(0, typeorm_1.Column)({ name: 'text1' }),
|
|
151
|
-
__metadata("design:type", String)
|
|
152
|
-
], VwRawSap.prototype, "text1", void 0);
|
|
153
|
-
exports.VwRawSap = VwRawSap = __decorate([
|
|
154
|
-
(0, typeorm_1.ViewEntity)('raw_sap', { schema: 'public' })
|
|
155
|
-
], VwRawSap);
|
|
File without changes
|