@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.
Files changed (25) hide show
  1. package/bundles/seniorsistemas-yms-integration.umd.js +154 -190
  2. package/bundles/seniorsistemas-yms-integration.umd.js.map +1 -1
  3. package/bundles/seniorsistemas-yms-integration.umd.min.js +1 -1
  4. package/bundles/seniorsistemas-yms-integration.umd.min.js.map +1 -1
  5. package/esm2015/seniorsistemas-yms-integration.js +41 -43
  6. package/esm2015/src/wms/components/document-grid/document-grid.component.js +5 -4
  7. package/esm2015/src/wms/components/document-grid/register-document/register-document.component.js +3 -14
  8. package/esm5/seniorsistemas-yms-integration.js +41 -43
  9. package/esm5/src/wms/components/document-grid/document-grid.component.js +5 -4
  10. package/esm5/src/wms/components/document-grid/register-document/register-document.component.js +3 -15
  11. package/fesm2015/seniorsistemas-yms-integration.js +113 -138
  12. package/fesm2015/seniorsistemas-yms-integration.js.map +1 -1
  13. package/fesm5/seniorsistemas-yms-integration.js +113 -147
  14. package/fesm5/seniorsistemas-yms-integration.js.map +1 -1
  15. package/package.json +1 -1
  16. package/seniorsistemas-yms-integration.d.ts +40 -42
  17. package/seniorsistemas-yms-integration.metadata.json +1 -1
  18. package/src/wms/components/document-grid/document-grid.component.d.ts +1 -1
  19. package/src/wms/components/document-grid/register-document/register-document.component.d.ts +1 -4
  20. package/esm2015/src/wms/entities/agenda/agenda.service.js +0 -22
  21. package/esm2015/src/wms/entities/entity-service.js +0 -4
  22. package/esm5/src/wms/entities/agenda/agenda.service.js +0 -25
  23. package/esm5/src/wms/entities/entity-service.js +0 -11
  24. package/src/wms/entities/agenda/agenda.service.d.ts +0 -9
  25. package/src/wms/entities/entity-service.d.ts +0 -3
@@ -3199,7 +3199,7 @@ var DocumentGridComponent = /** @class */ (function () {
3199
3199
  if (!data.schedulingId) {
3200
3200
  data.schedulingId = _this.agenda.id;
3201
3201
  }
3202
- _this.updateKey(data);
3202
+ data.key = _this.updateKeyByWms(data);
3203
3203
  _this.documentService.insert(data).subscribe(function () {
3204
3204
  _this.message("success", "saved_message_title", "saved_message_content");
3205
3205
  });
@@ -3208,13 +3208,14 @@ var DocumentGridComponent = /** @class */ (function () {
3208
3208
  });
3209
3209
  }
3210
3210
  };
3211
- DocumentGridComponent.prototype.updateKey = function (data) {
3212
- if (data.key === undefined) {
3211
+ DocumentGridComponent.prototype.updateKeyByWms = function (data) {
3212
+ if (!data.key) {
3213
3213
  data.key = data.invoiceKey;
3214
3214
  }
3215
3215
  if (this.wmsSystem === WmsSystem.WIS) {
3216
3216
  data.key = data.invoiceNumber + ":" + data.invoiceSerialNumber + ":" + data.partnerDocument;
3217
3217
  }
3218
+ return data.key;
3218
3219
  };
3219
3220
  DocumentGridComponent.prototype.onDelete = function () {
3220
3221
  var _this = this;
@@ -3386,130 +3387,11 @@ var Document = /** @class */ (function () {
3386
3387
  return Document;
3387
3388
  }());
3388
3389
 
3389
- var EntityService$1 = /** @class */ (function () {
3390
- function EntityService(http, messageService, entityUrl, actionsUrl) {
3391
- this.http = http;
3392
- this.messageService = messageService;
3393
- this.entityUrl = entityUrl;
3394
- this.actionsUrl = actionsUrl;
3395
- this.http = http;
3396
- this.messageService = messageService;
3397
- this.entityUrl = entityUrl;
3398
- this.actionsUrl = actionsUrl;
3399
- this.defaultCatch = this.defaultCatch.bind(this);
3400
- }
3401
- EntityService.prototype.getListQueryParams = function (listParams) {
3402
- 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;
3403
- var params = new HttpParams();
3404
- params = params.append("size", String(size));
3405
- params = params.append("offset", String(page));
3406
- if (sort && sort.length) {
3407
- params = params.append("orderby", sort
3408
- .map(function (s) {
3409
- var order = "";
3410
- if (s.order === 1)
3411
- order = " asc";
3412
- else if (s.order === -1)
3413
- order = " desc";
3414
- return "" + s.field + order;
3415
- })
3416
- .join(", "));
3417
- }
3418
- if (filterQuery)
3419
- params = params.append("filter", filterQuery);
3420
- if (displayFields && displayFields.length)
3421
- params = params.append("displayfields", displayFields.join());
3422
- return params;
3423
- };
3424
- EntityService.prototype.getBodyParams = function (listParams) {
3425
- 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;
3426
- var bodyParams = {};
3427
- bodyParams.size = size;
3428
- bodyParams.offset = page;
3429
- if (sort && sort.length) {
3430
- bodyParams.orderBy = sort
3431
- .map(function (s) {
3432
- var order = "";
3433
- if (s.order === 1)
3434
- order = " asc";
3435
- else if (s.order === -1)
3436
- order = " desc";
3437
- return "" + s.field + order;
3438
- })
3439
- .join(", ");
3440
- }
3441
- if (filterQuery)
3442
- bodyParams.filter = filterQuery;
3443
- if (displayFields && displayFields.length)
3444
- bodyParams.displayfields = displayFields.join();
3445
- return bodyParams;
3446
- };
3447
- EntityService.prototype.defaultCatch = function () {
3448
- var _this = this;
3449
- return catchError(function (err) {
3450
- if (err) {
3451
- var summary = err.status ? String(err.status) : "Error";
3452
- var detail = (err.error && err.error.message) || err.statusText || err.message || "Error";
3453
- _this.messageService.add({
3454
- severity: "error",
3455
- summary: summary,
3456
- detail: detail,
3457
- });
3458
- }
3459
- return throwError(err);
3460
- });
3461
- };
3462
- EntityService.prototype.list = function (listParams) {
3463
- return this.http.get(this.entityUrl, { params: this.getListQueryParams(listParams) }).pipe(this.defaultCatch());
3464
- };
3465
- EntityService.prototype.get = function (id) {
3466
- return this.http.get(this.entityUrl + "/" + id).pipe(this.defaultCatch());
3467
- };
3468
- EntityService.prototype.insert = function (entity) {
3469
- return this.http.post("" + this.entityUrl, entity).pipe(this.defaultCatch());
3470
- };
3471
- EntityService.prototype.update = function (id, entity) {
3472
- return this.http.put(this.entityUrl + "/" + id, entity).pipe(this.defaultCatch());
3473
- };
3474
- EntityService.prototype.delete = function (id) {
3475
- return this.http.delete(this.entityUrl + "/" + id).pipe(this.defaultCatch());
3476
- };
3477
- EntityService.prototype.listCustomFilter = function (listParams, action) {
3478
- return this.http.post(this.actionsUrl + "/" + action, this.getBodyParams(listParams)).pipe(this.defaultCatch());
3479
- };
3480
- return EntityService;
3481
- }());
3482
-
3483
- var EntityService$2 = /** @class */ (function (_super) {
3484
- __extends(EntityService, _super);
3485
- function EntityService() {
3486
- return _super !== null && _super.apply(this, arguments) || this;
3487
- }
3488
- return EntityService;
3489
- }(EntityService$1));
3490
-
3491
- var AgendaService = /** @class */ (function (_super) {
3492
- __extends(AgendaService, _super);
3493
- function AgendaService(http, messageService) {
3494
- var _this = _super.call(this, http, messageService, 'yms/agenda/entities/agenda', '') || this;
3495
- _this.http = http;
3496
- _this.messageService = messageService;
3497
- return _this;
3498
- }
3499
- AgendaService.ngInjectableDef = defineInjectable({ factory: function AgendaService_Factory() { return new AgendaService(inject(HttpClient), inject(MessageService$1)); }, token: AgendaService, providedIn: "root" });
3500
- AgendaService = __decorate([
3501
- Injectable({ providedIn: 'root' }),
3502
- __metadata("design:paramtypes", [HttpClient, MessageService$1])
3503
- ], AgendaService);
3504
- return AgendaService;
3505
- }(EntityService$2));
3506
-
3507
3390
  var RegisterDocumentComponent = /** @class */ (function () {
3508
- function RegisterDocumentComponent(fb, messageService, translateService, agendaService) {
3391
+ function RegisterDocumentComponent(fb, messageService, translateService) {
3509
3392
  this.fb = fb;
3510
3393
  this.messageService = messageService;
3511
3394
  this.translateService = translateService;
3512
- this.agendaService = agendaService;
3513
3395
  this.document = new EventEmitter();
3514
3396
  this.visible = new EventEmitter();
3515
3397
  this.visibleChange = new EventEmitter();
@@ -3524,13 +3406,11 @@ var RegisterDocumentComponent = /** @class */ (function () {
3524
3406
  if (!this.edit && this.visible) {
3525
3407
  this.formGroup.disable();
3526
3408
  this.setValuesFormGroup(this.viewDocument[0]);
3527
- this.setValueForPartner();
3528
3409
  this.hideSaveButton = true;
3529
3410
  return this.visible;
3530
3411
  }
3531
3412
  if (this.formGroup !== undefined) {
3532
3413
  this.formGroup.enable();
3533
- this.setValueForPartner();
3534
3414
  this.hideSaveButton = false;
3535
3415
  }
3536
3416
  };
@@ -3550,13 +3430,6 @@ var RegisterDocumentComponent = /** @class */ (function () {
3550
3430
  this.formGroup.get('ownerDocument').setValue(document.ownerDocument);
3551
3431
  this.formGroup.get('ownerName').setValue(document.ownerName);
3552
3432
  };
3553
- RegisterDocumentComponent.prototype.setValueForPartner = function () {
3554
- var _this = this;
3555
- this.agendaService.get(this.agenda.id).subscribe(function (agenda) {
3556
- _this.formGroup.get('partnerName').setValue(agenda.externalTenant.descricao);
3557
- _this.formGroup.get('partnerDocument').setValue(agenda.externalTenant.cnpj);
3558
- });
3559
- };
3560
3433
  RegisterDocumentComponent.prototype.getFormGroup = function () {
3561
3434
  this.formGroup = this.fb.group({
3562
3435
  key: [undefined, Validators.required],
@@ -3639,8 +3512,7 @@ var RegisterDocumentComponent = /** @class */ (function () {
3639
3512
  }),
3640
3513
  __metadata("design:paramtypes", [FormBuilder,
3641
3514
  MessageService,
3642
- TranslateService,
3643
- AgendaService])
3515
+ TranslateService])
3644
3516
  ], RegisterDocumentComponent);
3645
3517
  return RegisterDocumentComponent;
3646
3518
  }());
@@ -3858,9 +3730,103 @@ var WmsModule = /** @class */ (function () {
3858
3730
  return WmsModule;
3859
3731
  }());
3860
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
+
3861
3827
  var ERP_ENVIRONMENT = new InjectionToken('integration_environment');
3862
3828
 
3863
- var AgendaService$1 = /** @class */ (function (_super) {
3829
+ var AgendaService = /** @class */ (function (_super) {
3864
3830
  __extends(AgendaService, _super);
3865
3831
  function AgendaService(http, messageService, environment) {
3866
3832
  var _this = _super.call(this, http, messageService, environment.project.domain + "/" + environment.project.service + "/entities/agenda", environment.project.domain + "/" + environment.project.service + "/actions") || this;
@@ -3961,7 +3927,7 @@ var RecebimentoChegadaVeiculoOverride = /** @class */ (function () {
3961
3927
  RecebimentoChegadaVeiculoOverride = __decorate([
3962
3928
  Injectable(),
3963
3929
  __metadata("design:paramtypes", [ChegadaVeiculoOverride,
3964
- AgendaService$1,
3930
+ AgendaService,
3965
3931
  RecebimentoContratoService])
3966
3932
  ], RecebimentoChegadaVeiculoOverride);
3967
3933
  return RecebimentoChegadaVeiculoOverride;
@@ -4025,7 +3991,7 @@ var ExpedicaoChegadaVeiculoOverride = /** @class */ (function () {
4025
3991
  ExpedicaoChegadaVeiculoOverride = __decorate([
4026
3992
  Injectable(),
4027
3993
  __metadata("design:paramtypes", [ChegadaVeiculoOverride,
4028
- AgendaService$1,
3994
+ AgendaService,
4029
3995
  ExpedicaoService])
4030
3996
  ], ExpedicaoChegadaVeiculoOverride);
4031
3997
  return ExpedicaoChegadaVeiculoOverride;
@@ -5072,7 +5038,7 @@ var AgendaModule = /** @class */ (function () {
5072
5038
  ]),
5073
5039
  ],
5074
5040
  providers: [
5075
- AgendaService$1,
5041
+ AgendaService,
5076
5042
  ],
5077
5043
  declarations: [
5078
5044
  /*{CA:MODULE_DECLARATIONS:START}*/
@@ -6939,7 +6905,7 @@ var DevolucaoChegadaVeiculoOverride = /** @class */ (function () {
6939
6905
  DevolucaoChegadaVeiculoOverride = __decorate([
6940
6906
  Injectable(),
6941
6907
  __metadata("design:paramtypes", [ChegadaVeiculoOverride,
6942
- AgendaService$1,
6908
+ AgendaService,
6943
6909
  DevolucaoService])
6944
6910
  ], DevolucaoChegadaVeiculoOverride);
6945
6911
  return DevolucaoChegadaVeiculoOverride;
@@ -7904,7 +7870,7 @@ var DevolucaoFormComponent = /** @class */ (function () {
7904
7870
  ActivatedRoute,
7905
7871
  DevolucaoChegadaVeiculoOverride,
7906
7872
  ConfirmationService,
7907
- AgendaService$1,
7873
+ AgendaService,
7908
7874
  ErpProcessService,
7909
7875
  ErpFormConfigService,
7910
7876
  HasChangeService])
@@ -9485,7 +9451,7 @@ var ExpedicaoFormComponent = /** @class */ (function () {
9485
9451
  TransportadoraService,
9486
9452
  PedidoVendaService,
9487
9453
  PedidoVendaItemService,
9488
- AgendaService$1,
9454
+ AgendaService,
9489
9455
  ExpedicaoChegadaVeiculoOverride,
9490
9456
  ConfirmationService,
9491
9457
  ErpProcessService,
@@ -9766,7 +9732,7 @@ var ProcessoAvulsoChegadaVeiculoOverride = /** @class */ (function () {
9766
9732
  ProcessoAvulsoChegadaVeiculoOverride = __decorate([
9767
9733
  Injectable(),
9768
9734
  __metadata("design:paramtypes", [ChegadaVeiculoOverride,
9769
- AgendaService$1,
9735
+ AgendaService,
9770
9736
  ProcessoAvulsoService])
9771
9737
  ], ProcessoAvulsoChegadaVeiculoOverride);
9772
9738
  return ProcessoAvulsoChegadaVeiculoOverride;
@@ -10072,7 +10038,7 @@ var ProcessoAvulsoFormComponent = /** @class */ (function () {
10072
10038
  ProcessoAvulsoChegadaVeiculoOverride,
10073
10039
  TranslateService,
10074
10040
  ConfirmationService,
10075
- AgendaService$1,
10041
+ AgendaService,
10076
10042
  ErpProcessService,
10077
10043
  ErpFormConfigService,
10078
10044
  HasChangeService])
@@ -10261,7 +10227,7 @@ var RecebimentoOrdemCompraChegadaVeiculoOverride = /** @class */ (function () {
10261
10227
  RecebimentoOrdemCompraChegadaVeiculoOverride = __decorate([
10262
10228
  Injectable(),
10263
10229
  __metadata("design:paramtypes", [ChegadaVeiculoOverride,
10264
- AgendaService$1,
10230
+ AgendaService,
10265
10231
  RecebimentoOrdemCompraService])
10266
10232
  ], RecebimentoOrdemCompraChegadaVeiculoOverride);
10267
10233
  return RecebimentoOrdemCompraChegadaVeiculoOverride;
@@ -11442,7 +11408,7 @@ var RecebimentoOrdemCompraFormComponent = /** @class */ (function () {
11442
11408
  NotaValidatorService,
11443
11409
  ConfirmationService,
11444
11410
  DialogService,
11445
- AgendaService$1,
11411
+ AgendaService,
11446
11412
  ErpProcessService,
11447
11413
  ErpFormConfigService,
11448
11414
  VerificaNotafiscal,
@@ -13789,7 +13755,7 @@ var RecebimentoFormComponent = /** @class */ (function () {
13789
13755
  NotaValidatorService,
13790
13756
  TransgeniaService,
13791
13757
  DialogService,
13792
- AgendaService$1,
13758
+ AgendaService,
13793
13759
  ErpProcessService,
13794
13760
  ErpFormConfigService,
13795
13761
  VerificaNotafiscal,
@@ -13954,5 +13920,5 @@ var DockModule = /** @class */ (function () {
13954
13920
  return DockModule;
13955
13921
  }());
13956
13922
 
13957
- export { AgendaModule, AgendaService$1 as 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, AgendaService as ɵbb, EntityService$2 as ɵbc, EntityService$1 as ɵbd, InsertKeyModule as ɵbe, InsertKeyComponent as ɵbf, IntegrationService$1 as ɵbg, RecebimentoFormComponent as ɵbh, DerivacaoService as ɵbi, NotaValidatorService as ɵbj, TransgeniaService as ɵbk, VerificaNotafiscal as ɵbl, BuildFormField as ɵbm, ExpedicaoFormComponent as ɵbn, ExpedicaoInfoComponent as ɵbo, RecebimentoInfoComponent as ɵbp, DevolucaoFormComponent as ɵbq, DevolucaoService as ɵbr, DevolucaoChegadaVeiculoOverride as ɵbs, RecebimentoOrdemCompraFormComponent as ɵbt, OrdemCompraService as ɵbu, RecebimentoOrdemCompraService as ɵbv, RecebimentoOrdemCompraChegadaVeiculoOverride as ɵbw, RecebimentoOrdemCompraInfoComponent as ɵbx, DevolucaoInfoComponent as ɵby, ContratoFormComponent as ɵbz, ViewImageComponent as ɵc, OrdemCompraFormComponent as ɵca, ProcessoAvulsoFormComponent as ɵcb, ProcessoAvulsoService as ɵcc, ProcessoAvulsoChegadaVeiculoOverride as ɵcd, ProcessoAvulsoInfoComponent as ɵce, LogIntegracaoDescritor as ɵcf, LogIntegracaoComponent as ɵcg, LogIntegracaoService as ɵch, DerivacaoModule as ɵci, DevolucaoModule as ɵcj, OrdemCompraModule as ɵck, RecebimentoOrdemCompraModule as ɵcl, TransgeniaModule as ɵcm, ProcessoAvulsoModule as ɵcn, LogIntegracaoModule as ɵco, NotaFormModule as ɵcp, DirectivesModule as ɵcq, TrimDirective as ɵcr, NotaFormComponent as ɵcs, 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 };
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 };
13958
13924
  //# sourceMappingURL=seniorsistemas-yms-integration.js.map