@seniorsistemas/yms-integration 1.25.0 → 1.26.0-a427cb89-5ea5-4fd6-a0f6-7554120c00e2
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 +91 -55
- 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 +47 -46
- package/esm2015/src/wms/components/document-grid/document-grid.component.js +12 -4
- package/esm2015/src/wms/components/document-grid/register-document/register-document.component.js +16 -3
- package/esm2015/src/wms/entities/document/document-dto.js +1 -1
- package/esm2015/src/wms/entities/integration/integration.service.js +20 -0
- package/esm5/seniorsistemas-yms-integration.js +47 -46
- package/esm5/src/wms/components/document-grid/document-grid.component.js +13 -4
- package/esm5/src/wms/components/document-grid/register-document/register-document.component.js +16 -3
- package/esm5/src/wms/entities/document/document-dto.js +1 -1
- package/esm5/src/wms/entities/integration/integration.service.js +21 -0
- package/fesm2015/seniorsistemas-yms-integration.js +45 -12
- package/fesm2015/seniorsistemas-yms-integration.js.map +1 -1
- package/fesm5/seniorsistemas-yms-integration.js +45 -10
- package/fesm5/seniorsistemas-yms-integration.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-yms-integration.d.ts +46 -45
- package/seniorsistemas-yms-integration.metadata.json +1 -1
- package/src/wms/components/document-grid/document-grid.component.d.ts +5 -1
- package/src/wms/components/document-grid/register-document/register-document.component.d.ts +4 -0
- package/src/wms/entities/document/document-dto.d.ts +1 -1
- package/src/wms/entities/integration/integration.service.d.ts +10 -0
|
@@ -2886,6 +2886,20 @@ FormWmsComponent = __decorate([
|
|
|
2886
2886
|
__metadata("design:paramtypes", [IntegrationEventsCallback, FormWmsService])
|
|
2887
2887
|
], FormWmsComponent);
|
|
2888
2888
|
|
|
2889
|
+
let IntegrationService = class IntegrationService {
|
|
2890
|
+
constructor(httpClient) {
|
|
2891
|
+
this.httpClient = httpClient;
|
|
2892
|
+
}
|
|
2893
|
+
getProcessTypeByScheduling(idSchedulingType) {
|
|
2894
|
+
return this.httpClient.post('yms/integration/queries/getProcessTypeByScheduling', { idSchedulingType });
|
|
2895
|
+
}
|
|
2896
|
+
};
|
|
2897
|
+
IntegrationService.ngInjectableDef = defineInjectable({ factory: function IntegrationService_Factory() { return new IntegrationService(inject(HttpClient)); }, token: IntegrationService, providedIn: "root" });
|
|
2898
|
+
IntegrationService = __decorate([
|
|
2899
|
+
Injectable({ providedIn: 'root' }),
|
|
2900
|
+
__metadata("design:paramtypes", [HttpClient])
|
|
2901
|
+
], IntegrationService);
|
|
2902
|
+
|
|
2889
2903
|
let DocumentService = class DocumentService extends EntityService {
|
|
2890
2904
|
constructor(http, messageService) {
|
|
2891
2905
|
super(http, messageService, 'yms_int/wms/entities/document', '');
|
|
@@ -2902,11 +2916,12 @@ DocumentService = __decorate([
|
|
|
2902
2916
|
], DocumentService);
|
|
2903
2917
|
|
|
2904
2918
|
let DocumentGridComponent = class DocumentGridComponent {
|
|
2905
|
-
constructor(translate, documentService, messageService, confirmationService) {
|
|
2919
|
+
constructor(translate, documentService, messageService, confirmationService, integrationService) {
|
|
2906
2920
|
this.translate = translate;
|
|
2907
2921
|
this.documentService = documentService;
|
|
2908
2922
|
this.messageService = messageService;
|
|
2909
2923
|
this.confirmationService = confirmationService;
|
|
2924
|
+
this.integrationService = integrationService;
|
|
2910
2925
|
this.viewDocument = new EventEmitter();
|
|
2911
2926
|
this.gridData = [];
|
|
2912
2927
|
this.ngUnsubscribe = new Subject();
|
|
@@ -2914,8 +2929,13 @@ let DocumentGridComponent = class DocumentGridComponent {
|
|
|
2914
2929
|
}
|
|
2915
2930
|
ngOnInit() {
|
|
2916
2931
|
this.gridColumns = this.getGridColumns();
|
|
2932
|
+
this.getProcessTypeByScheduling();
|
|
2917
2933
|
this.listDocuments();
|
|
2918
2934
|
}
|
|
2935
|
+
getProcessTypeByScheduling() {
|
|
2936
|
+
this.integrationService.getProcessTypeByScheduling(this.agenda.tipoAgendamento.id)
|
|
2937
|
+
.subscribe((result) => this.processType = result.processType);
|
|
2938
|
+
}
|
|
2919
2939
|
onChangeDocument(document) {
|
|
2920
2940
|
this.gridData.push(document);
|
|
2921
2941
|
this.disabled = false;
|
|
@@ -3079,13 +3099,14 @@ __decorate([
|
|
|
3079
3099
|
DocumentGridComponent = __decorate([
|
|
3080
3100
|
Component({
|
|
3081
3101
|
selector: 'document-grid',
|
|
3082
|
-
template: "<p-panel>\n
|
|
3102
|
+
template: "<div *ngIf=\"this.processType === 'DESCARREGAMENTO'; else processNotConfigured\">\n <p-panel>\n <p-header>\n <div class=\"buttons\">\n <div>\n <s-button\n label=\"{{'yms.int.wms_add_document' | translate}}\"\n priority=\"primary\"\n [model]=\"getActions()\"\n [auxiliary]=\"false\">\n </s-button>\n <s-button\n label=\"{{'yms.wms_view_button' | translate}}\"\n priority=\"secondary\"\n [auxiliary]=\"false\"\n [disabled]=\"!selection || selection.length !== 1\"\n (onClick)=\"view()\">\n </s-button>\n <s-button\n label=\"{{'yms.wms_delete_button' | translate}}\"\n priority=\"secondary\"\n [disabled]=\"!selection || !selection.length\"\n (click)=\"onDelete()\">\n </s-button>\n </div>\n <s-button\n id=\"refresh-button\"\n priority=\"default\"\n iconClass=\"fa fa-refresh\"\n (onClick)=\"listDocuments()\"\n >\n </s-button>\n </div>\n </p-header>\n <div class=\"ui-g\">\n <div class=\"ui-g-12\" *ngIf=\"gridData && gridData.length; else emptyList\">\n <p-table #documentTable [value]=\"gridData\"\n [columns]=\"gridColumns\" dataKey=\"id\" [lazy]=\"true\" [scrollable]=\"true\" [resizableColumns]=\"true\"\n sortMode=\"multiple\" [paginator]=\"true\" [totalRecords]=\"documentTotalRecords\" rows=\"10\"\n [rowsPerPageOptions]=\"[10, 20, 50, 100]\" [(selection)]=\"selection\"\n [loading]=\"loading\">\n <ng-template pTemplate=\"colgroup\" let-columns>\n <colgroup>\n <col *ngFor=\"let col of columns\" [style.width]=\"col.width\"/>\n </colgroup>\n </ng-template>\n <ng-template pTemplate=\"header\" let-columns>\n <tr>\n <th id=\"checkbox\" class=\"table-checkbox\">\n <p-tableHeaderCheckbox></p-tableHeaderCheckbox>\n </th>\n <th id=\"col\" *ngFor=\"let col of columns\" [pSortableColumn]=\"col.field\" pResizableColumn>\n <div class=\"senior-header\">\n <span class=\"senior-header-title\">{{ col.header }}</span>\n <p-sortIcon [field]=\"col.field\"></p-sortIcon>\n </div>\n </th>\n </tr>\n </ng-template>\n <ng-template pTemplate=\"body\" let-rowData let-columns let-expanded=\"expanded\">\n <tr [pSelectableRow]=\"rowData\">\n <td class=\"table-checkbox\">\n <p-tableCheckbox [value]=\"rowData\"></p-tableCheckbox>\n </td>\n <td (click)=\"selection = [rowData]\">\n <span>{{ rowData[\"logistcUnitName\"] }}</span>\n </td>\n <td (click)=\"selection = [rowData]\">\n <span>{{ rowData[\"logistcUnitDocument\"] }}</span>\n </td>\n <td (click)=\"selection = [rowData]\">\n <span>{{ rowData[\"key\"] }}</span>\n </td>\n <td (click)=\"selection = [rowData]\">\n <span>{{ rowData[\"invoiceNumber\"] }}</span>\n </td>\n <td (click)=\"selection = [rowData]\">\n <span>{{ rowData[\"invoiceSerialNumber\"] }}</span>\n </td>\n <td (click)=\"selection = [rowData]\">\n <span>{{ rowData[\"ownerName\"] }}</span>\n </td>\n <td (click)=\"selection = [rowData]\">\n <span>{{ rowData[\"ownerDocument\"] }}</span>\n </td>\n <td (click)=\"selection = [rowData]\">\n <span>{{ rowData[\"code\"] }}</span>\n </td>\n </tr>\n </ng-template>\n <ng-template pTemplate=\"paginatorright\">\n <span [translate]=\"'total_records'\" [translateParams]=\"{ value: documentTotalRecords }\"></span>\n </ng-template>\n </p-table> \n </div>\n </div>\n <register-document\n [wmsSystem]=\"wmsSystem\"\n [edit]=\"edit\"\n [viewDocument]=\"selection\"\n (document)=\"onChangeDocument($event)\"\n [(visible)]=\"visibleDocumentRegister\"\n [agenda]=\"agenda\">\n </register-document> \n <insert-key [wmsSystem]=\"wmsSystem\" \n (document)=\"onChangeDocument($event)\" [(visible)]=\"visibleInvoiceKey\"></insert-key>\n </p-panel>\n</div>\n <div class=\"button-save\">\n <s-button \n priority=\"primary\" [label]=\"'save' | translate\" [disabled]=\"disabled || !this.gridData\" (click)=\"save()\">\n </s-button>\n </div>\n <register-document\n [wmsSystem]=\"wmsSystem\"\n [edit]=\"edit\"\n [viewDocument]=\"selection\"\n (document)=\"onChangeDocument($event)\"\n [(visible)]=\"visibleDocumentRegister\"\n [agenda]=\"agenda\">\n </register-document> \n <insert-key [wmsSystem]=\"wmsSystem\" \n (document)=\"onChangeDocument($event)\" [(visible)]=\"visibleInvoiceKey\"></insert-key>\n\n<ng-template #emptyList>\n <div class=\"center\">\n <s-empty-state\n iconClass=\"fa fa-exclamation-triangle\" [title]=\"'detail_empty_state_title' | translate\"\n [description]=\"'detail_empty_state_description' | translate\">\n </s-empty-state>\n </div>\n</ng-template>\n\n<ng-template #processNotConfigured>\n <div class=\"center\">\n <s-empty-state\n iconClass=\"fa fa-exclamation-triangle\"\n [title]=\"'yms.int.wms_there_no_process_type_configured_for_this_type_scheduling' | translate\"\n >\n </s-empty-state>\n </div>\n</ng-template>",
|
|
3083
3103
|
styles: [".buttons{display:flex;justify-content:space-between}.center{flex-direction:column;text-align:center}.ui-g{display:block}.button-save{margin:5px 0}#refresh-button{color:#fff}.table-checkbox{width:50px}"]
|
|
3084
3104
|
}),
|
|
3085
3105
|
__metadata("design:paramtypes", [TranslateService,
|
|
3086
3106
|
DocumentService,
|
|
3087
3107
|
MessageService,
|
|
3088
|
-
ConfirmationService
|
|
3108
|
+
ConfirmationService,
|
|
3109
|
+
IntegrationService])
|
|
3089
3110
|
], DocumentGridComponent);
|
|
3090
3111
|
|
|
3091
3112
|
const moment$4 = _moment;
|
|
@@ -3269,6 +3290,7 @@ let RegisterDocumentComponent = class RegisterDocumentComponent {
|
|
|
3269
3290
|
this.formGroup.reset();
|
|
3270
3291
|
}
|
|
3271
3292
|
setValuesFormGroup(document) {
|
|
3293
|
+
this.formGroup.get('key').setValue(document.key);
|
|
3272
3294
|
this.formGroup.get('invoiceKey').setValue(document.invoiceKey);
|
|
3273
3295
|
this.formGroup.get('invoiceNumber').setValue(document.invoiceNumber);
|
|
3274
3296
|
this.formGroup.get('invoiceSerialNumber').setValue(document.invoiceSerialNumber);
|
|
@@ -3287,7 +3309,8 @@ let RegisterDocumentComponent = class RegisterDocumentComponent {
|
|
|
3287
3309
|
}
|
|
3288
3310
|
getFormGroup() {
|
|
3289
3311
|
this.formGroup = this.fb.group({
|
|
3290
|
-
|
|
3312
|
+
key: [undefined, Validators.required],
|
|
3313
|
+
invoiceKey: [undefined],
|
|
3291
3314
|
schedulingId: [undefined],
|
|
3292
3315
|
invoiceNumber: [undefined],
|
|
3293
3316
|
invoiceSerialNumber: [undefined],
|
|
@@ -3319,6 +3342,12 @@ let RegisterDocumentComponent = class RegisterDocumentComponent {
|
|
|
3319
3342
|
detail: this.translateService.instant("yms.int.wms_success_message_description"),
|
|
3320
3343
|
});
|
|
3321
3344
|
}
|
|
3345
|
+
isWmsWis() {
|
|
3346
|
+
return this.wmsSystem === WmsSystem.WIS;
|
|
3347
|
+
}
|
|
3348
|
+
isWmsSeniorConnect() {
|
|
3349
|
+
return this.wmsSystem === WmsSystem.SENIOR_CONNECT;
|
|
3350
|
+
}
|
|
3322
3351
|
};
|
|
3323
3352
|
__decorate([
|
|
3324
3353
|
Input(),
|
|
@@ -3336,6 +3365,10 @@ __decorate([
|
|
|
3336
3365
|
Output(),
|
|
3337
3366
|
__metadata("design:type", EventEmitter)
|
|
3338
3367
|
], RegisterDocumentComponent.prototype, "document", void 0);
|
|
3368
|
+
__decorate([
|
|
3369
|
+
Input(),
|
|
3370
|
+
__metadata("design:type", String)
|
|
3371
|
+
], RegisterDocumentComponent.prototype, "wmsSystem", void 0);
|
|
3339
3372
|
__decorate([
|
|
3340
3373
|
Input(),
|
|
3341
3374
|
__metadata("design:type", EventEmitter)
|
|
@@ -3347,7 +3380,7 @@ __decorate([
|
|
|
3347
3380
|
RegisterDocumentComponent = __decorate([
|
|
3348
3381
|
Component({
|
|
3349
3382
|
selector: "register-document",
|
|
3350
|
-
template: "<s-sidebar\n [visible]=\"visible\"\n header=\"{{ 'yms.int.wms_register_document_add_document' | translate }}\"\n (visibleChange)=\"close()\">\n <form [formGroup]=\"formGroup\">\n <div class=\"ui-g ui-fluid\">\n <div class=\"ui-g-6
|
|
3383
|
+
template: "<s-sidebar\n [visible]=\"visible\"\n header=\"{{ 'yms.int.wms_register_document_add_document' | translate }} {{ wmsSystem }}\"\n (visibleChange)=\"close()\">\n <form [formGroup]=\"formGroup\">\n <div class=\"ui-g ui-fluid\">\n <div class=\"ui-g-6\" *ngIf=\"!isWmsSeniorConnect() && !isWmsWis()\">\n <label for=\"invoiceKey\">{{'yms.int.wms_register_document_invoice_key' | translate}}</label>\n <input id=\"invoiceKey\" pInputText type=\"text\" formControlName=\"invoiceKey\">\n </div>\n <div class=\"ui-g-6\" *ngIf=\"!isWmsSeniorConnect()\">\n <label for=\"invoiceNumber\">{{'yms.int.wms_register_document_invoice_number' | translate}}</label>\n <input id=\"invoiceNumber\" pInputText type=\"text\" formControlName=\"invoiceNumber\">\n </div>\n <div class=\"ui-g-6\" *ngIf=\"!isWmsSeniorConnect()\">\n <label for=\"invoiceSerialNumber\">\n {{'yms.int.wms_register_document_invoice_serial_number' | translate}}\n </label>\n <input id=\"invoiceSerialNumber\" pInputText type=\"text\" formControlName=\"invoiceSerialNumber\">\n </div>\n <div class=\"ui-g-8\">\n <label for=\"logistcUnitName\">{{'yms.int.wms_register_document_logistc_unit_name' | translate}}</label>\n <input id=\"logistcUnitName\" pInputText type=\"text\" formControlName=\"logistcUnitName\">\n </div>\n <div class=\"ui-g-4\">\n <label for=\"logistcUnitDocument\">\n {{'yms.int.wms_register_document_logistc_unit_document' | translate}}\n </label>\n <input id=\"logistcUnitDocument\" pInputText type=\"text\" formControlName=\"logistcUnitDocument\">\n </div>\n <div class=\"ui-g-8\" *ngIf=\"!isWmsSeniorConnect() && !isWmsWis()\">\n <label for=\"documentOwnerName\">{{'yms.int.wms_register_document_owner_name' | translate}}</label>\n <input id=\"documentOwnerName\" pInputText type=\"text\" formControlName=\"ownerName\">\n </div>\n <div class=\"ui-g-4\" *ngIf=\"!isWmsSeniorConnect() && !isWmsWis()\">\n <label for=\"ownerDocument\">{{'yms.int.wms_register_document_owner_document' | translate}}</label>\n <input id=\"ownerDocument\" pInputText type=\"text\" formControlName=\"ownerDocument\">\n </div>\n <div class=\"ui-g-8\">\n <label for=\"partnerName\">{{'yms.int.wms_register_document_partner_name' | translate}}</label>\n <input id=\"partnerName\" pInputText type=\"text\" formControlName=\"partnerName\">\n </div>\n <div class=\"ui-g-4\">\n <label for=\"partnerDocument\">{{'yms.int.wms_register_document_partner_document' | translate}}</label>\n <input id=\"partnerDocument\" pInputText type=\"text\" formControlName=\"partnerDocument\">\n </div>\n <div class=\"ui-g-12\">\n <label for=\"notes\" id=\"notes\">{{'yms.int.wms_register_document_notes' | translate}}</label>\n <textarea id=\"notes\" rows=\"4\" pInputTextarea autoResize=\"autoResize\" formControlName=\"notes\"></textarea>\n </div>\n <div class=\"ui-g-4\">\n <label for=\"code\">\n {{'yms.int.wms_register_document_order_receiving_code' | translate}}\n </label>\n <input id=\"code\" pInputText type=\"text\" formControlName=\"code\">\n </div>\n </div>\n </form>\n <div class=\"space-between\">\n <button\n pButton label=\"{{'save' | translate}}\" (click)=\"save()\" [attr.data-hidden]=\"hideSaveButton\">\n </button>\n <button\n type=\"button\" class=\"ui-button-link\" pButton label=\"{{'cancel' | translate}}\" (click)=\"close()\">\n </button>\n </div>\n</s-sidebar>"
|
|
3351
3384
|
}),
|
|
3352
3385
|
__metadata("design:paramtypes", [FormBuilder,
|
|
3353
3386
|
MessageService,
|
|
@@ -3708,7 +3741,7 @@ ExpedicaoChegadaVeiculoOverride = __decorate([
|
|
|
3708
3741
|
ExpedicaoService])
|
|
3709
3742
|
], ExpedicaoChegadaVeiculoOverride);
|
|
3710
3743
|
|
|
3711
|
-
let IntegrationService = class IntegrationService {
|
|
3744
|
+
let IntegrationService$1 = class IntegrationService {
|
|
3712
3745
|
constructor(http, messageService) {
|
|
3713
3746
|
this.http = http;
|
|
3714
3747
|
this.messageService = messageService;
|
|
@@ -3732,10 +3765,10 @@ let IntegrationService = class IntegrationService {
|
|
|
3732
3765
|
});
|
|
3733
3766
|
}
|
|
3734
3767
|
};
|
|
3735
|
-
IntegrationService = __decorate([
|
|
3768
|
+
IntegrationService$1 = __decorate([
|
|
3736
3769
|
Injectable(),
|
|
3737
3770
|
__metadata("design:paramtypes", [HttpClient, MessageService])
|
|
3738
|
-
], IntegrationService);
|
|
3771
|
+
], IntegrationService$1);
|
|
3739
3772
|
|
|
3740
3773
|
const ERP_SENIOR_HEADER = "ERP Senior";
|
|
3741
3774
|
let FormDescritor = class FormDescritor {
|
|
@@ -3801,7 +3834,7 @@ FormComponent = __decorate([
|
|
|
3801
3834
|
</div>
|
|
3802
3835
|
`
|
|
3803
3836
|
}),
|
|
3804
|
-
__metadata("design:paramtypes", [IntegrationEventsCallback, IntegrationService])
|
|
3837
|
+
__metadata("design:paramtypes", [IntegrationEventsCallback, IntegrationService$1])
|
|
3805
3838
|
], FormComponent);
|
|
3806
3839
|
|
|
3807
3840
|
const HEADER = 'Informações fiscais';
|
|
@@ -3855,7 +3888,7 @@ InfoComponent = __decorate([
|
|
|
3855
3888
|
</div>
|
|
3856
3889
|
`
|
|
3857
3890
|
}),
|
|
3858
|
-
__metadata("design:paramtypes", [IntegrationService])
|
|
3891
|
+
__metadata("design:paramtypes", [IntegrationService$1])
|
|
3859
3892
|
], InfoComponent);
|
|
3860
3893
|
|
|
3861
3894
|
let VerificaNotafiscal = class VerificaNotafiscal {
|
|
@@ -6342,7 +6375,7 @@ CoreModule = __decorate([
|
|
|
6342
6375
|
LogIntegracaoModule
|
|
6343
6376
|
],
|
|
6344
6377
|
providers: [
|
|
6345
|
-
IntegrationService,
|
|
6378
|
+
IntegrationService$1,
|
|
6346
6379
|
NotaValidatorService
|
|
6347
6380
|
],
|
|
6348
6381
|
exports: [],
|
|
@@ -13169,5 +13202,5 @@ DockModule = __decorate([
|
|
|
13169
13202
|
})
|
|
13170
13203
|
], DockModule);
|
|
13171
13204
|
|
|
13172
|
-
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,
|
|
13205
|
+
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 };
|
|
13173
13206
|
//# sourceMappingURL=seniorsistemas-yms-integration.js.map
|