@seniorsistemas/yms-integration 1.27.2 → 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 +151 -188
- 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 +2 -2
- 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 +2 -2
- package/esm5/src/wms/components/document-grid/register-document/register-document.component.js +3 -15
- package/fesm2015/seniorsistemas-yms-integration.js +110 -136
- package/fesm2015/seniorsistemas-yms-integration.js.map +1 -1
- package/fesm5/seniorsistemas-yms-integration.js +110 -145
- 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/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
|
@@ -3209,7 +3209,7 @@ var DocumentGridComponent = /** @class */ (function () {
|
|
|
3209
3209
|
}
|
|
3210
3210
|
};
|
|
3211
3211
|
DocumentGridComponent.prototype.updateKeyByWms = function (data) {
|
|
3212
|
-
if (data.key
|
|
3212
|
+
if (!data.key) {
|
|
3213
3213
|
data.key = data.invoiceKey;
|
|
3214
3214
|
}
|
|
3215
3215
|
if (this.wmsSystem === WmsSystem.WIS) {
|
|
@@ -3387,130 +3387,11 @@ var Document = /** @class */ (function () {
|
|
|
3387
3387
|
return Document;
|
|
3388
3388
|
}());
|
|
3389
3389
|
|
|
3390
|
-
var EntityService$1 = /** @class */ (function () {
|
|
3391
|
-
function EntityService(http, messageService, entityUrl, actionsUrl) {
|
|
3392
|
-
this.http = http;
|
|
3393
|
-
this.messageService = messageService;
|
|
3394
|
-
this.entityUrl = entityUrl;
|
|
3395
|
-
this.actionsUrl = actionsUrl;
|
|
3396
|
-
this.http = http;
|
|
3397
|
-
this.messageService = messageService;
|
|
3398
|
-
this.entityUrl = entityUrl;
|
|
3399
|
-
this.actionsUrl = actionsUrl;
|
|
3400
|
-
this.defaultCatch = this.defaultCatch.bind(this);
|
|
3401
|
-
}
|
|
3402
|
-
EntityService.prototype.getListQueryParams = function (listParams) {
|
|
3403
|
-
var _a = listParams.page, page = _a === void 0 ? 0 : _a, _b = listParams.size, size = _b === void 0 ? 10 : _b, _c = listParams.sort, sort = _c === void 0 ? [] : _c, _d = listParams.filterQuery, filterQuery = _d === void 0 ? "" : _d, _e = listParams.displayFields, displayFields = _e === void 0 ? [] : _e;
|
|
3404
|
-
var params = new HttpParams();
|
|
3405
|
-
params = params.append("size", String(size));
|
|
3406
|
-
params = params.append("offset", String(page));
|
|
3407
|
-
if (sort && sort.length) {
|
|
3408
|
-
params = params.append("orderby", sort
|
|
3409
|
-
.map(function (s) {
|
|
3410
|
-
var order = "";
|
|
3411
|
-
if (s.order === 1)
|
|
3412
|
-
order = " asc";
|
|
3413
|
-
else if (s.order === -1)
|
|
3414
|
-
order = " desc";
|
|
3415
|
-
return "" + s.field + order;
|
|
3416
|
-
})
|
|
3417
|
-
.join(", "));
|
|
3418
|
-
}
|
|
3419
|
-
if (filterQuery)
|
|
3420
|
-
params = params.append("filter", filterQuery);
|
|
3421
|
-
if (displayFields && displayFields.length)
|
|
3422
|
-
params = params.append("displayfields", displayFields.join());
|
|
3423
|
-
return params;
|
|
3424
|
-
};
|
|
3425
|
-
EntityService.prototype.getBodyParams = function (listParams) {
|
|
3426
|
-
var _a = listParams.page, page = _a === void 0 ? 0 : _a, _b = listParams.size, size = _b === void 0 ? 10 : _b, _c = listParams.sort, sort = _c === void 0 ? [] : _c, _d = listParams.filterQuery, filterQuery = _d === void 0 ? "" : _d, _e = listParams.displayFields, displayFields = _e === void 0 ? [] : _e;
|
|
3427
|
-
var bodyParams = {};
|
|
3428
|
-
bodyParams.size = size;
|
|
3429
|
-
bodyParams.offset = page;
|
|
3430
|
-
if (sort && sort.length) {
|
|
3431
|
-
bodyParams.orderBy = sort
|
|
3432
|
-
.map(function (s) {
|
|
3433
|
-
var order = "";
|
|
3434
|
-
if (s.order === 1)
|
|
3435
|
-
order = " asc";
|
|
3436
|
-
else if (s.order === -1)
|
|
3437
|
-
order = " desc";
|
|
3438
|
-
return "" + s.field + order;
|
|
3439
|
-
})
|
|
3440
|
-
.join(", ");
|
|
3441
|
-
}
|
|
3442
|
-
if (filterQuery)
|
|
3443
|
-
bodyParams.filter = filterQuery;
|
|
3444
|
-
if (displayFields && displayFields.length)
|
|
3445
|
-
bodyParams.displayfields = displayFields.join();
|
|
3446
|
-
return bodyParams;
|
|
3447
|
-
};
|
|
3448
|
-
EntityService.prototype.defaultCatch = function () {
|
|
3449
|
-
var _this = this;
|
|
3450
|
-
return catchError(function (err) {
|
|
3451
|
-
if (err) {
|
|
3452
|
-
var summary = err.status ? String(err.status) : "Error";
|
|
3453
|
-
var detail = (err.error && err.error.message) || err.statusText || err.message || "Error";
|
|
3454
|
-
_this.messageService.add({
|
|
3455
|
-
severity: "error",
|
|
3456
|
-
summary: summary,
|
|
3457
|
-
detail: detail,
|
|
3458
|
-
});
|
|
3459
|
-
}
|
|
3460
|
-
return throwError(err);
|
|
3461
|
-
});
|
|
3462
|
-
};
|
|
3463
|
-
EntityService.prototype.list = function (listParams) {
|
|
3464
|
-
return this.http.get(this.entityUrl, { params: this.getListQueryParams(listParams) }).pipe(this.defaultCatch());
|
|
3465
|
-
};
|
|
3466
|
-
EntityService.prototype.get = function (id) {
|
|
3467
|
-
return this.http.get(this.entityUrl + "/" + id).pipe(this.defaultCatch());
|
|
3468
|
-
};
|
|
3469
|
-
EntityService.prototype.insert = function (entity) {
|
|
3470
|
-
return this.http.post("" + this.entityUrl, entity).pipe(this.defaultCatch());
|
|
3471
|
-
};
|
|
3472
|
-
EntityService.prototype.update = function (id, entity) {
|
|
3473
|
-
return this.http.put(this.entityUrl + "/" + id, entity).pipe(this.defaultCatch());
|
|
3474
|
-
};
|
|
3475
|
-
EntityService.prototype.delete = function (id) {
|
|
3476
|
-
return this.http.delete(this.entityUrl + "/" + id).pipe(this.defaultCatch());
|
|
3477
|
-
};
|
|
3478
|
-
EntityService.prototype.listCustomFilter = function (listParams, action) {
|
|
3479
|
-
return this.http.post(this.actionsUrl + "/" + action, this.getBodyParams(listParams)).pipe(this.defaultCatch());
|
|
3480
|
-
};
|
|
3481
|
-
return EntityService;
|
|
3482
|
-
}());
|
|
3483
|
-
|
|
3484
|
-
var EntityService$2 = /** @class */ (function (_super) {
|
|
3485
|
-
__extends(EntityService, _super);
|
|
3486
|
-
function EntityService() {
|
|
3487
|
-
return _super !== null && _super.apply(this, arguments) || this;
|
|
3488
|
-
}
|
|
3489
|
-
return EntityService;
|
|
3490
|
-
}(EntityService$1));
|
|
3491
|
-
|
|
3492
|
-
var AgendaService = /** @class */ (function (_super) {
|
|
3493
|
-
__extends(AgendaService, _super);
|
|
3494
|
-
function AgendaService(http, messageService) {
|
|
3495
|
-
var _this = _super.call(this, http, messageService, 'yms/agenda/entities/agenda', '') || this;
|
|
3496
|
-
_this.http = http;
|
|
3497
|
-
_this.messageService = messageService;
|
|
3498
|
-
return _this;
|
|
3499
|
-
}
|
|
3500
|
-
AgendaService.ngInjectableDef = defineInjectable({ factory: function AgendaService_Factory() { return new AgendaService(inject(HttpClient), inject(MessageService$1)); }, token: AgendaService, providedIn: "root" });
|
|
3501
|
-
AgendaService = __decorate([
|
|
3502
|
-
Injectable({ providedIn: 'root' }),
|
|
3503
|
-
__metadata("design:paramtypes", [HttpClient, MessageService$1])
|
|
3504
|
-
], AgendaService);
|
|
3505
|
-
return AgendaService;
|
|
3506
|
-
}(EntityService$2));
|
|
3507
|
-
|
|
3508
3390
|
var RegisterDocumentComponent = /** @class */ (function () {
|
|
3509
|
-
function RegisterDocumentComponent(fb, messageService, translateService
|
|
3391
|
+
function RegisterDocumentComponent(fb, messageService, translateService) {
|
|
3510
3392
|
this.fb = fb;
|
|
3511
3393
|
this.messageService = messageService;
|
|
3512
3394
|
this.translateService = translateService;
|
|
3513
|
-
this.agendaService = agendaService;
|
|
3514
3395
|
this.document = new EventEmitter();
|
|
3515
3396
|
this.visible = new EventEmitter();
|
|
3516
3397
|
this.visibleChange = new EventEmitter();
|
|
@@ -3525,13 +3406,11 @@ var RegisterDocumentComponent = /** @class */ (function () {
|
|
|
3525
3406
|
if (!this.edit && this.visible) {
|
|
3526
3407
|
this.formGroup.disable();
|
|
3527
3408
|
this.setValuesFormGroup(this.viewDocument[0]);
|
|
3528
|
-
this.setValueForPartner();
|
|
3529
3409
|
this.hideSaveButton = true;
|
|
3530
3410
|
return this.visible;
|
|
3531
3411
|
}
|
|
3532
3412
|
if (this.formGroup !== undefined) {
|
|
3533
3413
|
this.formGroup.enable();
|
|
3534
|
-
this.setValueForPartner();
|
|
3535
3414
|
this.hideSaveButton = false;
|
|
3536
3415
|
}
|
|
3537
3416
|
};
|
|
@@ -3551,13 +3430,6 @@ var RegisterDocumentComponent = /** @class */ (function () {
|
|
|
3551
3430
|
this.formGroup.get('ownerDocument').setValue(document.ownerDocument);
|
|
3552
3431
|
this.formGroup.get('ownerName').setValue(document.ownerName);
|
|
3553
3432
|
};
|
|
3554
|
-
RegisterDocumentComponent.prototype.setValueForPartner = function () {
|
|
3555
|
-
var _this = this;
|
|
3556
|
-
this.agendaService.get(this.agenda.id).subscribe(function (agenda) {
|
|
3557
|
-
_this.formGroup.get('partnerName').setValue(agenda.externalTenant.descricao);
|
|
3558
|
-
_this.formGroup.get('partnerDocument').setValue(agenda.externalTenant.cnpj);
|
|
3559
|
-
});
|
|
3560
|
-
};
|
|
3561
3433
|
RegisterDocumentComponent.prototype.getFormGroup = function () {
|
|
3562
3434
|
this.formGroup = this.fb.group({
|
|
3563
3435
|
key: [undefined, Validators.required],
|
|
@@ -3640,8 +3512,7 @@ var RegisterDocumentComponent = /** @class */ (function () {
|
|
|
3640
3512
|
}),
|
|
3641
3513
|
__metadata("design:paramtypes", [FormBuilder,
|
|
3642
3514
|
MessageService,
|
|
3643
|
-
TranslateService
|
|
3644
|
-
AgendaService])
|
|
3515
|
+
TranslateService])
|
|
3645
3516
|
], RegisterDocumentComponent);
|
|
3646
3517
|
return RegisterDocumentComponent;
|
|
3647
3518
|
}());
|
|
@@ -3859,9 +3730,103 @@ var WmsModule = /** @class */ (function () {
|
|
|
3859
3730
|
return WmsModule;
|
|
3860
3731
|
}());
|
|
3861
3732
|
|
|
3733
|
+
var EntityService$1 = /** @class */ (function () {
|
|
3734
|
+
function EntityService(http, messageService, entityUrl, actionsUrl) {
|
|
3735
|
+
this.http = http;
|
|
3736
|
+
this.messageService = messageService;
|
|
3737
|
+
this.entityUrl = entityUrl;
|
|
3738
|
+
this.actionsUrl = actionsUrl;
|
|
3739
|
+
this.http = http;
|
|
3740
|
+
this.messageService = messageService;
|
|
3741
|
+
this.entityUrl = entityUrl;
|
|
3742
|
+
this.actionsUrl = actionsUrl;
|
|
3743
|
+
this.defaultCatch = this.defaultCatch.bind(this);
|
|
3744
|
+
}
|
|
3745
|
+
EntityService.prototype.getListQueryParams = function (listParams) {
|
|
3746
|
+
var _a = listParams.page, page = _a === void 0 ? 0 : _a, _b = listParams.size, size = _b === void 0 ? 10 : _b, _c = listParams.sort, sort = _c === void 0 ? [] : _c, _d = listParams.filterQuery, filterQuery = _d === void 0 ? "" : _d, _e = listParams.displayFields, displayFields = _e === void 0 ? [] : _e;
|
|
3747
|
+
var params = new HttpParams();
|
|
3748
|
+
params = params.append("size", String(size));
|
|
3749
|
+
params = params.append("offset", String(page));
|
|
3750
|
+
if (sort && sort.length) {
|
|
3751
|
+
params = params.append("orderby", sort
|
|
3752
|
+
.map(function (s) {
|
|
3753
|
+
var order = "";
|
|
3754
|
+
if (s.order === 1)
|
|
3755
|
+
order = " asc";
|
|
3756
|
+
else if (s.order === -1)
|
|
3757
|
+
order = " desc";
|
|
3758
|
+
return "" + s.field + order;
|
|
3759
|
+
})
|
|
3760
|
+
.join(", "));
|
|
3761
|
+
}
|
|
3762
|
+
if (filterQuery)
|
|
3763
|
+
params = params.append("filter", filterQuery);
|
|
3764
|
+
if (displayFields && displayFields.length)
|
|
3765
|
+
params = params.append("displayfields", displayFields.join());
|
|
3766
|
+
return params;
|
|
3767
|
+
};
|
|
3768
|
+
EntityService.prototype.getBodyParams = function (listParams) {
|
|
3769
|
+
var _a = listParams.page, page = _a === void 0 ? 0 : _a, _b = listParams.size, size = _b === void 0 ? 10 : _b, _c = listParams.sort, sort = _c === void 0 ? [] : _c, _d = listParams.filterQuery, filterQuery = _d === void 0 ? "" : _d, _e = listParams.displayFields, displayFields = _e === void 0 ? [] : _e;
|
|
3770
|
+
var bodyParams = {};
|
|
3771
|
+
bodyParams.size = size;
|
|
3772
|
+
bodyParams.offset = page;
|
|
3773
|
+
if (sort && sort.length) {
|
|
3774
|
+
bodyParams.orderBy = sort
|
|
3775
|
+
.map(function (s) {
|
|
3776
|
+
var order = "";
|
|
3777
|
+
if (s.order === 1)
|
|
3778
|
+
order = " asc";
|
|
3779
|
+
else if (s.order === -1)
|
|
3780
|
+
order = " desc";
|
|
3781
|
+
return "" + s.field + order;
|
|
3782
|
+
})
|
|
3783
|
+
.join(", ");
|
|
3784
|
+
}
|
|
3785
|
+
if (filterQuery)
|
|
3786
|
+
bodyParams.filter = filterQuery;
|
|
3787
|
+
if (displayFields && displayFields.length)
|
|
3788
|
+
bodyParams.displayfields = displayFields.join();
|
|
3789
|
+
return bodyParams;
|
|
3790
|
+
};
|
|
3791
|
+
EntityService.prototype.defaultCatch = function () {
|
|
3792
|
+
var _this = this;
|
|
3793
|
+
return catchError(function (err) {
|
|
3794
|
+
if (err) {
|
|
3795
|
+
var summary = err.status ? String(err.status) : "Error";
|
|
3796
|
+
var detail = (err.error && err.error.message) || err.statusText || err.message || "Error";
|
|
3797
|
+
_this.messageService.add({
|
|
3798
|
+
severity: "error",
|
|
3799
|
+
summary: summary,
|
|
3800
|
+
detail: detail,
|
|
3801
|
+
});
|
|
3802
|
+
}
|
|
3803
|
+
return throwError(err);
|
|
3804
|
+
});
|
|
3805
|
+
};
|
|
3806
|
+
EntityService.prototype.list = function (listParams) {
|
|
3807
|
+
return this.http.get(this.entityUrl, { params: this.getListQueryParams(listParams) }).pipe(this.defaultCatch());
|
|
3808
|
+
};
|
|
3809
|
+
EntityService.prototype.get = function (id) {
|
|
3810
|
+
return this.http.get(this.entityUrl + "/" + id).pipe(this.defaultCatch());
|
|
3811
|
+
};
|
|
3812
|
+
EntityService.prototype.insert = function (entity) {
|
|
3813
|
+
return this.http.post("" + this.entityUrl, entity).pipe(this.defaultCatch());
|
|
3814
|
+
};
|
|
3815
|
+
EntityService.prototype.update = function (id, entity) {
|
|
3816
|
+
return this.http.put(this.entityUrl + "/" + id, entity).pipe(this.defaultCatch());
|
|
3817
|
+
};
|
|
3818
|
+
EntityService.prototype.delete = function (id) {
|
|
3819
|
+
return this.http.delete(this.entityUrl + "/" + id).pipe(this.defaultCatch());
|
|
3820
|
+
};
|
|
3821
|
+
EntityService.prototype.listCustomFilter = function (listParams, action) {
|
|
3822
|
+
return this.http.post(this.actionsUrl + "/" + action, this.getBodyParams(listParams)).pipe(this.defaultCatch());
|
|
3823
|
+
};
|
|
3824
|
+
return EntityService;
|
|
3825
|
+
}());
|
|
3826
|
+
|
|
3862
3827
|
var ERP_ENVIRONMENT = new InjectionToken('integration_environment');
|
|
3863
3828
|
|
|
3864
|
-
var AgendaService
|
|
3829
|
+
var AgendaService = /** @class */ (function (_super) {
|
|
3865
3830
|
__extends(AgendaService, _super);
|
|
3866
3831
|
function AgendaService(http, messageService, environment) {
|
|
3867
3832
|
var _this = _super.call(this, http, messageService, environment.project.domain + "/" + environment.project.service + "/entities/agenda", environment.project.domain + "/" + environment.project.service + "/actions") || this;
|
|
@@ -3962,7 +3927,7 @@ var RecebimentoChegadaVeiculoOverride = /** @class */ (function () {
|
|
|
3962
3927
|
RecebimentoChegadaVeiculoOverride = __decorate([
|
|
3963
3928
|
Injectable(),
|
|
3964
3929
|
__metadata("design:paramtypes", [ChegadaVeiculoOverride,
|
|
3965
|
-
AgendaService
|
|
3930
|
+
AgendaService,
|
|
3966
3931
|
RecebimentoContratoService])
|
|
3967
3932
|
], RecebimentoChegadaVeiculoOverride);
|
|
3968
3933
|
return RecebimentoChegadaVeiculoOverride;
|
|
@@ -4026,7 +3991,7 @@ var ExpedicaoChegadaVeiculoOverride = /** @class */ (function () {
|
|
|
4026
3991
|
ExpedicaoChegadaVeiculoOverride = __decorate([
|
|
4027
3992
|
Injectable(),
|
|
4028
3993
|
__metadata("design:paramtypes", [ChegadaVeiculoOverride,
|
|
4029
|
-
AgendaService
|
|
3994
|
+
AgendaService,
|
|
4030
3995
|
ExpedicaoService])
|
|
4031
3996
|
], ExpedicaoChegadaVeiculoOverride);
|
|
4032
3997
|
return ExpedicaoChegadaVeiculoOverride;
|
|
@@ -5073,7 +5038,7 @@ var AgendaModule = /** @class */ (function () {
|
|
|
5073
5038
|
]),
|
|
5074
5039
|
],
|
|
5075
5040
|
providers: [
|
|
5076
|
-
AgendaService
|
|
5041
|
+
AgendaService,
|
|
5077
5042
|
],
|
|
5078
5043
|
declarations: [
|
|
5079
5044
|
/*{CA:MODULE_DECLARATIONS:START}*/
|
|
@@ -6940,7 +6905,7 @@ var DevolucaoChegadaVeiculoOverride = /** @class */ (function () {
|
|
|
6940
6905
|
DevolucaoChegadaVeiculoOverride = __decorate([
|
|
6941
6906
|
Injectable(),
|
|
6942
6907
|
__metadata("design:paramtypes", [ChegadaVeiculoOverride,
|
|
6943
|
-
AgendaService
|
|
6908
|
+
AgendaService,
|
|
6944
6909
|
DevolucaoService])
|
|
6945
6910
|
], DevolucaoChegadaVeiculoOverride);
|
|
6946
6911
|
return DevolucaoChegadaVeiculoOverride;
|
|
@@ -7905,7 +7870,7 @@ var DevolucaoFormComponent = /** @class */ (function () {
|
|
|
7905
7870
|
ActivatedRoute,
|
|
7906
7871
|
DevolucaoChegadaVeiculoOverride,
|
|
7907
7872
|
ConfirmationService,
|
|
7908
|
-
AgendaService
|
|
7873
|
+
AgendaService,
|
|
7909
7874
|
ErpProcessService,
|
|
7910
7875
|
ErpFormConfigService,
|
|
7911
7876
|
HasChangeService])
|
|
@@ -9486,7 +9451,7 @@ var ExpedicaoFormComponent = /** @class */ (function () {
|
|
|
9486
9451
|
TransportadoraService,
|
|
9487
9452
|
PedidoVendaService,
|
|
9488
9453
|
PedidoVendaItemService,
|
|
9489
|
-
AgendaService
|
|
9454
|
+
AgendaService,
|
|
9490
9455
|
ExpedicaoChegadaVeiculoOverride,
|
|
9491
9456
|
ConfirmationService,
|
|
9492
9457
|
ErpProcessService,
|
|
@@ -9767,7 +9732,7 @@ var ProcessoAvulsoChegadaVeiculoOverride = /** @class */ (function () {
|
|
|
9767
9732
|
ProcessoAvulsoChegadaVeiculoOverride = __decorate([
|
|
9768
9733
|
Injectable(),
|
|
9769
9734
|
__metadata("design:paramtypes", [ChegadaVeiculoOverride,
|
|
9770
|
-
AgendaService
|
|
9735
|
+
AgendaService,
|
|
9771
9736
|
ProcessoAvulsoService])
|
|
9772
9737
|
], ProcessoAvulsoChegadaVeiculoOverride);
|
|
9773
9738
|
return ProcessoAvulsoChegadaVeiculoOverride;
|
|
@@ -10073,7 +10038,7 @@ var ProcessoAvulsoFormComponent = /** @class */ (function () {
|
|
|
10073
10038
|
ProcessoAvulsoChegadaVeiculoOverride,
|
|
10074
10039
|
TranslateService,
|
|
10075
10040
|
ConfirmationService,
|
|
10076
|
-
AgendaService
|
|
10041
|
+
AgendaService,
|
|
10077
10042
|
ErpProcessService,
|
|
10078
10043
|
ErpFormConfigService,
|
|
10079
10044
|
HasChangeService])
|
|
@@ -10262,7 +10227,7 @@ var RecebimentoOrdemCompraChegadaVeiculoOverride = /** @class */ (function () {
|
|
|
10262
10227
|
RecebimentoOrdemCompraChegadaVeiculoOverride = __decorate([
|
|
10263
10228
|
Injectable(),
|
|
10264
10229
|
__metadata("design:paramtypes", [ChegadaVeiculoOverride,
|
|
10265
|
-
AgendaService
|
|
10230
|
+
AgendaService,
|
|
10266
10231
|
RecebimentoOrdemCompraService])
|
|
10267
10232
|
], RecebimentoOrdemCompraChegadaVeiculoOverride);
|
|
10268
10233
|
return RecebimentoOrdemCompraChegadaVeiculoOverride;
|
|
@@ -11443,7 +11408,7 @@ var RecebimentoOrdemCompraFormComponent = /** @class */ (function () {
|
|
|
11443
11408
|
NotaValidatorService,
|
|
11444
11409
|
ConfirmationService,
|
|
11445
11410
|
DialogService,
|
|
11446
|
-
AgendaService
|
|
11411
|
+
AgendaService,
|
|
11447
11412
|
ErpProcessService,
|
|
11448
11413
|
ErpFormConfigService,
|
|
11449
11414
|
VerificaNotafiscal,
|
|
@@ -13790,7 +13755,7 @@ var RecebimentoFormComponent = /** @class */ (function () {
|
|
|
13790
13755
|
NotaValidatorService,
|
|
13791
13756
|
TransgeniaService,
|
|
13792
13757
|
DialogService,
|
|
13793
|
-
AgendaService
|
|
13758
|
+
AgendaService,
|
|
13794
13759
|
ErpProcessService,
|
|
13795
13760
|
ErpFormConfigService,
|
|
13796
13761
|
VerificaNotafiscal,
|
|
@@ -13955,5 +13920,5 @@ var DockModule = /** @class */ (function () {
|
|
|
13955
13920
|
return DockModule;
|
|
13956
13921
|
}());
|
|
13957
13922
|
|
|
13958
|
-
export { AgendaModule, AgendaService
|
|
13923
|
+
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 };
|
|
13959
13924
|
//# sourceMappingURL=seniorsistemas-yms-integration.js.map
|