@uniorganization/uni-lib 2.0.35 → 2.0.36
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/index.d.ts +6 -1
- package/dist/entities/index.js +6 -1
- package/dist/entities/raw-daily-pending.entity.d.ts +57 -0
- package/dist/entities/raw-daily-pending.entity.js +245 -0
- package/dist/entities/raw-enr-pending.entity.d.ts +143 -0
- package/dist/entities/raw-enr-pending.entity.js +583 -0
- package/dist/entities/raw-sap.entity.d.ts +36 -0
- package/dist/entities/{sap-raw.entity.js → raw-sap.entity.js} +1 -1
- package/dist/entities/raw-sap.js +155 -0
- package/dist/entities/vw-raw-daily-pending.view.d.ts +57 -0
- package/dist/entities/vw-raw-daily-pending.view.js +239 -0
- package/dist/entities/vw-raw-enr-pending.view.d.ts +143 -0
- package/dist/entities/vw-raw-enr-pending.view.js +583 -0
- package/dist/entities/vw-raw-sap.view.d.ts +36 -0
- package/dist/entities/vw-raw-sap.view.js +155 -0
- package/dist/modules/common/constants.d.ts +3 -0
- package/dist/modules/common/constants.js +4 -1
- package/dist/modules/common/shared-db-repositories.provider.d.ts +17 -2
- package/dist/modules/common/shared-db-repositories.provider.js +39 -0
- package/package.json +71 -71
- package/dist/entities/feedback-activity-log.entity.d.ts +0 -13
- package/dist/entities/feedback-activity-log.entity.js +0 -60
- package/dist/entities/feedback-comment.entity.d.ts +0 -11
- package/dist/entities/feedback-comment.entity.js +0 -51
- package/dist/enums/activity-action.enum.d.ts +0 -7
- package/dist/enums/activity-action.enum.js +0 -11
- package/dist/enums/feedback-status.enum.d.ts +0 -6
- package/dist/enums/feedback-status.enum.js +0 -10
- /package/dist/entities/{sap-raw.entity.d.ts → raw-sap.d.ts} +0 -0
package/dist/entities/index.d.ts
CHANGED
|
@@ -66,7 +66,7 @@ export * from './outbound-ticket-history.entity';
|
|
|
66
66
|
export * from './ticket-queue.entity';
|
|
67
67
|
export * from './pending-ticket-history.entity';
|
|
68
68
|
export * from './dispute-request.entity';
|
|
69
|
-
export * from './sap
|
|
69
|
+
export * from './raw-sap.entity';
|
|
70
70
|
export * from './active-loads.entity';
|
|
71
71
|
export * from './daily-payment-status.entity';
|
|
72
72
|
export * from './skipped-ticket.entity';
|
|
@@ -78,3 +78,8 @@ export * from './p1-service-network.entity';
|
|
|
78
78
|
export * from './raw_roster.entity';
|
|
79
79
|
export * from './bp-alerts.entity';
|
|
80
80
|
export * from './feedback.entity';
|
|
81
|
+
export * from './raw-daily-pending.entity';
|
|
82
|
+
export * from './raw-enr-pending.entity';
|
|
83
|
+
export * from './vw-raw-daily-pending.view';
|
|
84
|
+
export * from './vw-raw-enr-pending.view';
|
|
85
|
+
export * from './vw-raw-sap.view';
|
package/dist/entities/index.js
CHANGED
|
@@ -82,7 +82,7 @@ __exportStar(require("./outbound-ticket-history.entity"), exports);
|
|
|
82
82
|
__exportStar(require("./ticket-queue.entity"), exports);
|
|
83
83
|
__exportStar(require("./pending-ticket-history.entity"), exports);
|
|
84
84
|
__exportStar(require("./dispute-request.entity"), exports);
|
|
85
|
-
__exportStar(require("./sap
|
|
85
|
+
__exportStar(require("./raw-sap.entity"), exports);
|
|
86
86
|
__exportStar(require("./active-loads.entity"), exports);
|
|
87
87
|
__exportStar(require("./daily-payment-status.entity"), exports);
|
|
88
88
|
__exportStar(require("./skipped-ticket.entity"), exports);
|
|
@@ -94,3 +94,8 @@ __exportStar(require("./p1-service-network.entity"), exports);
|
|
|
94
94
|
__exportStar(require("./raw_roster.entity"), exports);
|
|
95
95
|
__exportStar(require("./bp-alerts.entity"), exports);
|
|
96
96
|
__exportStar(require("./feedback.entity"), exports);
|
|
97
|
+
__exportStar(require("./raw-daily-pending.entity"), exports);
|
|
98
|
+
__exportStar(require("./raw-enr-pending.entity"), exports);
|
|
99
|
+
__exportStar(require("./vw-raw-daily-pending.view"), exports);
|
|
100
|
+
__exportStar(require("./vw-raw-enr-pending.view"), exports);
|
|
101
|
+
__exportStar(require("./vw-raw-sap.view"), exports);
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
export declare class RawDailyPending {
|
|
2
|
+
index: number;
|
|
3
|
+
fileDate: Date;
|
|
4
|
+
period: string;
|
|
5
|
+
epp: string;
|
|
6
|
+
transactionId: number;
|
|
7
|
+
pendingTat: number;
|
|
8
|
+
assignAging: string;
|
|
9
|
+
reasonAging: string;
|
|
10
|
+
sapCreatedId: string;
|
|
11
|
+
postingDate: Date;
|
|
12
|
+
firstAscAssignDate: string;
|
|
13
|
+
acknowledgeDate: string;
|
|
14
|
+
ascAssignedDate: string;
|
|
15
|
+
cc1stApptDate: string;
|
|
16
|
+
firstApptDateAsc: string;
|
|
17
|
+
ascLastAppt: string;
|
|
18
|
+
scheduleWithin: string;
|
|
19
|
+
partsStatus: string;
|
|
20
|
+
hassModels: string;
|
|
21
|
+
centerType: string;
|
|
22
|
+
nAscRsm2015: string;
|
|
23
|
+
serviceCenter: string;
|
|
24
|
+
serviceCenter1: string;
|
|
25
|
+
nHq8ProductGro: string;
|
|
26
|
+
productCategory: string;
|
|
27
|
+
localServiceProduct: string;
|
|
28
|
+
localServiceProduct2: string;
|
|
29
|
+
serviceModel: string;
|
|
30
|
+
serialNumber: string;
|
|
31
|
+
responsiblePerson: string;
|
|
32
|
+
customerRegion: string;
|
|
33
|
+
customerZipCode: string;
|
|
34
|
+
cbsaName: string;
|
|
35
|
+
nCustomerTelNo: string;
|
|
36
|
+
scsiCoverage: string;
|
|
37
|
+
redoTicketNoGcic: string;
|
|
38
|
+
inOutWarrantyIndicator: string;
|
|
39
|
+
statusReason: string;
|
|
40
|
+
serviceType: string;
|
|
41
|
+
symptomCode2: string;
|
|
42
|
+
symptomCode3: string;
|
|
43
|
+
symptomCode4: string;
|
|
44
|
+
dataOriginInboundOutbound: string;
|
|
45
|
+
serviceEngineer: string;
|
|
46
|
+
techId: string;
|
|
47
|
+
nContactRegion: string;
|
|
48
|
+
nContactRegion3: string;
|
|
49
|
+
placeOfPurchase: string;
|
|
50
|
+
wtyExceptionCode: string;
|
|
51
|
+
actualTRCount: string;
|
|
52
|
+
sStatus: string;
|
|
53
|
+
customer: string;
|
|
54
|
+
status: string;
|
|
55
|
+
extraField: string;
|
|
56
|
+
symptomCode1: string;
|
|
57
|
+
}
|
|
@@ -0,0 +1,245 @@
|
|
|
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.RawDailyPending = void 0;
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
let RawDailyPending = class RawDailyPending {
|
|
15
|
+
};
|
|
16
|
+
exports.RawDailyPending = RawDailyPending;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, typeorm_1.PrimaryColumn)({ name: 'index', type: 'numeric', precision: 50 }),
|
|
19
|
+
__metadata("design:type", Number)
|
|
20
|
+
], RawDailyPending.prototype, "index", void 0);
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, typeorm_1.Column)({ name: 'file_date', type: 'date', nullable: true }),
|
|
23
|
+
__metadata("design:type", Date)
|
|
24
|
+
], RawDailyPending.prototype, "fileDate", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, typeorm_1.Column)({ name: 'period', type: 'text', nullable: true }),
|
|
27
|
+
__metadata("design:type", String)
|
|
28
|
+
], RawDailyPending.prototype, "period", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, typeorm_1.Column)({ name: 'epp', type: 'text', nullable: true }),
|
|
31
|
+
__metadata("design:type", String)
|
|
32
|
+
], RawDailyPending.prototype, "epp", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, typeorm_1.Column)({ name: 'transaction_id', type: 'numeric', precision: 25, nullable: true }),
|
|
35
|
+
__metadata("design:type", Number)
|
|
36
|
+
], RawDailyPending.prototype, "transactionId", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, typeorm_1.Column)({ name: 'pending_tat', type: 'numeric', nullable: true }),
|
|
39
|
+
__metadata("design:type", Number)
|
|
40
|
+
], RawDailyPending.prototype, "pendingTat", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, typeorm_1.Column)({ name: 'assign_aging', type: 'text', nullable: true }),
|
|
43
|
+
__metadata("design:type", String)
|
|
44
|
+
], RawDailyPending.prototype, "assignAging", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, typeorm_1.Column)({ name: 'reason_aging', type: 'text', nullable: true }),
|
|
47
|
+
__metadata("design:type", String)
|
|
48
|
+
], RawDailyPending.prototype, "reasonAging", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, typeorm_1.Column)({ name: 'sap_created_id', type: 'text', nullable: true }),
|
|
51
|
+
__metadata("design:type", String)
|
|
52
|
+
], RawDailyPending.prototype, "sapCreatedId", void 0);
|
|
53
|
+
__decorate([
|
|
54
|
+
(0, typeorm_1.Column)({ name: 'posting_date', type: 'date', nullable: true }),
|
|
55
|
+
__metadata("design:type", Date)
|
|
56
|
+
], RawDailyPending.prototype, "postingDate", void 0);
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, typeorm_1.Column)({ name: 'first_asc_assign_date', type: 'text', nullable: true }),
|
|
59
|
+
__metadata("design:type", String)
|
|
60
|
+
], RawDailyPending.prototype, "firstAscAssignDate", void 0);
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, typeorm_1.Column)({ name: 'acknowledge_date', type: 'text', nullable: true }),
|
|
63
|
+
__metadata("design:type", String)
|
|
64
|
+
], RawDailyPending.prototype, "acknowledgeDate", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, typeorm_1.Column)({ name: 'asc_assigned_date', type: 'text', nullable: true }),
|
|
67
|
+
__metadata("design:type", String)
|
|
68
|
+
], RawDailyPending.prototype, "ascAssignedDate", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
(0, typeorm_1.Column)({ name: 'cc_1st_appt_date', type: 'text', nullable: true }),
|
|
71
|
+
__metadata("design:type", String)
|
|
72
|
+
], RawDailyPending.prototype, "cc1stApptDate", void 0);
|
|
73
|
+
__decorate([
|
|
74
|
+
(0, typeorm_1.Column)({ name: '1st_appt_date_asc', type: 'text', nullable: true }),
|
|
75
|
+
__metadata("design:type", String)
|
|
76
|
+
], RawDailyPending.prototype, "firstApptDateAsc", void 0);
|
|
77
|
+
__decorate([
|
|
78
|
+
(0, typeorm_1.Column)({ name: 'asc_last_appt', type: 'text', nullable: true }),
|
|
79
|
+
__metadata("design:type", String)
|
|
80
|
+
], RawDailyPending.prototype, "ascLastAppt", void 0);
|
|
81
|
+
__decorate([
|
|
82
|
+
(0, typeorm_1.Column)({ name: 'schedule_within', type: 'text', nullable: true }),
|
|
83
|
+
__metadata("design:type", String)
|
|
84
|
+
], RawDailyPending.prototype, "scheduleWithin", void 0);
|
|
85
|
+
__decorate([
|
|
86
|
+
(0, typeorm_1.Column)({ name: 'parts_status', type: 'text', nullable: true }),
|
|
87
|
+
__metadata("design:type", String)
|
|
88
|
+
], RawDailyPending.prototype, "partsStatus", void 0);
|
|
89
|
+
__decorate([
|
|
90
|
+
(0, typeorm_1.Column)({ name: 'hass_models', type: 'text', nullable: true }),
|
|
91
|
+
__metadata("design:type", String)
|
|
92
|
+
], RawDailyPending.prototype, "hassModels", void 0);
|
|
93
|
+
__decorate([
|
|
94
|
+
(0, typeorm_1.Column)({ name: 'center_type', type: 'text', nullable: true }),
|
|
95
|
+
__metadata("design:type", String)
|
|
96
|
+
], RawDailyPending.prototype, "centerType", void 0);
|
|
97
|
+
__decorate([
|
|
98
|
+
(0, typeorm_1.Column)({ name: 'n_asc_rsm_2015', type: 'text', nullable: true }),
|
|
99
|
+
__metadata("design:type", String)
|
|
100
|
+
], RawDailyPending.prototype, "nAscRsm2015", void 0);
|
|
101
|
+
__decorate([
|
|
102
|
+
(0, typeorm_1.Column)({ name: 'service_center', type: 'text', nullable: true }),
|
|
103
|
+
__metadata("design:type", String)
|
|
104
|
+
], RawDailyPending.prototype, "serviceCenter", void 0);
|
|
105
|
+
__decorate([
|
|
106
|
+
(0, typeorm_1.Column)({ name: 'service_center_1', type: 'text', nullable: true }),
|
|
107
|
+
__metadata("design:type", String)
|
|
108
|
+
], RawDailyPending.prototype, "serviceCenter1", void 0);
|
|
109
|
+
__decorate([
|
|
110
|
+
(0, typeorm_1.Column)({ name: 'n_hq_8_product_gro', type: 'text', nullable: true }),
|
|
111
|
+
__metadata("design:type", String)
|
|
112
|
+
], RawDailyPending.prototype, "nHq8ProductGro", void 0);
|
|
113
|
+
__decorate([
|
|
114
|
+
(0, typeorm_1.Column)({ name: 'product_category', type: 'text', nullable: true }),
|
|
115
|
+
__metadata("design:type", String)
|
|
116
|
+
], RawDailyPending.prototype, "productCategory", void 0);
|
|
117
|
+
__decorate([
|
|
118
|
+
(0, typeorm_1.Column)({ name: 'local_service_product', type: 'text', nullable: true }),
|
|
119
|
+
__metadata("design:type", String)
|
|
120
|
+
], RawDailyPending.prototype, "localServiceProduct", void 0);
|
|
121
|
+
__decorate([
|
|
122
|
+
(0, typeorm_1.Column)({ name: 'local_service_product_2', type: 'text', nullable: true }),
|
|
123
|
+
__metadata("design:type", String)
|
|
124
|
+
], RawDailyPending.prototype, "localServiceProduct2", void 0);
|
|
125
|
+
__decorate([
|
|
126
|
+
(0, typeorm_1.Column)({ name: 'service_model', type: 'text', nullable: true }),
|
|
127
|
+
__metadata("design:type", String)
|
|
128
|
+
], RawDailyPending.prototype, "serviceModel", void 0);
|
|
129
|
+
__decorate([
|
|
130
|
+
(0, typeorm_1.Column)({ name: 'serial_number', type: 'text', nullable: true }),
|
|
131
|
+
__metadata("design:type", String)
|
|
132
|
+
], RawDailyPending.prototype, "serialNumber", void 0);
|
|
133
|
+
__decorate([
|
|
134
|
+
(0, typeorm_1.Column)({ name: 'responsible_person', type: 'text', nullable: true }),
|
|
135
|
+
__metadata("design:type", String)
|
|
136
|
+
], RawDailyPending.prototype, "responsiblePerson", void 0);
|
|
137
|
+
__decorate([
|
|
138
|
+
(0, typeorm_1.Column)({ name: 'customer_region', type: 'text', nullable: true }),
|
|
139
|
+
__metadata("design:type", String)
|
|
140
|
+
], RawDailyPending.prototype, "customerRegion", void 0);
|
|
141
|
+
__decorate([
|
|
142
|
+
(0, typeorm_1.Column)({ name: 'customer_zip_code', type: 'text', nullable: true }),
|
|
143
|
+
__metadata("design:type", String)
|
|
144
|
+
], RawDailyPending.prototype, "customerZipCode", void 0);
|
|
145
|
+
__decorate([
|
|
146
|
+
(0, typeorm_1.Column)({ name: 'cbsa_name', type: 'text', nullable: true }),
|
|
147
|
+
__metadata("design:type", String)
|
|
148
|
+
], RawDailyPending.prototype, "cbsaName", void 0);
|
|
149
|
+
__decorate([
|
|
150
|
+
(0, typeorm_1.Column)({ name: 'n_customer_tel_no', type: 'text', nullable: true }),
|
|
151
|
+
__metadata("design:type", String)
|
|
152
|
+
], RawDailyPending.prototype, "nCustomerTelNo", void 0);
|
|
153
|
+
__decorate([
|
|
154
|
+
(0, typeorm_1.Column)({ name: 'scsi_coverage', type: 'text', nullable: true }),
|
|
155
|
+
__metadata("design:type", String)
|
|
156
|
+
], RawDailyPending.prototype, "scsiCoverage", void 0);
|
|
157
|
+
__decorate([
|
|
158
|
+
(0, typeorm_1.Column)({ name: 'redo_ticket_no_gcic', type: 'text', nullable: true }),
|
|
159
|
+
__metadata("design:type", String)
|
|
160
|
+
], RawDailyPending.prototype, "redoTicketNoGcic", void 0);
|
|
161
|
+
__decorate([
|
|
162
|
+
(0, typeorm_1.Column)({ name: 'in_out_warranty_indicator', type: 'text', nullable: true }),
|
|
163
|
+
__metadata("design:type", String)
|
|
164
|
+
], RawDailyPending.prototype, "inOutWarrantyIndicator", void 0);
|
|
165
|
+
__decorate([
|
|
166
|
+
(0, typeorm_1.Column)({ name: 'status_reason', type: 'text', nullable: true }),
|
|
167
|
+
__metadata("design:type", String)
|
|
168
|
+
], RawDailyPending.prototype, "statusReason", void 0);
|
|
169
|
+
__decorate([
|
|
170
|
+
(0, typeorm_1.Column)({ name: 'service_type', type: 'text', nullable: true }),
|
|
171
|
+
__metadata("design:type", String)
|
|
172
|
+
], RawDailyPending.prototype, "serviceType", void 0);
|
|
173
|
+
__decorate([
|
|
174
|
+
(0, typeorm_1.Column)({ name: 'symptom_code_2', type: 'text', nullable: true }),
|
|
175
|
+
__metadata("design:type", String)
|
|
176
|
+
], RawDailyPending.prototype, "symptomCode2", void 0);
|
|
177
|
+
__decorate([
|
|
178
|
+
(0, typeorm_1.Column)({ name: 'symptom_code_3', type: 'text', nullable: true }),
|
|
179
|
+
__metadata("design:type", String)
|
|
180
|
+
], RawDailyPending.prototype, "symptomCode3", void 0);
|
|
181
|
+
__decorate([
|
|
182
|
+
(0, typeorm_1.Column)({ name: 'symptom_code_4', type: 'text', nullable: true }),
|
|
183
|
+
__metadata("design:type", String)
|
|
184
|
+
], RawDailyPending.prototype, "symptomCode4", void 0);
|
|
185
|
+
__decorate([
|
|
186
|
+
(0, typeorm_1.Column)({ name: 'data_origin_inbound_outbound', type: 'text', nullable: true }),
|
|
187
|
+
__metadata("design:type", String)
|
|
188
|
+
], RawDailyPending.prototype, "dataOriginInboundOutbound", void 0);
|
|
189
|
+
__decorate([
|
|
190
|
+
(0, typeorm_1.Column)({ name: 'service_engineer', type: 'text', nullable: true }),
|
|
191
|
+
__metadata("design:type", String)
|
|
192
|
+
], RawDailyPending.prototype, "serviceEngineer", void 0);
|
|
193
|
+
__decorate([
|
|
194
|
+
(0, typeorm_1.Column)({ name: 'tech_id', type: 'text', nullable: true }),
|
|
195
|
+
__metadata("design:type", String)
|
|
196
|
+
], RawDailyPending.prototype, "techId", void 0);
|
|
197
|
+
__decorate([
|
|
198
|
+
(0, typeorm_1.Column)({ name: 'n_contact_region', type: 'text', nullable: true }),
|
|
199
|
+
__metadata("design:type", String)
|
|
200
|
+
], RawDailyPending.prototype, "nContactRegion", void 0);
|
|
201
|
+
__decorate([
|
|
202
|
+
(0, typeorm_1.Column)({ name: 'n_contact_region_3', type: 'text', nullable: true }),
|
|
203
|
+
__metadata("design:type", String)
|
|
204
|
+
], RawDailyPending.prototype, "nContactRegion3", void 0);
|
|
205
|
+
__decorate([
|
|
206
|
+
(0, typeorm_1.Column)({ name: 'place_of_purchase', type: 'text', nullable: true }),
|
|
207
|
+
__metadata("design:type", String)
|
|
208
|
+
], RawDailyPending.prototype, "placeOfPurchase", void 0);
|
|
209
|
+
__decorate([
|
|
210
|
+
(0, typeorm_1.Column)({ name: 'wty_exception_code', type: 'text', nullable: true }),
|
|
211
|
+
__metadata("design:type", String)
|
|
212
|
+
], RawDailyPending.prototype, "wtyExceptionCode", void 0);
|
|
213
|
+
__decorate([
|
|
214
|
+
(0, typeorm_1.Column)({ name: 'actual_t_r_count', type: 'text', nullable: true }),
|
|
215
|
+
__metadata("design:type", String)
|
|
216
|
+
], RawDailyPending.prototype, "actualTRCount", void 0);
|
|
217
|
+
__decorate([
|
|
218
|
+
(0, typeorm_1.Column)({ name: 's_status', type: 'text', nullable: true }),
|
|
219
|
+
__metadata("design:type", String)
|
|
220
|
+
], RawDailyPending.prototype, "sStatus", void 0);
|
|
221
|
+
__decorate([
|
|
222
|
+
(0, typeorm_1.Column)({ name: 'customer', type: 'text', nullable: true }),
|
|
223
|
+
__metadata("design:type", String)
|
|
224
|
+
], RawDailyPending.prototype, "customer", void 0);
|
|
225
|
+
__decorate([
|
|
226
|
+
(0, typeorm_1.Column)({ name: 'status', type: 'text', nullable: true }),
|
|
227
|
+
__metadata("design:type", String)
|
|
228
|
+
], RawDailyPending.prototype, "status", void 0);
|
|
229
|
+
__decorate([
|
|
230
|
+
(0, typeorm_1.Column)({ name: 'extra_field', type: 'varchar', length: 1, nullable: true }),
|
|
231
|
+
__metadata("design:type", String)
|
|
232
|
+
], RawDailyPending.prototype, "extraField", void 0);
|
|
233
|
+
__decorate([
|
|
234
|
+
(0, typeorm_1.Column)({ name: 'symptom_code_1', type: 'text', nullable: true }),
|
|
235
|
+
__metadata("design:type", String)
|
|
236
|
+
], RawDailyPending.prototype, "symptomCode1", void 0);
|
|
237
|
+
exports.RawDailyPending = RawDailyPending = __decorate([
|
|
238
|
+
(0, typeorm_1.Entity)('raw_daily_pending', { schema: 'stm' }),
|
|
239
|
+
(0, typeorm_1.Index)('raw_daily_pending_file_date_idx', ['fileDate']),
|
|
240
|
+
(0, typeorm_1.Index)('raw_daily_pending_posting_date_idx', ['postingDate']),
|
|
241
|
+
(0, typeorm_1.Index)('raw_daily_pending_sap_created_id_idx', ['sapCreatedId']),
|
|
242
|
+
(0, typeorm_1.Index)('raw_daily_pending_service_center_1_idx', ['serviceCenter1']),
|
|
243
|
+
(0, typeorm_1.Index)('raw_daily_pending_service_center_idx', ['serviceCenter']),
|
|
244
|
+
(0, typeorm_1.Index)('raw_daily_pending_transaction_id_idx', ['transactionId'])
|
|
245
|
+
], RawDailyPending);
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
export declare class RawEnrPending {
|
|
2
|
+
rowIndex: string;
|
|
3
|
+
ifdate: Date;
|
|
4
|
+
company: string;
|
|
5
|
+
objectId: number;
|
|
6
|
+
postingDate: Date;
|
|
7
|
+
purchasingDt: Date;
|
|
8
|
+
processType: string;
|
|
9
|
+
serviceType: string;
|
|
10
|
+
status: string;
|
|
11
|
+
statusText: string;
|
|
12
|
+
customer: number;
|
|
13
|
+
bpkind: string;
|
|
14
|
+
customerManagingG: string;
|
|
15
|
+
postCode1: string;
|
|
16
|
+
region: string;
|
|
17
|
+
mcCity1: string;
|
|
18
|
+
pl3: string;
|
|
19
|
+
reason: string;
|
|
20
|
+
reasonDesc: string;
|
|
21
|
+
stautSvctype: string;
|
|
22
|
+
oResponsible: string;
|
|
23
|
+
cicPrd: string;
|
|
24
|
+
cicSubPrd: string;
|
|
25
|
+
svcPrd: string;
|
|
26
|
+
svcPrdDesc: string;
|
|
27
|
+
svcPrcd2: string;
|
|
28
|
+
stdPrd: string;
|
|
29
|
+
prodDesc: string;
|
|
30
|
+
prd4: string;
|
|
31
|
+
prd8: string;
|
|
32
|
+
prd18: string;
|
|
33
|
+
model: string;
|
|
34
|
+
modelName: string;
|
|
35
|
+
imRsiFlag: string;
|
|
36
|
+
eolFlag: string;
|
|
37
|
+
modelDesc: string;
|
|
38
|
+
groupDSub: string;
|
|
39
|
+
basePrice: number;
|
|
40
|
+
cogs: number;
|
|
41
|
+
serialNo: string;
|
|
42
|
+
imei: string;
|
|
43
|
+
newImeiNo: string;
|
|
44
|
+
employee: number;
|
|
45
|
+
queueNm: string;
|
|
46
|
+
queCompany: string;
|
|
47
|
+
queGroup: string;
|
|
48
|
+
queResponsible: string;
|
|
49
|
+
ascCode: string;
|
|
50
|
+
ernam: string;
|
|
51
|
+
callSite: string;
|
|
52
|
+
bos: string;
|
|
53
|
+
elabel: string;
|
|
54
|
+
postingElableTat: number;
|
|
55
|
+
pickWm: string;
|
|
56
|
+
pickInDt: Date;
|
|
57
|
+
deliverdWm: string;
|
|
58
|
+
deliveryInDt: Date;
|
|
59
|
+
shipBackCx: string;
|
|
60
|
+
shipBackDt: string;
|
|
61
|
+
shipBackCompletedCx: string;
|
|
62
|
+
shipBackCompletedDt: string;
|
|
63
|
+
tat: number;
|
|
64
|
+
tatGroup: string;
|
|
65
|
+
detailType: string;
|
|
66
|
+
exchReqno: string;
|
|
67
|
+
exchType: string;
|
|
68
|
+
typeDesc: string;
|
|
69
|
+
exchReason: string;
|
|
70
|
+
exchReasonDesc: string;
|
|
71
|
+
exchGrade: string;
|
|
72
|
+
exchOption: string;
|
|
73
|
+
soNo: string;
|
|
74
|
+
raNo: string;
|
|
75
|
+
newOriPlant: string;
|
|
76
|
+
newShipPlant: number;
|
|
77
|
+
newModel: string;
|
|
78
|
+
newSerialNo: string;
|
|
79
|
+
refundAmount: number;
|
|
80
|
+
upgradeFee: number;
|
|
81
|
+
compAmount: number;
|
|
82
|
+
salesOrderDt: Date;
|
|
83
|
+
doNo: string;
|
|
84
|
+
giDocNo: string;
|
|
85
|
+
giDt: Date;
|
|
86
|
+
raDate: Date;
|
|
87
|
+
grDocNo: string;
|
|
88
|
+
grDt: Date;
|
|
89
|
+
account: number;
|
|
90
|
+
billingPt: string;
|
|
91
|
+
salesOrg: number;
|
|
92
|
+
storageLoc: string;
|
|
93
|
+
sStorageLoc: string;
|
|
94
|
+
incoterms: string;
|
|
95
|
+
originDept: number;
|
|
96
|
+
raTat: number;
|
|
97
|
+
exCat: string;
|
|
98
|
+
rootCause: string;
|
|
99
|
+
responsible: string;
|
|
100
|
+
doaCat: string;
|
|
101
|
+
enrComp: string;
|
|
102
|
+
enrEol: string;
|
|
103
|
+
enrBos: string;
|
|
104
|
+
bpoIconx: string;
|
|
105
|
+
bpoPod: string;
|
|
106
|
+
bpoElabel: string;
|
|
107
|
+
bpoOw: string;
|
|
108
|
+
bpoWty: string;
|
|
109
|
+
es005I: number;
|
|
110
|
+
es010I: number;
|
|
111
|
+
es015I: number;
|
|
112
|
+
es020I: number;
|
|
113
|
+
es025I: number;
|
|
114
|
+
es030I: number;
|
|
115
|
+
es040I: number;
|
|
116
|
+
es080I: number;
|
|
117
|
+
es090I: number;
|
|
118
|
+
es105I: number;
|
|
119
|
+
es115I: number;
|
|
120
|
+
es120I: number;
|
|
121
|
+
es125I: number;
|
|
122
|
+
es135I: number;
|
|
123
|
+
es140I: number;
|
|
124
|
+
rs005I: number;
|
|
125
|
+
rs006I: number;
|
|
126
|
+
rs007I: number;
|
|
127
|
+
rs010I: number;
|
|
128
|
+
rs015I: number;
|
|
129
|
+
rs020I: number;
|
|
130
|
+
rs025I: number;
|
|
131
|
+
rs030I: number;
|
|
132
|
+
rs080I: number;
|
|
133
|
+
rs090I: number;
|
|
134
|
+
symptomCat1: string;
|
|
135
|
+
symptomCat1Des: string;
|
|
136
|
+
symptomCat2: string;
|
|
137
|
+
symptomCat2Des: string;
|
|
138
|
+
symptomCat3: string;
|
|
139
|
+
symptomCat3Des: string;
|
|
140
|
+
fileDate: Date;
|
|
141
|
+
aenam: string;
|
|
142
|
+
aedat: Date;
|
|
143
|
+
}
|