@seniorsistemas/yms-integration 1.27.1 → 1.27.3
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/bundles/seniorsistemas-yms-integration.umd.js +154 -190
- package/bundles/seniorsistemas-yms-integration.umd.js.map +1 -1
- package/bundles/seniorsistemas-yms-integration.umd.min.js +1 -1
- package/bundles/seniorsistemas-yms-integration.umd.min.js.map +1 -1
- package/esm2015/seniorsistemas-yms-integration.js +41 -43
- package/esm2015/src/wms/components/document-grid/document-grid.component.js +5 -4
- package/esm2015/src/wms/components/document-grid/register-document/register-document.component.js +3 -14
- package/esm5/seniorsistemas-yms-integration.js +41 -43
- package/esm5/src/wms/components/document-grid/document-grid.component.js +5 -4
- package/esm5/src/wms/components/document-grid/register-document/register-document.component.js +3 -15
- package/fesm2015/seniorsistemas-yms-integration.js +113 -138
- package/fesm2015/seniorsistemas-yms-integration.js.map +1 -1
- package/fesm5/seniorsistemas-yms-integration.js +113 -147
- package/fesm5/seniorsistemas-yms-integration.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-yms-integration.d.ts +40 -42
- package/seniorsistemas-yms-integration.metadata.json +1 -1
- package/src/wms/components/document-grid/document-grid.component.d.ts +1 -1
- package/src/wms/components/document-grid/register-document/register-document.component.d.ts +1 -4
- package/esm2015/src/wms/entities/agenda/agenda.service.js +0 -22
- package/esm2015/src/wms/entities/entity-service.js +0 -4
- package/esm5/src/wms/entities/agenda/agenda.service.js +0 -25
- package/esm5/src/wms/entities/entity-service.js +0 -11
- package/src/wms/entities/agenda/agenda.service.d.ts +0 -9
- package/src/wms/entities/entity-service.d.ts +0 -3
|
@@ -2985,7 +2985,7 @@ let DocumentGridComponent = class DocumentGridComponent {
|
|
|
2985
2985
|
if (!data.schedulingId) {
|
|
2986
2986
|
data.schedulingId = this.agenda.id;
|
|
2987
2987
|
}
|
|
2988
|
-
this.
|
|
2988
|
+
data.key = this.updateKeyByWms(data);
|
|
2989
2989
|
this.documentService.insert(data).subscribe(() => {
|
|
2990
2990
|
this.message("success", "saved_message_title", "saved_message_content");
|
|
2991
2991
|
});
|
|
@@ -2994,13 +2994,14 @@ let DocumentGridComponent = class DocumentGridComponent {
|
|
|
2994
2994
|
});
|
|
2995
2995
|
}
|
|
2996
2996
|
}
|
|
2997
|
-
|
|
2998
|
-
if (data.key
|
|
2997
|
+
updateKeyByWms(data) {
|
|
2998
|
+
if (!data.key) {
|
|
2999
2999
|
data.key = data.invoiceKey;
|
|
3000
3000
|
}
|
|
3001
3001
|
if (this.wmsSystem === WmsSystem.WIS) {
|
|
3002
3002
|
data.key = `${data.invoiceNumber}:${data.invoiceSerialNumber}:${data.partnerDocument}`;
|
|
3003
3003
|
}
|
|
3004
|
+
return data.key;
|
|
3004
3005
|
}
|
|
3005
3006
|
onDelete() {
|
|
3006
3007
|
this.confirmationService.confirm({
|
|
@@ -3165,120 +3166,11 @@ class Document {
|
|
|
3165
3166
|
}
|
|
3166
3167
|
}
|
|
3167
3168
|
|
|
3168
|
-
class EntityService$1 {
|
|
3169
|
-
constructor(http, messageService, entityUrl, actionsUrl) {
|
|
3170
|
-
this.http = http;
|
|
3171
|
-
this.messageService = messageService;
|
|
3172
|
-
this.entityUrl = entityUrl;
|
|
3173
|
-
this.actionsUrl = actionsUrl;
|
|
3174
|
-
this.http = http;
|
|
3175
|
-
this.messageService = messageService;
|
|
3176
|
-
this.entityUrl = entityUrl;
|
|
3177
|
-
this.actionsUrl = actionsUrl;
|
|
3178
|
-
this.defaultCatch = this.defaultCatch.bind(this);
|
|
3179
|
-
}
|
|
3180
|
-
getListQueryParams(listParams) {
|
|
3181
|
-
const { page = 0, size = 10, sort = [], filterQuery = "", displayFields = [] } = listParams;
|
|
3182
|
-
let params = new HttpParams();
|
|
3183
|
-
params = params.append("size", String(size));
|
|
3184
|
-
params = params.append("offset", String(page));
|
|
3185
|
-
if (sort && sort.length) {
|
|
3186
|
-
params = params.append("orderby", sort
|
|
3187
|
-
.map(s => {
|
|
3188
|
-
let order = "";
|
|
3189
|
-
if (s.order === 1)
|
|
3190
|
-
order = " asc";
|
|
3191
|
-
else if (s.order === -1)
|
|
3192
|
-
order = " desc";
|
|
3193
|
-
return `${s.field}${order}`;
|
|
3194
|
-
})
|
|
3195
|
-
.join(", "));
|
|
3196
|
-
}
|
|
3197
|
-
if (filterQuery)
|
|
3198
|
-
params = params.append("filter", filterQuery);
|
|
3199
|
-
if (displayFields && displayFields.length)
|
|
3200
|
-
params = params.append("displayfields", displayFields.join());
|
|
3201
|
-
return params;
|
|
3202
|
-
}
|
|
3203
|
-
getBodyParams(listParams) {
|
|
3204
|
-
const { page = 0, size = 10, sort = [], filterQuery = "", displayFields = [] } = listParams;
|
|
3205
|
-
const bodyParams = {};
|
|
3206
|
-
bodyParams.size = size;
|
|
3207
|
-
bodyParams.offset = page;
|
|
3208
|
-
if (sort && sort.length) {
|
|
3209
|
-
bodyParams.orderBy = sort
|
|
3210
|
-
.map(s => {
|
|
3211
|
-
let order = "";
|
|
3212
|
-
if (s.order === 1)
|
|
3213
|
-
order = " asc";
|
|
3214
|
-
else if (s.order === -1)
|
|
3215
|
-
order = " desc";
|
|
3216
|
-
return `${s.field}${order}`;
|
|
3217
|
-
})
|
|
3218
|
-
.join(", ");
|
|
3219
|
-
}
|
|
3220
|
-
if (filterQuery)
|
|
3221
|
-
bodyParams.filter = filterQuery;
|
|
3222
|
-
if (displayFields && displayFields.length)
|
|
3223
|
-
bodyParams.displayfields = displayFields.join();
|
|
3224
|
-
return bodyParams;
|
|
3225
|
-
}
|
|
3226
|
-
defaultCatch() {
|
|
3227
|
-
return catchError((err) => {
|
|
3228
|
-
if (err) {
|
|
3229
|
-
const summary = err.status ? String(err.status) : "Error";
|
|
3230
|
-
const detail = (err.error && err.error.message) || err.statusText || err.message || "Error";
|
|
3231
|
-
this.messageService.add({
|
|
3232
|
-
severity: "error",
|
|
3233
|
-
summary,
|
|
3234
|
-
detail,
|
|
3235
|
-
});
|
|
3236
|
-
}
|
|
3237
|
-
return throwError(err);
|
|
3238
|
-
});
|
|
3239
|
-
}
|
|
3240
|
-
list(listParams) {
|
|
3241
|
-
return this.http.get(this.entityUrl, { params: this.getListQueryParams(listParams) }).pipe(this.defaultCatch());
|
|
3242
|
-
}
|
|
3243
|
-
get(id) {
|
|
3244
|
-
return this.http.get(`${this.entityUrl}/${id}`).pipe(this.defaultCatch());
|
|
3245
|
-
}
|
|
3246
|
-
insert(entity) {
|
|
3247
|
-
return this.http.post(`${this.entityUrl}`, entity).pipe(this.defaultCatch());
|
|
3248
|
-
}
|
|
3249
|
-
update(id, entity) {
|
|
3250
|
-
return this.http.put(`${this.entityUrl}/${id}`, entity).pipe(this.defaultCatch());
|
|
3251
|
-
}
|
|
3252
|
-
delete(id) {
|
|
3253
|
-
return this.http.delete(`${this.entityUrl}/${id}`).pipe(this.defaultCatch());
|
|
3254
|
-
}
|
|
3255
|
-
listCustomFilter(listParams, action) {
|
|
3256
|
-
return this.http.post(`${this.actionsUrl}/${action}`, this.getBodyParams(listParams)).pipe(this.defaultCatch());
|
|
3257
|
-
}
|
|
3258
|
-
}
|
|
3259
|
-
|
|
3260
|
-
class EntityService$2 extends EntityService$1 {
|
|
3261
|
-
}
|
|
3262
|
-
|
|
3263
|
-
let AgendaService = class AgendaService extends EntityService$2 {
|
|
3264
|
-
constructor(http, messageService) {
|
|
3265
|
-
super(http, messageService, 'yms/agenda/entities/agenda', '');
|
|
3266
|
-
this.http = http;
|
|
3267
|
-
this.messageService = messageService;
|
|
3268
|
-
}
|
|
3269
|
-
};
|
|
3270
|
-
AgendaService.ngInjectableDef = defineInjectable({ factory: function AgendaService_Factory() { return new AgendaService(inject(HttpClient), inject(MessageService$1)); }, token: AgendaService, providedIn: "root" });
|
|
3271
|
-
AgendaService = __decorate([
|
|
3272
|
-
Injectable({ providedIn: 'root' }),
|
|
3273
|
-
__metadata("design:paramtypes", [HttpClient, MessageService$1])
|
|
3274
|
-
], AgendaService);
|
|
3275
|
-
|
|
3276
3169
|
let RegisterDocumentComponent = class RegisterDocumentComponent {
|
|
3277
|
-
constructor(fb, messageService, translateService
|
|
3170
|
+
constructor(fb, messageService, translateService) {
|
|
3278
3171
|
this.fb = fb;
|
|
3279
3172
|
this.messageService = messageService;
|
|
3280
3173
|
this.translateService = translateService;
|
|
3281
|
-
this.agendaService = agendaService;
|
|
3282
3174
|
this.document = new EventEmitter();
|
|
3283
3175
|
this.visible = new EventEmitter();
|
|
3284
3176
|
this.visibleChange = new EventEmitter();
|
|
@@ -3293,13 +3185,11 @@ let RegisterDocumentComponent = class RegisterDocumentComponent {
|
|
|
3293
3185
|
if (!this.edit && this.visible) {
|
|
3294
3186
|
this.formGroup.disable();
|
|
3295
3187
|
this.setValuesFormGroup(this.viewDocument[0]);
|
|
3296
|
-
this.setValueForPartner();
|
|
3297
3188
|
this.hideSaveButton = true;
|
|
3298
3189
|
return this.visible;
|
|
3299
3190
|
}
|
|
3300
3191
|
if (this.formGroup !== undefined) {
|
|
3301
3192
|
this.formGroup.enable();
|
|
3302
|
-
this.setValueForPartner();
|
|
3303
3193
|
this.hideSaveButton = false;
|
|
3304
3194
|
}
|
|
3305
3195
|
}
|
|
@@ -3319,12 +3209,6 @@ let RegisterDocumentComponent = class RegisterDocumentComponent {
|
|
|
3319
3209
|
this.formGroup.get('ownerDocument').setValue(document.ownerDocument);
|
|
3320
3210
|
this.formGroup.get('ownerName').setValue(document.ownerName);
|
|
3321
3211
|
}
|
|
3322
|
-
setValueForPartner() {
|
|
3323
|
-
this.agendaService.get(this.agenda.id).subscribe((agenda) => {
|
|
3324
|
-
this.formGroup.get('partnerName').setValue(agenda.externalTenant.descricao);
|
|
3325
|
-
this.formGroup.get('partnerDocument').setValue(agenda.externalTenant.cnpj);
|
|
3326
|
-
});
|
|
3327
|
-
}
|
|
3328
3212
|
getFormGroup() {
|
|
3329
3213
|
this.formGroup = this.fb.group({
|
|
3330
3214
|
key: [undefined, Validators.required],
|
|
@@ -3408,8 +3292,7 @@ RegisterDocumentComponent = __decorate([
|
|
|
3408
3292
|
}),
|
|
3409
3293
|
__metadata("design:paramtypes", [FormBuilder,
|
|
3410
3294
|
MessageService,
|
|
3411
|
-
TranslateService
|
|
3412
|
-
AgendaService])
|
|
3295
|
+
TranslateService])
|
|
3413
3296
|
], RegisterDocumentComponent);
|
|
3414
3297
|
|
|
3415
3298
|
let RegisterDocumentModule = class RegisterDocumentModule {
|
|
@@ -3613,9 +3496,101 @@ WmsModule = __decorate([
|
|
|
3613
3496
|
__metadata("design:paramtypes", [IntegrationDispatcher])
|
|
3614
3497
|
], WmsModule);
|
|
3615
3498
|
|
|
3499
|
+
class EntityService$1 {
|
|
3500
|
+
constructor(http, messageService, entityUrl, actionsUrl) {
|
|
3501
|
+
this.http = http;
|
|
3502
|
+
this.messageService = messageService;
|
|
3503
|
+
this.entityUrl = entityUrl;
|
|
3504
|
+
this.actionsUrl = actionsUrl;
|
|
3505
|
+
this.http = http;
|
|
3506
|
+
this.messageService = messageService;
|
|
3507
|
+
this.entityUrl = entityUrl;
|
|
3508
|
+
this.actionsUrl = actionsUrl;
|
|
3509
|
+
this.defaultCatch = this.defaultCatch.bind(this);
|
|
3510
|
+
}
|
|
3511
|
+
getListQueryParams(listParams) {
|
|
3512
|
+
const { page = 0, size = 10, sort = [], filterQuery = "", displayFields = [] } = listParams;
|
|
3513
|
+
let params = new HttpParams();
|
|
3514
|
+
params = params.append("size", String(size));
|
|
3515
|
+
params = params.append("offset", String(page));
|
|
3516
|
+
if (sort && sort.length) {
|
|
3517
|
+
params = params.append("orderby", sort
|
|
3518
|
+
.map(s => {
|
|
3519
|
+
let order = "";
|
|
3520
|
+
if (s.order === 1)
|
|
3521
|
+
order = " asc";
|
|
3522
|
+
else if (s.order === -1)
|
|
3523
|
+
order = " desc";
|
|
3524
|
+
return `${s.field}${order}`;
|
|
3525
|
+
})
|
|
3526
|
+
.join(", "));
|
|
3527
|
+
}
|
|
3528
|
+
if (filterQuery)
|
|
3529
|
+
params = params.append("filter", filterQuery);
|
|
3530
|
+
if (displayFields && displayFields.length)
|
|
3531
|
+
params = params.append("displayfields", displayFields.join());
|
|
3532
|
+
return params;
|
|
3533
|
+
}
|
|
3534
|
+
getBodyParams(listParams) {
|
|
3535
|
+
const { page = 0, size = 10, sort = [], filterQuery = "", displayFields = [] } = listParams;
|
|
3536
|
+
const bodyParams = {};
|
|
3537
|
+
bodyParams.size = size;
|
|
3538
|
+
bodyParams.offset = page;
|
|
3539
|
+
if (sort && sort.length) {
|
|
3540
|
+
bodyParams.orderBy = sort
|
|
3541
|
+
.map(s => {
|
|
3542
|
+
let order = "";
|
|
3543
|
+
if (s.order === 1)
|
|
3544
|
+
order = " asc";
|
|
3545
|
+
else if (s.order === -1)
|
|
3546
|
+
order = " desc";
|
|
3547
|
+
return `${s.field}${order}`;
|
|
3548
|
+
})
|
|
3549
|
+
.join(", ");
|
|
3550
|
+
}
|
|
3551
|
+
if (filterQuery)
|
|
3552
|
+
bodyParams.filter = filterQuery;
|
|
3553
|
+
if (displayFields && displayFields.length)
|
|
3554
|
+
bodyParams.displayfields = displayFields.join();
|
|
3555
|
+
return bodyParams;
|
|
3556
|
+
}
|
|
3557
|
+
defaultCatch() {
|
|
3558
|
+
return catchError((err) => {
|
|
3559
|
+
if (err) {
|
|
3560
|
+
const summary = err.status ? String(err.status) : "Error";
|
|
3561
|
+
const detail = (err.error && err.error.message) || err.statusText || err.message || "Error";
|
|
3562
|
+
this.messageService.add({
|
|
3563
|
+
severity: "error",
|
|
3564
|
+
summary,
|
|
3565
|
+
detail,
|
|
3566
|
+
});
|
|
3567
|
+
}
|
|
3568
|
+
return throwError(err);
|
|
3569
|
+
});
|
|
3570
|
+
}
|
|
3571
|
+
list(listParams) {
|
|
3572
|
+
return this.http.get(this.entityUrl, { params: this.getListQueryParams(listParams) }).pipe(this.defaultCatch());
|
|
3573
|
+
}
|
|
3574
|
+
get(id) {
|
|
3575
|
+
return this.http.get(`${this.entityUrl}/${id}`).pipe(this.defaultCatch());
|
|
3576
|
+
}
|
|
3577
|
+
insert(entity) {
|
|
3578
|
+
return this.http.post(`${this.entityUrl}`, entity).pipe(this.defaultCatch());
|
|
3579
|
+
}
|
|
3580
|
+
update(id, entity) {
|
|
3581
|
+
return this.http.put(`${this.entityUrl}/${id}`, entity).pipe(this.defaultCatch());
|
|
3582
|
+
}
|
|
3583
|
+
delete(id) {
|
|
3584
|
+
return this.http.delete(`${this.entityUrl}/${id}`).pipe(this.defaultCatch());
|
|
3585
|
+
}
|
|
3586
|
+
listCustomFilter(listParams, action) {
|
|
3587
|
+
return this.http.post(`${this.actionsUrl}/${action}`, this.getBodyParams(listParams)).pipe(this.defaultCatch());
|
|
3588
|
+
}
|
|
3589
|
+
}
|
|
3590
|
+
|
|
3616
3591
|
const ERP_ENVIRONMENT = new InjectionToken('integration_environment');
|
|
3617
3592
|
|
|
3618
|
-
let AgendaService
|
|
3593
|
+
let AgendaService = class AgendaService extends EntityService$1 {
|
|
3619
3594
|
constructor(http, messageService, environment) {
|
|
3620
3595
|
super(http, messageService, `${environment.project.domain}/${environment.project.service}/entities/agenda`, `${environment.project.domain}/${environment.project.service}/actions`);
|
|
3621
3596
|
this.http = http;
|
|
@@ -3639,12 +3614,12 @@ let AgendaService$1 = class AgendaService extends EntityService$1 {
|
|
|
3639
3614
|
.pipe(this.defaultCatch());
|
|
3640
3615
|
}
|
|
3641
3616
|
};
|
|
3642
|
-
AgendaService
|
|
3617
|
+
AgendaService = __decorate([
|
|
3643
3618
|
Injectable(),
|
|
3644
3619
|
__param(2, Inject(ERP_ENVIRONMENT)),
|
|
3645
3620
|
__metadata("design:paramtypes", [HttpClient,
|
|
3646
3621
|
MessageService$1, Object])
|
|
3647
|
-
], AgendaService
|
|
3622
|
+
], AgendaService);
|
|
3648
3623
|
|
|
3649
3624
|
/*{CA:PROJECT_IMPORTS:START}*/
|
|
3650
3625
|
/*{CA:PROJECT_IMPORTS:END}*/
|
|
@@ -3706,7 +3681,7 @@ let RecebimentoChegadaVeiculoOverride = class RecebimentoChegadaVeiculoOverride
|
|
|
3706
3681
|
RecebimentoChegadaVeiculoOverride = __decorate([
|
|
3707
3682
|
Injectable(),
|
|
3708
3683
|
__metadata("design:paramtypes", [ChegadaVeiculoOverride,
|
|
3709
|
-
AgendaService
|
|
3684
|
+
AgendaService,
|
|
3710
3685
|
RecebimentoContratoService])
|
|
3711
3686
|
], RecebimentoChegadaVeiculoOverride);
|
|
3712
3687
|
|
|
@@ -3761,7 +3736,7 @@ let ExpedicaoChegadaVeiculoOverride = class ExpedicaoChegadaVeiculoOverride {
|
|
|
3761
3736
|
ExpedicaoChegadaVeiculoOverride = __decorate([
|
|
3762
3737
|
Injectable(),
|
|
3763
3738
|
__metadata("design:paramtypes", [ChegadaVeiculoOverride,
|
|
3764
|
-
AgendaService
|
|
3739
|
+
AgendaService,
|
|
3765
3740
|
ExpedicaoService])
|
|
3766
3741
|
], ExpedicaoChegadaVeiculoOverride);
|
|
3767
3742
|
|
|
@@ -4760,7 +4735,7 @@ AgendaModule = __decorate([
|
|
|
4760
4735
|
]),
|
|
4761
4736
|
],
|
|
4762
4737
|
providers: [
|
|
4763
|
-
AgendaService
|
|
4738
|
+
AgendaService,
|
|
4764
4739
|
],
|
|
4765
4740
|
declarations: [
|
|
4766
4741
|
/*{CA:MODULE_DECLARATIONS:START}*/
|
|
@@ -6442,7 +6417,7 @@ let DevolucaoChegadaVeiculoOverride = class DevolucaoChegadaVeiculoOverride {
|
|
|
6442
6417
|
DevolucaoChegadaVeiculoOverride = __decorate([
|
|
6443
6418
|
Injectable(),
|
|
6444
6419
|
__metadata("design:paramtypes", [ChegadaVeiculoOverride,
|
|
6445
|
-
AgendaService
|
|
6420
|
+
AgendaService,
|
|
6446
6421
|
DevolucaoService])
|
|
6447
6422
|
], DevolucaoChegadaVeiculoOverride);
|
|
6448
6423
|
|
|
@@ -7341,7 +7316,7 @@ DevolucaoFormComponent = __decorate([
|
|
|
7341
7316
|
ActivatedRoute,
|
|
7342
7317
|
DevolucaoChegadaVeiculoOverride,
|
|
7343
7318
|
ConfirmationService,
|
|
7344
|
-
AgendaService
|
|
7319
|
+
AgendaService,
|
|
7345
7320
|
ErpProcessService,
|
|
7346
7321
|
ErpFormConfigService,
|
|
7347
7322
|
HasChangeService])
|
|
@@ -8883,7 +8858,7 @@ ExpedicaoFormComponent = __decorate([
|
|
|
8883
8858
|
TransportadoraService,
|
|
8884
8859
|
PedidoVendaService,
|
|
8885
8860
|
PedidoVendaItemService,
|
|
8886
|
-
AgendaService
|
|
8861
|
+
AgendaService,
|
|
8887
8862
|
ExpedicaoChegadaVeiculoOverride,
|
|
8888
8863
|
ConfirmationService,
|
|
8889
8864
|
ErpProcessService,
|
|
@@ -9163,7 +9138,7 @@ let ProcessoAvulsoChegadaVeiculoOverride = class ProcessoAvulsoChegadaVeiculoOve
|
|
|
9163
9138
|
ProcessoAvulsoChegadaVeiculoOverride = __decorate([
|
|
9164
9139
|
Injectable(),
|
|
9165
9140
|
__metadata("design:paramtypes", [ChegadaVeiculoOverride,
|
|
9166
|
-
AgendaService
|
|
9141
|
+
AgendaService,
|
|
9167
9142
|
ProcessoAvulsoService])
|
|
9168
9143
|
], ProcessoAvulsoChegadaVeiculoOverride);
|
|
9169
9144
|
|
|
@@ -9443,7 +9418,7 @@ ProcessoAvulsoFormComponent = __decorate([
|
|
|
9443
9418
|
ProcessoAvulsoChegadaVeiculoOverride,
|
|
9444
9419
|
TranslateService,
|
|
9445
9420
|
ConfirmationService,
|
|
9446
|
-
AgendaService
|
|
9421
|
+
AgendaService,
|
|
9447
9422
|
ErpProcessService,
|
|
9448
9423
|
ErpFormConfigService,
|
|
9449
9424
|
HasChangeService])
|
|
@@ -9626,7 +9601,7 @@ let RecebimentoOrdemCompraChegadaVeiculoOverride = class RecebimentoOrdemCompraC
|
|
|
9626
9601
|
RecebimentoOrdemCompraChegadaVeiculoOverride = __decorate([
|
|
9627
9602
|
Injectable(),
|
|
9628
9603
|
__metadata("design:paramtypes", [ChegadaVeiculoOverride,
|
|
9629
|
-
AgendaService
|
|
9604
|
+
AgendaService,
|
|
9630
9605
|
RecebimentoOrdemCompraService])
|
|
9631
9606
|
], RecebimentoOrdemCompraChegadaVeiculoOverride);
|
|
9632
9607
|
|
|
@@ -10725,7 +10700,7 @@ RecebimentoOrdemCompraFormComponent = __decorate([
|
|
|
10725
10700
|
NotaValidatorService,
|
|
10726
10701
|
ConfirmationService,
|
|
10727
10702
|
DialogService,
|
|
10728
|
-
AgendaService
|
|
10703
|
+
AgendaService,
|
|
10729
10704
|
ErpProcessService,
|
|
10730
10705
|
ErpFormConfigService,
|
|
10731
10706
|
VerificaNotafiscal,
|
|
@@ -12994,7 +12969,7 @@ RecebimentoFormComponent = __decorate([
|
|
|
12994
12969
|
NotaValidatorService,
|
|
12995
12970
|
TransgeniaService,
|
|
12996
12971
|
DialogService,
|
|
12997
|
-
AgendaService
|
|
12972
|
+
AgendaService,
|
|
12998
12973
|
ErpProcessService,
|
|
12999
12974
|
ErpFormConfigService,
|
|
13000
12975
|
VerificaNotafiscal,
|
|
@@ -13226,5 +13201,5 @@ DockModule = __decorate([
|
|
|
13226
13201
|
})
|
|
13227
13202
|
], DockModule);
|
|
13228
13203
|
|
|
13229
|
-
export { AgendaModule, AgendaService
|
|
13204
|
+
export { AgendaModule, AgendaService, BalancaModule, BalancasService, CamerasModule, CamerasService, CancelasModule, CidadeModule, CidadeService, ContratoCompraItemModule, ContratoCompraItemService, ContratoCompraModule, ContratoCompraService, ControladorCancelaComponent, ControladorCancelaDescritor, ControladorCancelasService, CoreModule, DockModule, DockService, ERP_ENVIRONMENT, ERP_SENIOR_HEADER, EmpresaModule, EmpresaService, ErpFormConfigService, ErpProcessData, ErpProcessService, ErpSeniorModule, EstadoModule, EstadoService, ExpedicaoChegadaVeiculoOverride, ExpedicaoModule, ExpedicaoService, FamiliaProdutoModule, FamiliaProdutoService, FieldCustomizationService, FilialModule, FilialService, FormComponent, FormDescritor, FormSamComponent, FormSamDescritor, FormWmsComponent, FormWmsDescritor, HasChangeService, INFORMACAOES_ADICIONAIS_HEADER, InfoComponent, InfoDescritor, IntegrationWebSocket, LogsModule, LogsService, LprModule, LprService, PaisModule, PaisService, PedidoVendaItemModule, PedidoVendaItemService, PedidoVendaModule, PedidoVendaService, PessoaEnderecoModule, PessoaEnderecoService, PessoaFisicaModule, PessoaFisicaService, PessoaJuridicaModule, PessoaJuridicaService, PessoaModule, PessoaService, PortariasComponent, PortariasDescritor, PortariasModule, ProdutoModule, ProdutoService, RecebimentoChegadaVeiculoOverride, RecebimentoContratoModule, RecebimentoContratoService, RoyaltyModule, RoyaltyService, SAM_SENIOR_HEADER, SafraModule, SafraService, SamSeniorModule, SnapshotComponent, SnapshotDescritor, TransportadoraModule, TransportadoraService, UnidadeMedidaModule, UnidadeMedidaService, VisitorListComponent, VisitorListModule, VisitorListService, VisualizarBalancaComponent, VisualizarBalancaDescritor, WmsModule, highlightLanguages, Service as ɵa, CustomStompConfig as ɵb, RegisterDocumentComponent as ɵba, InsertKeyModule as ɵbb, InsertKeyComponent as ɵbc, EntityService$1 as ɵbd, IntegrationService$1 as ɵbe, RecebimentoFormComponent as ɵbf, DerivacaoService as ɵbg, NotaValidatorService as ɵbh, TransgeniaService as ɵbi, VerificaNotafiscal as ɵbj, BuildFormField as ɵbk, ExpedicaoFormComponent as ɵbl, ExpedicaoInfoComponent as ɵbm, RecebimentoInfoComponent as ɵbn, DevolucaoFormComponent as ɵbo, DevolucaoService as ɵbp, DevolucaoChegadaVeiculoOverride as ɵbq, RecebimentoOrdemCompraFormComponent as ɵbr, OrdemCompraService as ɵbs, RecebimentoOrdemCompraService as ɵbt, RecebimentoOrdemCompraChegadaVeiculoOverride as ɵbu, RecebimentoOrdemCompraInfoComponent as ɵbv, DevolucaoInfoComponent as ɵbw, ContratoFormComponent as ɵbx, OrdemCompraFormComponent as ɵby, ProcessoAvulsoFormComponent as ɵbz, ViewImageComponent as ɵc, ProcessoAvulsoService as ɵca, ProcessoAvulsoChegadaVeiculoOverride as ɵcb, ProcessoAvulsoInfoComponent as ɵcc, LogIntegracaoDescritor as ɵcd, LogIntegracaoComponent as ɵce, LogIntegracaoService as ɵcf, DerivacaoModule as ɵcg, DevolucaoModule as ɵch, OrdemCompraModule as ɵci, RecebimentoOrdemCompraModule as ɵcj, TransgeniaModule as ɵck, ProcessoAvulsoModule as ɵcl, LogIntegracaoModule as ɵcm, NotaFormModule as ɵcn, DirectivesModule as ɵco, TrimDirective as ɵcp, NotaFormComponent as ɵcq, LogDescritor as ɵd, LogsComponent as ɵe, PortariasService as ɵf, EntradaComponent as ɵg, AgendasComponent as ɵh, ConfirmacaoComponent as ɵi, VisitedInfoDescritor as ɵj, VisitedInfoComponent as ɵk, VisitedInfoService as ɵl, SchedulingComponent as ɵm, LobbyService as ɵn, EntityService as ɵo, SchedulingService as ɵp, VisitanteComponent as ɵq, VisitanteFormComponent as ɵr, CredencialFormComponent as ɵs, FocusService as ɵt, FormWmsService as ɵu, DocumentGridModule as ɵv, DocumentGridComponent as ɵw, DocumentService as ɵx, IntegrationService as ɵy, RegisterDocumentModule as ɵz };
|
|
13230
13205
|
//# sourceMappingURL=seniorsistemas-yms-integration.js.map
|