@uniorganization/uni-lib 2.0.33 → 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.
Files changed (31) hide show
  1. package/dist/config/swagger.config.js +1 -0
  2. package/dist/entities/evaluations.entity.js +1 -0
  3. package/dist/entities/index.d.ts +6 -1
  4. package/dist/entities/index.js +6 -1
  5. package/dist/entities/raw-daily-pending.entity.d.ts +57 -0
  6. package/dist/entities/raw-daily-pending.entity.js +245 -0
  7. package/dist/entities/raw-enr-pending.entity.d.ts +143 -0
  8. package/dist/entities/raw-enr-pending.entity.js +583 -0
  9. package/dist/entities/raw-sap.entity.d.ts +36 -0
  10. package/dist/entities/{sap-raw.entity.js → raw-sap.entity.js} +1 -1
  11. package/dist/entities/raw-sap.js +155 -0
  12. package/dist/entities/vw-raw-daily-pending.view.d.ts +57 -0
  13. package/dist/entities/vw-raw-daily-pending.view.js +239 -0
  14. package/dist/entities/vw-raw-enr-pending.view.d.ts +143 -0
  15. package/dist/entities/vw-raw-enr-pending.view.js +583 -0
  16. package/dist/entities/vw-raw-sap.view.d.ts +36 -0
  17. package/dist/entities/vw-raw-sap.view.js +155 -0
  18. package/dist/modules/common/constants.d.ts +3 -0
  19. package/dist/modules/common/constants.js +4 -1
  20. package/dist/modules/common/shared-db-repositories.provider.d.ts +17 -2
  21. package/dist/modules/common/shared-db-repositories.provider.js +39 -0
  22. package/package.json +71 -71
  23. package/dist/entities/feedback-activity-log.entity.d.ts +0 -13
  24. package/dist/entities/feedback-activity-log.entity.js +0 -60
  25. package/dist/entities/feedback-comment.entity.d.ts +0 -11
  26. package/dist/entities/feedback-comment.entity.js +0 -51
  27. package/dist/enums/activity-action.enum.d.ts +0 -7
  28. package/dist/enums/activity-action.enum.js +0 -11
  29. package/dist/enums/feedback-status.enum.d.ts +0 -6
  30. package/dist/enums/feedback-status.enum.js +0 -10
  31. /package/dist/entities/{sap-raw.entity.d.ts → raw-sap.d.ts} +0 -0
@@ -0,0 +1,583 @@
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.RawEnrPending = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ let RawEnrPending = class RawEnrPending {
15
+ };
16
+ exports.RawEnrPending = RawEnrPending;
17
+ __decorate([
18
+ (0, typeorm_1.PrimaryColumn)({ name: 'row_index', type: 'varchar' }),
19
+ __metadata("design:type", String)
20
+ ], RawEnrPending.prototype, "rowIndex", void 0);
21
+ __decorate([
22
+ (0, typeorm_1.Column)({ name: 'ifdate', type: 'date', nullable: true }),
23
+ __metadata("design:type", Date)
24
+ ], RawEnrPending.prototype, "ifdate", void 0);
25
+ __decorate([
26
+ (0, typeorm_1.Column)({ name: 'company', type: 'varchar', nullable: true }),
27
+ __metadata("design:type", String)
28
+ ], RawEnrPending.prototype, "company", void 0);
29
+ __decorate([
30
+ (0, typeorm_1.Column)({ name: 'object_id', type: 'numeric', nullable: true }),
31
+ __metadata("design:type", Number)
32
+ ], RawEnrPending.prototype, "objectId", void 0);
33
+ __decorate([
34
+ (0, typeorm_1.Column)({ name: 'posting_date', type: 'date', nullable: true }),
35
+ __metadata("design:type", Date)
36
+ ], RawEnrPending.prototype, "postingDate", void 0);
37
+ __decorate([
38
+ (0, typeorm_1.Column)({ name: 'purchasing_dt', type: 'date', nullable: true }),
39
+ __metadata("design:type", Date)
40
+ ], RawEnrPending.prototype, "purchasingDt", void 0);
41
+ __decorate([
42
+ (0, typeorm_1.Column)({ name: 'process_type', type: 'varchar', nullable: true }),
43
+ __metadata("design:type", String)
44
+ ], RawEnrPending.prototype, "processType", void 0);
45
+ __decorate([
46
+ (0, typeorm_1.Column)({ name: 'service_type', type: 'varchar', nullable: true }),
47
+ __metadata("design:type", String)
48
+ ], RawEnrPending.prototype, "serviceType", void 0);
49
+ __decorate([
50
+ (0, typeorm_1.Column)({ name: 'status', type: 'varchar', nullable: true }),
51
+ __metadata("design:type", String)
52
+ ], RawEnrPending.prototype, "status", void 0);
53
+ __decorate([
54
+ (0, typeorm_1.Column)({ name: 'status_text', type: 'varchar', nullable: true }),
55
+ __metadata("design:type", String)
56
+ ], RawEnrPending.prototype, "statusText", void 0);
57
+ __decorate([
58
+ (0, typeorm_1.Column)({ name: 'customer', type: 'numeric', nullable: true }),
59
+ __metadata("design:type", Number)
60
+ ], RawEnrPending.prototype, "customer", void 0);
61
+ __decorate([
62
+ (0, typeorm_1.Column)({ name: 'bpkind', type: 'varchar', nullable: true }),
63
+ __metadata("design:type", String)
64
+ ], RawEnrPending.prototype, "bpkind", void 0);
65
+ __decorate([
66
+ (0, typeorm_1.Column)({ name: 'customer_managing_g', type: 'varchar', nullable: true }),
67
+ __metadata("design:type", String)
68
+ ], RawEnrPending.prototype, "customerManagingG", void 0);
69
+ __decorate([
70
+ (0, typeorm_1.Column)({ name: 'post_code1', type: 'varchar', nullable: true }),
71
+ __metadata("design:type", String)
72
+ ], RawEnrPending.prototype, "postCode1", void 0);
73
+ __decorate([
74
+ (0, typeorm_1.Column)({ name: 'region', type: 'varchar', nullable: true }),
75
+ __metadata("design:type", String)
76
+ ], RawEnrPending.prototype, "region", void 0);
77
+ __decorate([
78
+ (0, typeorm_1.Column)({ name: 'mc_city1', type: 'varchar', nullable: true }),
79
+ __metadata("design:type", String)
80
+ ], RawEnrPending.prototype, "mcCity1", void 0);
81
+ __decorate([
82
+ (0, typeorm_1.Column)({ name: 'pl3', type: 'varchar', nullable: true }),
83
+ __metadata("design:type", String)
84
+ ], RawEnrPending.prototype, "pl3", void 0);
85
+ __decorate([
86
+ (0, typeorm_1.Column)({ name: 'reason', type: 'varchar', nullable: true }),
87
+ __metadata("design:type", String)
88
+ ], RawEnrPending.prototype, "reason", void 0);
89
+ __decorate([
90
+ (0, typeorm_1.Column)({ name: 'reason_desc', type: 'varchar', nullable: true }),
91
+ __metadata("design:type", String)
92
+ ], RawEnrPending.prototype, "reasonDesc", void 0);
93
+ __decorate([
94
+ (0, typeorm_1.Column)({ name: 'staut_svctype', type: 'varchar', nullable: true }),
95
+ __metadata("design:type", String)
96
+ ], RawEnrPending.prototype, "stautSvctype", void 0);
97
+ __decorate([
98
+ (0, typeorm_1.Column)({ name: 'o_responsible', type: 'varchar', nullable: true }),
99
+ __metadata("design:type", String)
100
+ ], RawEnrPending.prototype, "oResponsible", void 0);
101
+ __decorate([
102
+ (0, typeorm_1.Column)({ name: 'cic_prd', type: 'varchar', nullable: true }),
103
+ __metadata("design:type", String)
104
+ ], RawEnrPending.prototype, "cicPrd", void 0);
105
+ __decorate([
106
+ (0, typeorm_1.Column)({ name: 'cic_sub_prd', type: 'varchar', nullable: true }),
107
+ __metadata("design:type", String)
108
+ ], RawEnrPending.prototype, "cicSubPrd", void 0);
109
+ __decorate([
110
+ (0, typeorm_1.Column)({ name: 'svc_prd', type: 'varchar', nullable: true }),
111
+ __metadata("design:type", String)
112
+ ], RawEnrPending.prototype, "svcPrd", void 0);
113
+ __decorate([
114
+ (0, typeorm_1.Column)({ name: 'svc_prd_desc', type: 'varchar', nullable: true }),
115
+ __metadata("design:type", String)
116
+ ], RawEnrPending.prototype, "svcPrdDesc", void 0);
117
+ __decorate([
118
+ (0, typeorm_1.Column)({ name: 'svc_prcd2', type: 'varchar', nullable: true }),
119
+ __metadata("design:type", String)
120
+ ], RawEnrPending.prototype, "svcPrcd2", void 0);
121
+ __decorate([
122
+ (0, typeorm_1.Column)({ name: 'std_prd', type: 'varchar', nullable: true }),
123
+ __metadata("design:type", String)
124
+ ], RawEnrPending.prototype, "stdPrd", void 0);
125
+ __decorate([
126
+ (0, typeorm_1.Column)({ name: 'prod_desc', type: 'varchar', nullable: true }),
127
+ __metadata("design:type", String)
128
+ ], RawEnrPending.prototype, "prodDesc", void 0);
129
+ __decorate([
130
+ (0, typeorm_1.Column)({ name: 'prd_4', type: 'varchar', nullable: true }),
131
+ __metadata("design:type", String)
132
+ ], RawEnrPending.prototype, "prd4", void 0);
133
+ __decorate([
134
+ (0, typeorm_1.Column)({ name: 'prd_8', type: 'varchar', nullable: true }),
135
+ __metadata("design:type", String)
136
+ ], RawEnrPending.prototype, "prd8", void 0);
137
+ __decorate([
138
+ (0, typeorm_1.Column)({ name: 'prd_18', type: 'varchar', nullable: true }),
139
+ __metadata("design:type", String)
140
+ ], RawEnrPending.prototype, "prd18", void 0);
141
+ __decorate([
142
+ (0, typeorm_1.Column)({ name: 'model', type: 'varchar', nullable: true }),
143
+ __metadata("design:type", String)
144
+ ], RawEnrPending.prototype, "model", void 0);
145
+ __decorate([
146
+ (0, typeorm_1.Column)({ name: 'model_name', type: 'varchar', nullable: true }),
147
+ __metadata("design:type", String)
148
+ ], RawEnrPending.prototype, "modelName", void 0);
149
+ __decorate([
150
+ (0, typeorm_1.Column)({ name: 'im_rsi_flag', type: 'varchar', nullable: true }),
151
+ __metadata("design:type", String)
152
+ ], RawEnrPending.prototype, "imRsiFlag", void 0);
153
+ __decorate([
154
+ (0, typeorm_1.Column)({ name: 'eol_flag', type: 'varchar', nullable: true }),
155
+ __metadata("design:type", String)
156
+ ], RawEnrPending.prototype, "eolFlag", void 0);
157
+ __decorate([
158
+ (0, typeorm_1.Column)({ name: 'model_desc', type: 'varchar', nullable: true }),
159
+ __metadata("design:type", String)
160
+ ], RawEnrPending.prototype, "modelDesc", void 0);
161
+ __decorate([
162
+ (0, typeorm_1.Column)({ name: 'group_d_sub', type: 'varchar', nullable: true }),
163
+ __metadata("design:type", String)
164
+ ], RawEnrPending.prototype, "groupDSub", void 0);
165
+ __decorate([
166
+ (0, typeorm_1.Column)({ name: 'base_price', type: 'numeric', nullable: true }),
167
+ __metadata("design:type", Number)
168
+ ], RawEnrPending.prototype, "basePrice", void 0);
169
+ __decorate([
170
+ (0, typeorm_1.Column)({ name: 'cogs', type: 'numeric', nullable: true }),
171
+ __metadata("design:type", Number)
172
+ ], RawEnrPending.prototype, "cogs", void 0);
173
+ __decorate([
174
+ (0, typeorm_1.Column)({ name: 'serial_no', type: 'varchar', nullable: true }),
175
+ __metadata("design:type", String)
176
+ ], RawEnrPending.prototype, "serialNo", void 0);
177
+ __decorate([
178
+ (0, typeorm_1.Column)({ name: 'imei', type: 'varchar', nullable: true }),
179
+ __metadata("design:type", String)
180
+ ], RawEnrPending.prototype, "imei", void 0);
181
+ __decorate([
182
+ (0, typeorm_1.Column)({ name: 'new_imei_no', type: 'varchar', nullable: true }),
183
+ __metadata("design:type", String)
184
+ ], RawEnrPending.prototype, "newImeiNo", void 0);
185
+ __decorate([
186
+ (0, typeorm_1.Column)({ name: 'employee', type: 'numeric', nullable: true }),
187
+ __metadata("design:type", Number)
188
+ ], RawEnrPending.prototype, "employee", void 0);
189
+ __decorate([
190
+ (0, typeorm_1.Column)({ name: 'queue_nm', type: 'varchar', nullable: true }),
191
+ __metadata("design:type", String)
192
+ ], RawEnrPending.prototype, "queueNm", void 0);
193
+ __decorate([
194
+ (0, typeorm_1.Column)({ name: 'que_company', type: 'varchar', nullable: true }),
195
+ __metadata("design:type", String)
196
+ ], RawEnrPending.prototype, "queCompany", void 0);
197
+ __decorate([
198
+ (0, typeorm_1.Column)({ name: 'que_group', type: 'varchar', nullable: true }),
199
+ __metadata("design:type", String)
200
+ ], RawEnrPending.prototype, "queGroup", void 0);
201
+ __decorate([
202
+ (0, typeorm_1.Column)({ name: 'que_responsible', type: 'varchar', nullable: true }),
203
+ __metadata("design:type", String)
204
+ ], RawEnrPending.prototype, "queResponsible", void 0);
205
+ __decorate([
206
+ (0, typeorm_1.Column)({ name: 'asc_code', type: 'varchar', nullable: true }),
207
+ __metadata("design:type", String)
208
+ ], RawEnrPending.prototype, "ascCode", void 0);
209
+ __decorate([
210
+ (0, typeorm_1.Column)({ name: 'ernam', type: 'varchar', nullable: true }),
211
+ __metadata("design:type", String)
212
+ ], RawEnrPending.prototype, "ernam", void 0);
213
+ __decorate([
214
+ (0, typeorm_1.Column)({ name: 'call_site', type: 'varchar', nullable: true }),
215
+ __metadata("design:type", String)
216
+ ], RawEnrPending.prototype, "callSite", void 0);
217
+ __decorate([
218
+ (0, typeorm_1.Column)({ name: 'bos', type: 'varchar', nullable: true }),
219
+ __metadata("design:type", String)
220
+ ], RawEnrPending.prototype, "bos", void 0);
221
+ __decorate([
222
+ (0, typeorm_1.Column)({ name: 'elabel', type: 'varchar', nullable: true }),
223
+ __metadata("design:type", String)
224
+ ], RawEnrPending.prototype, "elabel", void 0);
225
+ __decorate([
226
+ (0, typeorm_1.Column)({ name: 'posting_elable_tat', type: 'numeric', nullable: true }),
227
+ __metadata("design:type", Number)
228
+ ], RawEnrPending.prototype, "postingElableTat", void 0);
229
+ __decorate([
230
+ (0, typeorm_1.Column)({ name: 'pick_wm', type: 'varchar', nullable: true }),
231
+ __metadata("design:type", String)
232
+ ], RawEnrPending.prototype, "pickWm", void 0);
233
+ __decorate([
234
+ (0, typeorm_1.Column)({ name: 'pick_in_dt', type: 'date', nullable: true }),
235
+ __metadata("design:type", Date)
236
+ ], RawEnrPending.prototype, "pickInDt", void 0);
237
+ __decorate([
238
+ (0, typeorm_1.Column)({ name: 'deliverd_wm', type: 'varchar', nullable: true }),
239
+ __metadata("design:type", String)
240
+ ], RawEnrPending.prototype, "deliverdWm", void 0);
241
+ __decorate([
242
+ (0, typeorm_1.Column)({ name: 'delivery_in_dt', type: 'date', nullable: true }),
243
+ __metadata("design:type", Date)
244
+ ], RawEnrPending.prototype, "deliveryInDt", void 0);
245
+ __decorate([
246
+ (0, typeorm_1.Column)({ name: 'ship_back_cx', type: 'varchar', nullable: true }),
247
+ __metadata("design:type", String)
248
+ ], RawEnrPending.prototype, "shipBackCx", void 0);
249
+ __decorate([
250
+ (0, typeorm_1.Column)({ name: 'ship_back_dt', type: 'varchar', nullable: true }),
251
+ __metadata("design:type", String)
252
+ ], RawEnrPending.prototype, "shipBackDt", void 0);
253
+ __decorate([
254
+ (0, typeorm_1.Column)({ name: 'ship_back_completed_cx', type: 'varchar', nullable: true }),
255
+ __metadata("design:type", String)
256
+ ], RawEnrPending.prototype, "shipBackCompletedCx", void 0);
257
+ __decorate([
258
+ (0, typeorm_1.Column)({ name: 'ship_back_completed_dt', type: 'varchar', nullable: true }),
259
+ __metadata("design:type", String)
260
+ ], RawEnrPending.prototype, "shipBackCompletedDt", void 0);
261
+ __decorate([
262
+ (0, typeorm_1.Column)({ name: 'tat', type: 'numeric', nullable: true }),
263
+ __metadata("design:type", Number)
264
+ ], RawEnrPending.prototype, "tat", void 0);
265
+ __decorate([
266
+ (0, typeorm_1.Column)({ name: 'tat_group', type: 'varchar', nullable: true }),
267
+ __metadata("design:type", String)
268
+ ], RawEnrPending.prototype, "tatGroup", void 0);
269
+ __decorate([
270
+ (0, typeorm_1.Column)({ name: 'detail_type', type: 'varchar', nullable: true }),
271
+ __metadata("design:type", String)
272
+ ], RawEnrPending.prototype, "detailType", void 0);
273
+ __decorate([
274
+ (0, typeorm_1.Column)({ name: 'exch_reqno', type: 'varchar', nullable: true }),
275
+ __metadata("design:type", String)
276
+ ], RawEnrPending.prototype, "exchReqno", void 0);
277
+ __decorate([
278
+ (0, typeorm_1.Column)({ name: 'exch_type', type: 'varchar', nullable: true }),
279
+ __metadata("design:type", String)
280
+ ], RawEnrPending.prototype, "exchType", void 0);
281
+ __decorate([
282
+ (0, typeorm_1.Column)({ name: 'type_desc', type: 'varchar', nullable: true }),
283
+ __metadata("design:type", String)
284
+ ], RawEnrPending.prototype, "typeDesc", void 0);
285
+ __decorate([
286
+ (0, typeorm_1.Column)({ name: 'exch_reason', type: 'varchar', nullable: true }),
287
+ __metadata("design:type", String)
288
+ ], RawEnrPending.prototype, "exchReason", void 0);
289
+ __decorate([
290
+ (0, typeorm_1.Column)({ name: 'exch_reason_desc', type: 'varchar', nullable: true }),
291
+ __metadata("design:type", String)
292
+ ], RawEnrPending.prototype, "exchReasonDesc", void 0);
293
+ __decorate([
294
+ (0, typeorm_1.Column)({ name: 'exch_grade', type: 'varchar', nullable: true }),
295
+ __metadata("design:type", String)
296
+ ], RawEnrPending.prototype, "exchGrade", void 0);
297
+ __decorate([
298
+ (0, typeorm_1.Column)({ name: 'exch_option', type: 'varchar', nullable: true }),
299
+ __metadata("design:type", String)
300
+ ], RawEnrPending.prototype, "exchOption", void 0);
301
+ __decorate([
302
+ (0, typeorm_1.Column)({ name: 'so_no', type: 'varchar', nullable: true }),
303
+ __metadata("design:type", String)
304
+ ], RawEnrPending.prototype, "soNo", void 0);
305
+ __decorate([
306
+ (0, typeorm_1.Column)({ name: 'ra_no', type: 'varchar', nullable: true }),
307
+ __metadata("design:type", String)
308
+ ], RawEnrPending.prototype, "raNo", void 0);
309
+ __decorate([
310
+ (0, typeorm_1.Column)({ name: 'new_ori_plant', type: 'varchar', nullable: true }),
311
+ __metadata("design:type", String)
312
+ ], RawEnrPending.prototype, "newOriPlant", void 0);
313
+ __decorate([
314
+ (0, typeorm_1.Column)({ name: 'new_ship_plant', type: 'numeric', nullable: true }),
315
+ __metadata("design:type", Number)
316
+ ], RawEnrPending.prototype, "newShipPlant", void 0);
317
+ __decorate([
318
+ (0, typeorm_1.Column)({ name: 'new_model', type: 'varchar', nullable: true }),
319
+ __metadata("design:type", String)
320
+ ], RawEnrPending.prototype, "newModel", void 0);
321
+ __decorate([
322
+ (0, typeorm_1.Column)({ name: 'new_serial_no', type: 'varchar', nullable: true }),
323
+ __metadata("design:type", String)
324
+ ], RawEnrPending.prototype, "newSerialNo", void 0);
325
+ __decorate([
326
+ (0, typeorm_1.Column)({ name: 'refund_amount', type: 'numeric', nullable: true }),
327
+ __metadata("design:type", Number)
328
+ ], RawEnrPending.prototype, "refundAmount", void 0);
329
+ __decorate([
330
+ (0, typeorm_1.Column)({ name: 'upgrade_fee', type: 'numeric', nullable: true }),
331
+ __metadata("design:type", Number)
332
+ ], RawEnrPending.prototype, "upgradeFee", void 0);
333
+ __decorate([
334
+ (0, typeorm_1.Column)({ name: 'comp_amount', type: 'numeric', nullable: true }),
335
+ __metadata("design:type", Number)
336
+ ], RawEnrPending.prototype, "compAmount", void 0);
337
+ __decorate([
338
+ (0, typeorm_1.Column)({ name: 'sales_order_dt', type: 'date', nullable: true }),
339
+ __metadata("design:type", Date)
340
+ ], RawEnrPending.prototype, "salesOrderDt", void 0);
341
+ __decorate([
342
+ (0, typeorm_1.Column)({ name: 'do_no', type: 'varchar', nullable: true }),
343
+ __metadata("design:type", String)
344
+ ], RawEnrPending.prototype, "doNo", void 0);
345
+ __decorate([
346
+ (0, typeorm_1.Column)({ name: 'gi_doc_no', type: 'varchar', nullable: true }),
347
+ __metadata("design:type", String)
348
+ ], RawEnrPending.prototype, "giDocNo", void 0);
349
+ __decorate([
350
+ (0, typeorm_1.Column)({ name: 'gi_dt', type: 'date', nullable: true }),
351
+ __metadata("design:type", Date)
352
+ ], RawEnrPending.prototype, "giDt", void 0);
353
+ __decorate([
354
+ (0, typeorm_1.Column)({ name: 'ra_date', type: 'date', nullable: true }),
355
+ __metadata("design:type", Date)
356
+ ], RawEnrPending.prototype, "raDate", void 0);
357
+ __decorate([
358
+ (0, typeorm_1.Column)({ name: 'gr_doc_no', type: 'varchar', nullable: true }),
359
+ __metadata("design:type", String)
360
+ ], RawEnrPending.prototype, "grDocNo", void 0);
361
+ __decorate([
362
+ (0, typeorm_1.Column)({ name: 'gr_dt', type: 'date', nullable: true }),
363
+ __metadata("design:type", Date)
364
+ ], RawEnrPending.prototype, "grDt", void 0);
365
+ __decorate([
366
+ (0, typeorm_1.Column)({ name: 'account', type: 'numeric', nullable: true }),
367
+ __metadata("design:type", Number)
368
+ ], RawEnrPending.prototype, "account", void 0);
369
+ __decorate([
370
+ (0, typeorm_1.Column)({ name: 'billing_pt', type: 'varchar', nullable: true }),
371
+ __metadata("design:type", String)
372
+ ], RawEnrPending.prototype, "billingPt", void 0);
373
+ __decorate([
374
+ (0, typeorm_1.Column)({ name: 'sales_org', type: 'numeric', nullable: true }),
375
+ __metadata("design:type", Number)
376
+ ], RawEnrPending.prototype, "salesOrg", void 0);
377
+ __decorate([
378
+ (0, typeorm_1.Column)({ name: 'storage_loc', type: 'varchar', nullable: true }),
379
+ __metadata("design:type", String)
380
+ ], RawEnrPending.prototype, "storageLoc", void 0);
381
+ __decorate([
382
+ (0, typeorm_1.Column)({ name: 's_storage_loc', type: 'varchar', nullable: true }),
383
+ __metadata("design:type", String)
384
+ ], RawEnrPending.prototype, "sStorageLoc", void 0);
385
+ __decorate([
386
+ (0, typeorm_1.Column)({ name: 'incoterms', type: 'varchar', nullable: true }),
387
+ __metadata("design:type", String)
388
+ ], RawEnrPending.prototype, "incoterms", void 0);
389
+ __decorate([
390
+ (0, typeorm_1.Column)({ name: 'origin_dept', type: 'numeric', nullable: true }),
391
+ __metadata("design:type", Number)
392
+ ], RawEnrPending.prototype, "originDept", void 0);
393
+ __decorate([
394
+ (0, typeorm_1.Column)({ name: 'ra_tat', type: 'numeric', nullable: true }),
395
+ __metadata("design:type", Number)
396
+ ], RawEnrPending.prototype, "raTat", void 0);
397
+ __decorate([
398
+ (0, typeorm_1.Column)({ name: 'ex_cat', type: 'varchar', nullable: true }),
399
+ __metadata("design:type", String)
400
+ ], RawEnrPending.prototype, "exCat", void 0);
401
+ __decorate([
402
+ (0, typeorm_1.Column)({ name: 'root_cause', type: 'varchar', nullable: true }),
403
+ __metadata("design:type", String)
404
+ ], RawEnrPending.prototype, "rootCause", void 0);
405
+ __decorate([
406
+ (0, typeorm_1.Column)({ name: 'responsible', type: 'varchar', nullable: true }),
407
+ __metadata("design:type", String)
408
+ ], RawEnrPending.prototype, "responsible", void 0);
409
+ __decorate([
410
+ (0, typeorm_1.Column)({ name: 'doa_cat', type: 'varchar', nullable: true }),
411
+ __metadata("design:type", String)
412
+ ], RawEnrPending.prototype, "doaCat", void 0);
413
+ __decorate([
414
+ (0, typeorm_1.Column)({ name: 'enr_comp', type: 'varchar', nullable: true }),
415
+ __metadata("design:type", String)
416
+ ], RawEnrPending.prototype, "enrComp", void 0);
417
+ __decorate([
418
+ (0, typeorm_1.Column)({ name: 'enr_eol', type: 'varchar', nullable: true }),
419
+ __metadata("design:type", String)
420
+ ], RawEnrPending.prototype, "enrEol", void 0);
421
+ __decorate([
422
+ (0, typeorm_1.Column)({ name: 'enr_bos', type: 'varchar', nullable: true }),
423
+ __metadata("design:type", String)
424
+ ], RawEnrPending.prototype, "enrBos", void 0);
425
+ __decorate([
426
+ (0, typeorm_1.Column)({ name: 'bpo_iconx', type: 'varchar', nullable: true }),
427
+ __metadata("design:type", String)
428
+ ], RawEnrPending.prototype, "bpoIconx", void 0);
429
+ __decorate([
430
+ (0, typeorm_1.Column)({ name: 'bpo_pod', type: 'varchar', nullable: true }),
431
+ __metadata("design:type", String)
432
+ ], RawEnrPending.prototype, "bpoPod", void 0);
433
+ __decorate([
434
+ (0, typeorm_1.Column)({ name: 'bpo_elabel', type: 'varchar', nullable: true }),
435
+ __metadata("design:type", String)
436
+ ], RawEnrPending.prototype, "bpoElabel", void 0);
437
+ __decorate([
438
+ (0, typeorm_1.Column)({ name: 'bpo_ow', type: 'varchar', nullable: true }),
439
+ __metadata("design:type", String)
440
+ ], RawEnrPending.prototype, "bpoOw", void 0);
441
+ __decorate([
442
+ (0, typeorm_1.Column)({ name: 'bpo_wty', type: 'varchar', nullable: true }),
443
+ __metadata("design:type", String)
444
+ ], RawEnrPending.prototype, "bpoWty", void 0);
445
+ __decorate([
446
+ (0, typeorm_1.Column)({ name: 'es005_i', type: 'numeric', nullable: true }),
447
+ __metadata("design:type", Number)
448
+ ], RawEnrPending.prototype, "es005I", void 0);
449
+ __decorate([
450
+ (0, typeorm_1.Column)({ name: 'es010_i', type: 'numeric', nullable: true }),
451
+ __metadata("design:type", Number)
452
+ ], RawEnrPending.prototype, "es010I", void 0);
453
+ __decorate([
454
+ (0, typeorm_1.Column)({ name: 'es015_i', type: 'numeric', nullable: true }),
455
+ __metadata("design:type", Number)
456
+ ], RawEnrPending.prototype, "es015I", void 0);
457
+ __decorate([
458
+ (0, typeorm_1.Column)({ name: 'es020_i', type: 'numeric', nullable: true }),
459
+ __metadata("design:type", Number)
460
+ ], RawEnrPending.prototype, "es020I", void 0);
461
+ __decorate([
462
+ (0, typeorm_1.Column)({ name: 'es025_i', type: 'numeric', nullable: true }),
463
+ __metadata("design:type", Number)
464
+ ], RawEnrPending.prototype, "es025I", void 0);
465
+ __decorate([
466
+ (0, typeorm_1.Column)({ name: 'es030_i', type: 'numeric', nullable: true }),
467
+ __metadata("design:type", Number)
468
+ ], RawEnrPending.prototype, "es030I", void 0);
469
+ __decorate([
470
+ (0, typeorm_1.Column)({ name: 'es040_i', type: 'numeric', nullable: true }),
471
+ __metadata("design:type", Number)
472
+ ], RawEnrPending.prototype, "es040I", void 0);
473
+ __decorate([
474
+ (0, typeorm_1.Column)({ name: 'es080_i', type: 'numeric', nullable: true }),
475
+ __metadata("design:type", Number)
476
+ ], RawEnrPending.prototype, "es080I", void 0);
477
+ __decorate([
478
+ (0, typeorm_1.Column)({ name: 'es090_i', type: 'numeric', nullable: true }),
479
+ __metadata("design:type", Number)
480
+ ], RawEnrPending.prototype, "es090I", void 0);
481
+ __decorate([
482
+ (0, typeorm_1.Column)({ name: 'es105_i', type: 'numeric', nullable: true }),
483
+ __metadata("design:type", Number)
484
+ ], RawEnrPending.prototype, "es105I", void 0);
485
+ __decorate([
486
+ (0, typeorm_1.Column)({ name: 'es115_i', type: 'numeric', nullable: true }),
487
+ __metadata("design:type", Number)
488
+ ], RawEnrPending.prototype, "es115I", void 0);
489
+ __decorate([
490
+ (0, typeorm_1.Column)({ name: 'es120_i', type: 'numeric', nullable: true }),
491
+ __metadata("design:type", Number)
492
+ ], RawEnrPending.prototype, "es120I", void 0);
493
+ __decorate([
494
+ (0, typeorm_1.Column)({ name: 'es125_i', type: 'numeric', nullable: true }),
495
+ __metadata("design:type", Number)
496
+ ], RawEnrPending.prototype, "es125I", void 0);
497
+ __decorate([
498
+ (0, typeorm_1.Column)({ name: 'es135_i', type: 'numeric', nullable: true }),
499
+ __metadata("design:type", Number)
500
+ ], RawEnrPending.prototype, "es135I", void 0);
501
+ __decorate([
502
+ (0, typeorm_1.Column)({ name: 'es140_i', type: 'numeric', nullable: true }),
503
+ __metadata("design:type", Number)
504
+ ], RawEnrPending.prototype, "es140I", void 0);
505
+ __decorate([
506
+ (0, typeorm_1.Column)({ name: 'rs005_i', type: 'numeric', nullable: true }),
507
+ __metadata("design:type", Number)
508
+ ], RawEnrPending.prototype, "rs005I", void 0);
509
+ __decorate([
510
+ (0, typeorm_1.Column)({ name: 'rs006_i', type: 'numeric', nullable: true }),
511
+ __metadata("design:type", Number)
512
+ ], RawEnrPending.prototype, "rs006I", void 0);
513
+ __decorate([
514
+ (0, typeorm_1.Column)({ name: 'rs007_i', type: 'numeric', nullable: true }),
515
+ __metadata("design:type", Number)
516
+ ], RawEnrPending.prototype, "rs007I", void 0);
517
+ __decorate([
518
+ (0, typeorm_1.Column)({ name: 'rs010_i', type: 'numeric', nullable: true }),
519
+ __metadata("design:type", Number)
520
+ ], RawEnrPending.prototype, "rs010I", void 0);
521
+ __decorate([
522
+ (0, typeorm_1.Column)({ name: 'rs015_i', type: 'numeric', nullable: true }),
523
+ __metadata("design:type", Number)
524
+ ], RawEnrPending.prototype, "rs015I", void 0);
525
+ __decorate([
526
+ (0, typeorm_1.Column)({ name: 'rs020_i', type: 'numeric', nullable: true }),
527
+ __metadata("design:type", Number)
528
+ ], RawEnrPending.prototype, "rs020I", void 0);
529
+ __decorate([
530
+ (0, typeorm_1.Column)({ name: 'rs025_i', type: 'numeric', nullable: true }),
531
+ __metadata("design:type", Number)
532
+ ], RawEnrPending.prototype, "rs025I", void 0);
533
+ __decorate([
534
+ (0, typeorm_1.Column)({ name: 'rs030_i', type: 'numeric', nullable: true }),
535
+ __metadata("design:type", Number)
536
+ ], RawEnrPending.prototype, "rs030I", void 0);
537
+ __decorate([
538
+ (0, typeorm_1.Column)({ name: 'rs080_i', type: 'numeric', nullable: true }),
539
+ __metadata("design:type", Number)
540
+ ], RawEnrPending.prototype, "rs080I", void 0);
541
+ __decorate([
542
+ (0, typeorm_1.Column)({ name: 'rs090_i', type: 'numeric', nullable: true }),
543
+ __metadata("design:type", Number)
544
+ ], RawEnrPending.prototype, "rs090I", void 0);
545
+ __decorate([
546
+ (0, typeorm_1.Column)({ name: 'symptom_cat1', type: 'varchar', nullable: true }),
547
+ __metadata("design:type", String)
548
+ ], RawEnrPending.prototype, "symptomCat1", void 0);
549
+ __decorate([
550
+ (0, typeorm_1.Column)({ name: 'symptom_cat1_des', type: 'varchar', nullable: true }),
551
+ __metadata("design:type", String)
552
+ ], RawEnrPending.prototype, "symptomCat1Des", void 0);
553
+ __decorate([
554
+ (0, typeorm_1.Column)({ name: 'symptom_cat2', type: 'varchar', nullable: true }),
555
+ __metadata("design:type", String)
556
+ ], RawEnrPending.prototype, "symptomCat2", void 0);
557
+ __decorate([
558
+ (0, typeorm_1.Column)({ name: 'symptom_cat2_des', type: 'varchar', nullable: true }),
559
+ __metadata("design:type", String)
560
+ ], RawEnrPending.prototype, "symptomCat2Des", void 0);
561
+ __decorate([
562
+ (0, typeorm_1.Column)({ name: 'symptom_cat3', type: 'varchar', nullable: true }),
563
+ __metadata("design:type", String)
564
+ ], RawEnrPending.prototype, "symptomCat3", void 0);
565
+ __decorate([
566
+ (0, typeorm_1.Column)({ name: 'symptom_cat3_des', type: 'varchar', nullable: true }),
567
+ __metadata("design:type", String)
568
+ ], RawEnrPending.prototype, "symptomCat3Des", void 0);
569
+ __decorate([
570
+ (0, typeorm_1.Column)({ name: 'file_date', type: 'date', nullable: true }),
571
+ __metadata("design:type", Date)
572
+ ], RawEnrPending.prototype, "fileDate", void 0);
573
+ __decorate([
574
+ (0, typeorm_1.Column)({ name: 'aenam', type: 'varchar', nullable: true }),
575
+ __metadata("design:type", String)
576
+ ], RawEnrPending.prototype, "aenam", void 0);
577
+ __decorate([
578
+ (0, typeorm_1.Column)({ name: 'aedat', type: 'date', nullable: true }),
579
+ __metadata("design:type", Date)
580
+ ], RawEnrPending.prototype, "aedat", void 0);
581
+ exports.RawEnrPending = RawEnrPending = __decorate([
582
+ (0, typeorm_1.Entity)('raw_enr_pending', { schema: 'stm' })
583
+ ], RawEnrPending);
@@ -0,0 +1,36 @@
1
+ export declare class SapRaw {
2
+ ticketNo: string;
3
+ fileDate: Date;
4
+ companyId: string;
5
+ status: string;
6
+ statusDesc: string;
7
+ reasonDescription: string;
8
+ detailTypeName: string;
9
+ modelCode: string;
10
+ categoryId: string;
11
+ serialNo: string;
12
+ imei: string;
13
+ createDate: Date;
14
+ unitReceivedDate: Date;
15
+ category1Description: string;
16
+ category2Description: string;
17
+ category3Description: string;
18
+ consumer: Number;
19
+ bpNo: string;
20
+ state: string;
21
+ ascNo: string;
22
+ createdBy: string;
23
+ warrantyStatus: string;
24
+ inOut: string;
25
+ ern: string;
26
+ serviceType: string;
27
+ productType: string;
28
+ bucketGroup: string;
29
+ postingDateAging: string;
30
+ unitReceivedAging: string;
31
+ index: Number;
32
+ returnReasonDescription: string;
33
+ fileName: string;
34
+ dacorFlag: string;
35
+ text1: string;
36
+ }
@@ -151,5 +151,5 @@ __decorate([
151
151
  __metadata("design:type", String)
152
152
  ], SapRaw.prototype, "text1", void 0);
153
153
  exports.SapRaw = SapRaw = __decorate([
154
- (0, typeorm_1.Entity)('raw_sap', { schema: 'public' })
154
+ (0, typeorm_1.Entity)('raw_sap', { schema: 'stm' })
155
155
  ], SapRaw);