@seniorsistemas/yms-integration 1.23.0 → 1.25.0
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 +120 -57
- 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 +50 -49
- package/esm2015/src/wms/components/document-grid/document-grid.component.js +7 -2
- package/esm2015/src/wms/components/document-grid/insert-key/insert-key.component.js +19 -4
- package/esm2015/src/wms/entities/wms-system/wms-system.js +3 -2
- package/esm2015/src/wms/form/form-wms.component.js +20 -5
- package/esm2015/src/wms/form/form-wms.service.js +25 -0
- package/esm2015/src/wms/wms.module.js +4 -2
- package/esm5/seniorsistemas-yms-integration.js +50 -49
- package/esm5/src/wms/components/document-grid/document-grid.component.js +7 -2
- package/esm5/src/wms/components/document-grid/insert-key/insert-key.component.js +19 -4
- package/esm5/src/wms/entities/wms-system/wms-system.js +3 -2
- package/esm5/src/wms/form/form-wms.component.js +21 -5
- package/esm5/src/wms/form/form-wms.service.js +28 -0
- package/esm5/src/wms/wms.module.js +4 -2
- package/fesm2015/seniorsistemas-yms-integration.js +68 -10
- package/fesm2015/seniorsistemas-yms-integration.js.map +1 -1
- package/fesm5/seniorsistemas-yms-integration.js +72 -10
- package/fesm5/seniorsistemas-yms-integration.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-yms-integration.d.ts +49 -48
- package/seniorsistemas-yms-integration.metadata.json +1 -1
- package/src/wms/components/document-grid/document-grid.component.d.ts +2 -0
- package/src/wms/components/document-grid/insert-key/insert-key.component.d.ts +4 -0
- package/src/wms/entities/wms-system/wms-system.d.ts +2 -1
- package/src/wms/form/form-wms.component.d.ts +5 -1
- package/src/wms/form/form-wms.service.d.ts +9 -0
|
@@ -3054,11 +3054,44 @@
|
|
|
3054
3054
|
return VisitorListModule;
|
|
3055
3055
|
}());
|
|
3056
3056
|
|
|
3057
|
+
var WmsSystem;
|
|
3058
|
+
(function (WmsSystem) {
|
|
3059
|
+
WmsSystem["NONE"] = "NONE";
|
|
3060
|
+
WmsSystem["SENIOR"] = "SENIOR";
|
|
3061
|
+
WmsSystem["WIS"] = "WIS";
|
|
3062
|
+
WmsSystem["ALCIS"] = "ALCIS";
|
|
3063
|
+
WmsSystem["SENIOR_CONNECT"] = "SENIOR_CONNECT";
|
|
3064
|
+
WmsSystem["GENERIC"] = "GENERIC";
|
|
3065
|
+
})(WmsSystem || (WmsSystem = {}));
|
|
3066
|
+
|
|
3067
|
+
var FormWmsService = /** @class */ (function (_super) {
|
|
3068
|
+
__extends(FormWmsService, _super);
|
|
3069
|
+
function FormWmsService(http, messageService) {
|
|
3070
|
+
var _this = _super.call(this, messageService) || this;
|
|
3071
|
+
_this.http = http;
|
|
3072
|
+
_this.messageService = messageService;
|
|
3073
|
+
return _this;
|
|
3074
|
+
}
|
|
3075
|
+
FormWmsService.prototype.getSystemIntegration = function () {
|
|
3076
|
+
return this.http.post("yms_int/wms/queries/getSystemIntegration", {});
|
|
3077
|
+
};
|
|
3078
|
+
FormWmsService.ngInjectableDef = core.defineInjectable({ factory: function FormWmsService_Factory() { return new FormWmsService(core.inject(http.HttpClient), core.inject(messageservice.MessageService)); }, token: FormWmsService, providedIn: "root" });
|
|
3079
|
+
FormWmsService = __decorate([
|
|
3080
|
+
core.Injectable({ providedIn: 'root' }),
|
|
3081
|
+
__metadata("design:paramtypes", [http.HttpClient, messageservice.MessageService])
|
|
3082
|
+
], FormWmsService);
|
|
3083
|
+
return FormWmsService;
|
|
3084
|
+
}(Service));
|
|
3085
|
+
|
|
3057
3086
|
var INFORMACAOES_ADICIONAIS_HEADER = "Informações adicionais";
|
|
3058
3087
|
var FormWmsDescritor = /** @class */ (function () {
|
|
3059
3088
|
function FormWmsDescritor() {
|
|
3060
3089
|
}
|
|
3061
3090
|
FormWmsDescritor = __decorate([
|
|
3091
|
+
ymsRoutines.Agendamento({
|
|
3092
|
+
header: INFORMACAOES_ADICIONAIS_HEADER,
|
|
3093
|
+
name: 'yms.integracao.wms'
|
|
3094
|
+
}),
|
|
3062
3095
|
ymsRoutines.ChegadaVeiculo({
|
|
3063
3096
|
header: INFORMACAOES_ADICIONAIS_HEADER,
|
|
3064
3097
|
name: 'yms.integracao.wms',
|
|
@@ -3069,9 +3102,10 @@
|
|
|
3069
3102
|
}());
|
|
3070
3103
|
var FormWmsComponent = /** @class */ (function (_super) {
|
|
3071
3104
|
__extends(FormWmsComponent, _super);
|
|
3072
|
-
function FormWmsComponent(integrationCallback) {
|
|
3105
|
+
function FormWmsComponent(integrationCallback, wmsService) {
|
|
3073
3106
|
var _this = _super.call(this) || this;
|
|
3074
3107
|
_this.integrationCallback = integrationCallback;
|
|
3108
|
+
_this.wmsService = wmsService;
|
|
3075
3109
|
_this.save = [];
|
|
3076
3110
|
_this.header = INFORMACAOES_ADICIONAIS_HEADER;
|
|
3077
3111
|
_this.loading = false;
|
|
@@ -3087,6 +3121,11 @@
|
|
|
3087
3121
|
return rxjs.empty();
|
|
3088
3122
|
}))
|
|
3089
3123
|
.subscribe();
|
|
3124
|
+
this.wmsService.getSystemIntegration()
|
|
3125
|
+
.subscribe(function (_a) {
|
|
3126
|
+
var system = _a.system;
|
|
3127
|
+
_this.wmsSystem = system;
|
|
3128
|
+
});
|
|
3090
3129
|
};
|
|
3091
3130
|
FormWmsComponent.prototype.ngOnDestroy = function () {
|
|
3092
3131
|
this.unsubscribe$.next();
|
|
@@ -3100,11 +3139,15 @@
|
|
|
3100
3139
|
core.Input(),
|
|
3101
3140
|
__metadata("design:type", Array)
|
|
3102
3141
|
], FormWmsComponent.prototype, "save", void 0);
|
|
3142
|
+
__decorate([
|
|
3143
|
+
core.Input(),
|
|
3144
|
+
__metadata("design:type", String)
|
|
3145
|
+
], FormWmsComponent.prototype, "wmsSystem", void 0);
|
|
3103
3146
|
FormWmsComponent = __decorate([
|
|
3104
3147
|
core.Component({
|
|
3105
|
-
template: "\n <div *ngIf=\"agenda\">\n <document-grid [agenda]=\"agenda\"></document-grid>\n </div>\n "
|
|
3148
|
+
template: "\n <div *ngIf=\"agenda\">\n <document-grid [agenda]=\"agenda\" [wmsSystem]=\"wmsSystem\" ></document-grid>\n </div>\n "
|
|
3106
3149
|
}),
|
|
3107
|
-
__metadata("design:paramtypes", [ymsRoutines.IntegrationEventsCallback])
|
|
3150
|
+
__metadata("design:paramtypes", [ymsRoutines.IntegrationEventsCallback, FormWmsService])
|
|
3108
3151
|
], FormWmsComponent);
|
|
3109
3152
|
return FormWmsComponent;
|
|
3110
3153
|
}(FormWmsDescritor));
|
|
@@ -3266,6 +3309,10 @@
|
|
|
3266
3309
|
core.Input(),
|
|
3267
3310
|
__metadata("design:type", Object)
|
|
3268
3311
|
], DocumentGridComponent.prototype, "agenda", void 0);
|
|
3312
|
+
__decorate([
|
|
3313
|
+
core.Input(),
|
|
3314
|
+
__metadata("design:type", String)
|
|
3315
|
+
], DocumentGridComponent.prototype, "wmsSystem", void 0);
|
|
3269
3316
|
__decorate([
|
|
3270
3317
|
core.Output(),
|
|
3271
3318
|
__metadata("design:type", Boolean)
|
|
@@ -3305,7 +3352,7 @@
|
|
|
3305
3352
|
DocumentGridComponent = __decorate([
|
|
3306
3353
|
core.Component({
|
|
3307
3354
|
selector: 'document-grid',
|
|
3308
|
-
template: "<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[\"invoiceKey\"] }}</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 [edit]=\"edit\"\n [viewDocument]=\"selection\"\n (document)=\"onChangeDocument($event)\"\n [(visible)]=\"visibleDocumentRegister\"\n [agenda]=\"agenda\">\n </register-document
|
|
3355
|
+
template: "<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[\"invoiceKey\"] }}</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 [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 class=\"button-save\">\n <s-button \n priority=\"primary\" [label]=\"'save' | translate\" [disabled]=\"disabled || !this.gridData\" (click)=\"save()\">\n </s-button>\n</div>\n\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",
|
|
3309
3356
|
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}"]
|
|
3310
3357
|
}),
|
|
3311
3358
|
__metadata("design:paramtypes", [core$1.TranslateService,
|
|
@@ -3635,9 +3682,19 @@
|
|
|
3635
3682
|
}
|
|
3636
3683
|
InsertKeyComponent.prototype.ngOnInit = function () {
|
|
3637
3684
|
this.formGroup = this.formBuilder.group({
|
|
3638
|
-
key: [undefined]
|
|
3685
|
+
key: [undefined],
|
|
3686
|
+
purchaseOrder: [undefined],
|
|
3687
|
+
invoiceNumber: [undefined],
|
|
3688
|
+
invoiceSerie: [undefined],
|
|
3689
|
+
partnerDocument: [undefined]
|
|
3639
3690
|
});
|
|
3640
3691
|
};
|
|
3692
|
+
InsertKeyComponent.prototype.isWmsWis = function () {
|
|
3693
|
+
return this.wmsSystem === WmsSystem.WIS;
|
|
3694
|
+
};
|
|
3695
|
+
InsertKeyComponent.prototype.isWmsSeniorConnect = function () {
|
|
3696
|
+
return this.wmsSystem === WmsSystem.SENIOR_CONNECT;
|
|
3697
|
+
};
|
|
3641
3698
|
InsertKeyComponent.prototype.add = function () {
|
|
3642
3699
|
this.visibleChange.emit(false);
|
|
3643
3700
|
if (!this.formGroup.get('key').value) {
|
|
@@ -3682,6 +3739,10 @@
|
|
|
3682
3739
|
core.Input(),
|
|
3683
3740
|
__metadata("design:type", core.EventEmitter)
|
|
3684
3741
|
], InsertKeyComponent.prototype, "visible", void 0);
|
|
3742
|
+
__decorate([
|
|
3743
|
+
core.Input(),
|
|
3744
|
+
__metadata("design:type", String)
|
|
3745
|
+
], InsertKeyComponent.prototype, "wmsSystem", void 0);
|
|
3685
3746
|
__decorate([
|
|
3686
3747
|
core.Output(),
|
|
3687
3748
|
__metadata("design:type", Object)
|
|
@@ -3689,8 +3750,8 @@
|
|
|
3689
3750
|
InsertKeyComponent = __decorate([
|
|
3690
3751
|
core.Component({
|
|
3691
3752
|
selector: "insert-key",
|
|
3692
|
-
template: "<form [formGroup]=\"formGroup\">\n <p-dialog [(visible)]=\"visible\" [modal]=\"true\" (visibleChange)=\"cancel()\">\n <p-header>{{'yms.int.
|
|
3693
|
-
styles: [".spacing-top{margin-top:10px}.spacing-bottom{margin-bottom:10px}.separator{width:100%;margin:5px 0;height:1px;background-color:#ccc}.size-input{width:
|
|
3753
|
+
template: "<form [formGroup]=\"formGroup\">\n <p-dialog [(visible)]=\"visible\" [modal]=\"true\" (visibleChange)=\"cancel()\">\n <p-header>{{'yms.int.wms_search_document' | translate}} {{ wmsSystem }}</p-header>\n <div class=\"flex py-2 justify-content-center spacing-bottom\" \n *ngIf=\"!isWmsSeniorConnect() && !isWmsWis()\">\n <label for=\"key\">{{'yms.int.wms_insert_key_label' | translate}}</label>\n <input id=\"key\" class=\"size-input\" pInputText type=\"text\" formControlName=\"key\">\n </div>\n <div class=\"flex py-2 justify-content-center spacing-bottom\" *ngIf=\"isWmsSeniorConnect()\">\n <label for=\"purchaseOrder\">{{'yms.int.wms_purchaseOrder' | translate}} </label>\n <input id=\"purchaseOrder\" class=\"size-input\" pInputText type=\"text\" formControlName=\"purchaseOrder\">\n </div>\n <div class=\"flex py-2 justify-content-center spacing-bottom\" *ngIf=\"isWmsWis()\">\n <label for=\"invoiceNumber\">{{'yms.int.wms_invoice_number' | translate}}</label>\n <input id=\"invoiceNumber\" class=\"size-input\" pInputText type=\"text\" formControlName=\"invoiceNumber\">\n </div>\n <div class=\"flex py-2 justify-content-center spacing-bottom\" *ngIf=\"isWmsWis()\">\n <label for=\"invoiceSerie\">{{'yms.int.wms_invoice_serie' | translate}}</label>\n <input id=\"invoiceSerie\" class=\"size-input\" pInputText type=\"text\" formControlName=\"invoiceSerie\">\n </div>\n <div class=\"flex py-2 justify-content-center spacing-bottom\" *ngIf=\"isWmsWis()\">\n <label for=\"partnerDocument\">{{'yms.int.wms_partner_document' | translate}}</label>\n <input id=\"partnerDocument\" class=\"size-input\" pInputText type=\"text\" formControlName=\"partnerDocument\">\n </div>\n <div class=\"separator\"></div>\n <div class=\"spacing-top\">\n <s-button pButton label=\"{{'save' | translate}}\" (click)=\"add()\"></s-button>\n <s-button\n type=\"button\"\n class=\"ui-button-link\"\n pButton label=\"{{'cancel' | translate}}\"\n (click)=\"cancel()\">\n </s-button>\n </div>\n </p-dialog>\n</form>",
|
|
3754
|
+
styles: [".spacing-top{margin-top:10px}.spacing-bottom{margin-bottom:10px}.separator{width:100%;margin:5px 0;height:1px;background-color:#ccc}.size-input{width:480px}"]
|
|
3694
3755
|
}),
|
|
3695
3756
|
__metadata("design:paramtypes", [forms.FormBuilder,
|
|
3696
3757
|
DocumentService,
|
|
@@ -3788,7 +3849,8 @@
|
|
|
3788
3849
|
],
|
|
3789
3850
|
providers: [
|
|
3790
3851
|
FieldCustomizationService,
|
|
3791
|
-
FocusService
|
|
3852
|
+
FocusService,
|
|
3853
|
+
FormWmsService
|
|
3792
3854
|
]
|
|
3793
3855
|
}),
|
|
3794
3856
|
__metadata("design:paramtypes", [ymsRoutines.IntegrationDispatcher])
|
|
@@ -13987,50 +14049,51 @@
|
|
|
13987
14049
|
exports.highlightLanguages = highlightLanguages;
|
|
13988
14050
|
exports.ɵa = Service;
|
|
13989
14051
|
exports.ɵb = CustomStompConfig;
|
|
13990
|
-
exports.ɵba =
|
|
13991
|
-
exports.ɵbb = EntityService$
|
|
13992
|
-
exports.ɵbc =
|
|
13993
|
-
exports.ɵbd =
|
|
13994
|
-
exports.ɵbe =
|
|
13995
|
-
exports.ɵbf =
|
|
13996
|
-
exports.ɵbg =
|
|
13997
|
-
exports.ɵbh =
|
|
13998
|
-
exports.ɵbi =
|
|
13999
|
-
exports.ɵbj =
|
|
14000
|
-
exports.ɵbk =
|
|
14001
|
-
exports.ɵbl =
|
|
14002
|
-
exports.ɵbm =
|
|
14003
|
-
exports.ɵbn =
|
|
14004
|
-
exports.ɵbo =
|
|
14005
|
-
exports.ɵbp =
|
|
14006
|
-
exports.ɵbq =
|
|
14007
|
-
exports.ɵbr =
|
|
14008
|
-
exports.ɵbs =
|
|
14009
|
-
exports.ɵbt =
|
|
14010
|
-
exports.ɵbu =
|
|
14011
|
-
exports.ɵbv =
|
|
14012
|
-
exports.ɵbw =
|
|
14013
|
-
exports.ɵbx =
|
|
14014
|
-
exports.ɵby =
|
|
14015
|
-
exports.ɵbz =
|
|
14052
|
+
exports.ɵba = AgendaService;
|
|
14053
|
+
exports.ɵbb = EntityService$2;
|
|
14054
|
+
exports.ɵbc = EntityService$1;
|
|
14055
|
+
exports.ɵbd = InsertKeyModule;
|
|
14056
|
+
exports.ɵbe = InsertKeyComponent;
|
|
14057
|
+
exports.ɵbf = IntegrationService;
|
|
14058
|
+
exports.ɵbg = RecebimentoFormComponent;
|
|
14059
|
+
exports.ɵbh = DerivacaoService;
|
|
14060
|
+
exports.ɵbi = NotaValidatorService;
|
|
14061
|
+
exports.ɵbj = TransgeniaService;
|
|
14062
|
+
exports.ɵbk = VerificaNotafiscal;
|
|
14063
|
+
exports.ɵbl = BuildFormField;
|
|
14064
|
+
exports.ɵbm = ExpedicaoFormComponent;
|
|
14065
|
+
exports.ɵbn = ExpedicaoInfoComponent;
|
|
14066
|
+
exports.ɵbo = RecebimentoInfoComponent;
|
|
14067
|
+
exports.ɵbp = DevolucaoFormComponent;
|
|
14068
|
+
exports.ɵbq = DevolucaoService;
|
|
14069
|
+
exports.ɵbr = DevolucaoChegadaVeiculoOverride;
|
|
14070
|
+
exports.ɵbs = RecebimentoOrdemCompraFormComponent;
|
|
14071
|
+
exports.ɵbt = OrdemCompraService;
|
|
14072
|
+
exports.ɵbu = RecebimentoOrdemCompraService;
|
|
14073
|
+
exports.ɵbv = RecebimentoOrdemCompraChegadaVeiculoOverride;
|
|
14074
|
+
exports.ɵbw = RecebimentoOrdemCompraInfoComponent;
|
|
14075
|
+
exports.ɵbx = DevolucaoInfoComponent;
|
|
14076
|
+
exports.ɵby = ContratoFormComponent;
|
|
14077
|
+
exports.ɵbz = OrdemCompraFormComponent;
|
|
14016
14078
|
exports.ɵc = ViewImageComponent;
|
|
14017
|
-
exports.ɵca =
|
|
14018
|
-
exports.ɵcb =
|
|
14019
|
-
exports.ɵcc =
|
|
14020
|
-
exports.ɵcd =
|
|
14021
|
-
exports.ɵce =
|
|
14022
|
-
exports.ɵcf =
|
|
14023
|
-
exports.ɵcg =
|
|
14024
|
-
exports.ɵch =
|
|
14025
|
-
exports.ɵci =
|
|
14026
|
-
exports.ɵcj =
|
|
14027
|
-
exports.ɵck =
|
|
14028
|
-
exports.ɵcl =
|
|
14029
|
-
exports.ɵcm =
|
|
14030
|
-
exports.ɵcn =
|
|
14031
|
-
exports.ɵco =
|
|
14032
|
-
exports.ɵcp =
|
|
14033
|
-
exports.ɵcq =
|
|
14079
|
+
exports.ɵca = ProcessoAvulsoFormComponent;
|
|
14080
|
+
exports.ɵcb = ProcessoAvulsoService;
|
|
14081
|
+
exports.ɵcc = ProcessoAvulsoChegadaVeiculoOverride;
|
|
14082
|
+
exports.ɵcd = ProcessoAvulsoInfoComponent;
|
|
14083
|
+
exports.ɵce = LogIntegracaoDescritor;
|
|
14084
|
+
exports.ɵcf = LogIntegracaoComponent;
|
|
14085
|
+
exports.ɵcg = LogIntegracaoService;
|
|
14086
|
+
exports.ɵch = DerivacaoModule;
|
|
14087
|
+
exports.ɵci = DevolucaoModule;
|
|
14088
|
+
exports.ɵcj = OrdemCompraModule;
|
|
14089
|
+
exports.ɵck = RecebimentoOrdemCompraModule;
|
|
14090
|
+
exports.ɵcl = TransgeniaModule;
|
|
14091
|
+
exports.ɵcm = ProcessoAvulsoModule;
|
|
14092
|
+
exports.ɵcn = LogIntegracaoModule;
|
|
14093
|
+
exports.ɵco = NotaFormModule;
|
|
14094
|
+
exports.ɵcp = DirectivesModule;
|
|
14095
|
+
exports.ɵcq = TrimDirective;
|
|
14096
|
+
exports.ɵcr = NotaFormComponent;
|
|
14034
14097
|
exports.ɵd = LogDescritor;
|
|
14035
14098
|
exports.ɵe = LogsComponent;
|
|
14036
14099
|
exports.ɵf = PortariasService;
|
|
@@ -14048,12 +14111,12 @@
|
|
|
14048
14111
|
exports.ɵr = VisitanteFormComponent;
|
|
14049
14112
|
exports.ɵs = CredencialFormComponent;
|
|
14050
14113
|
exports.ɵt = FocusService;
|
|
14051
|
-
exports.ɵu =
|
|
14052
|
-
exports.ɵv =
|
|
14053
|
-
exports.ɵw =
|
|
14054
|
-
exports.ɵx =
|
|
14055
|
-
exports.ɵy =
|
|
14056
|
-
exports.ɵz =
|
|
14114
|
+
exports.ɵu = FormWmsService;
|
|
14115
|
+
exports.ɵv = DocumentGridModule;
|
|
14116
|
+
exports.ɵw = DocumentGridComponent;
|
|
14117
|
+
exports.ɵx = DocumentService;
|
|
14118
|
+
exports.ɵy = RegisterDocumentModule;
|
|
14119
|
+
exports.ɵz = RegisterDocumentComponent;
|
|
14057
14120
|
|
|
14058
14121
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
14059
14122
|
|