@seniorsistemas/yms-integration 1.24.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 +116 -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 +15 -4
- 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 +16 -4
- 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 +63 -9
- package/fesm2015/seniorsistemas-yms-integration.js.map +1 -1
- package/fesm5/seniorsistemas-yms-integration.js +67 -9
- 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,6 +3054,35 @@
|
|
|
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() {
|
|
@@ -3073,9 +3102,10 @@
|
|
|
3073
3102
|
}());
|
|
3074
3103
|
var FormWmsComponent = /** @class */ (function (_super) {
|
|
3075
3104
|
__extends(FormWmsComponent, _super);
|
|
3076
|
-
function FormWmsComponent(integrationCallback) {
|
|
3105
|
+
function FormWmsComponent(integrationCallback, wmsService) {
|
|
3077
3106
|
var _this = _super.call(this) || this;
|
|
3078
3107
|
_this.integrationCallback = integrationCallback;
|
|
3108
|
+
_this.wmsService = wmsService;
|
|
3079
3109
|
_this.save = [];
|
|
3080
3110
|
_this.header = INFORMACAOES_ADICIONAIS_HEADER;
|
|
3081
3111
|
_this.loading = false;
|
|
@@ -3091,6 +3121,11 @@
|
|
|
3091
3121
|
return rxjs.empty();
|
|
3092
3122
|
}))
|
|
3093
3123
|
.subscribe();
|
|
3124
|
+
this.wmsService.getSystemIntegration()
|
|
3125
|
+
.subscribe(function (_a) {
|
|
3126
|
+
var system = _a.system;
|
|
3127
|
+
_this.wmsSystem = system;
|
|
3128
|
+
});
|
|
3094
3129
|
};
|
|
3095
3130
|
FormWmsComponent.prototype.ngOnDestroy = function () {
|
|
3096
3131
|
this.unsubscribe$.next();
|
|
@@ -3104,11 +3139,15 @@
|
|
|
3104
3139
|
core.Input(),
|
|
3105
3140
|
__metadata("design:type", Array)
|
|
3106
3141
|
], FormWmsComponent.prototype, "save", void 0);
|
|
3142
|
+
__decorate([
|
|
3143
|
+
core.Input(),
|
|
3144
|
+
__metadata("design:type", String)
|
|
3145
|
+
], FormWmsComponent.prototype, "wmsSystem", void 0);
|
|
3107
3146
|
FormWmsComponent = __decorate([
|
|
3108
3147
|
core.Component({
|
|
3109
|
-
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 "
|
|
3110
3149
|
}),
|
|
3111
|
-
__metadata("design:paramtypes", [ymsRoutines.IntegrationEventsCallback])
|
|
3150
|
+
__metadata("design:paramtypes", [ymsRoutines.IntegrationEventsCallback, FormWmsService])
|
|
3112
3151
|
], FormWmsComponent);
|
|
3113
3152
|
return FormWmsComponent;
|
|
3114
3153
|
}(FormWmsDescritor));
|
|
@@ -3270,6 +3309,10 @@
|
|
|
3270
3309
|
core.Input(),
|
|
3271
3310
|
__metadata("design:type", Object)
|
|
3272
3311
|
], DocumentGridComponent.prototype, "agenda", void 0);
|
|
3312
|
+
__decorate([
|
|
3313
|
+
core.Input(),
|
|
3314
|
+
__metadata("design:type", String)
|
|
3315
|
+
], DocumentGridComponent.prototype, "wmsSystem", void 0);
|
|
3273
3316
|
__decorate([
|
|
3274
3317
|
core.Output(),
|
|
3275
3318
|
__metadata("design:type", Boolean)
|
|
@@ -3309,7 +3352,7 @@
|
|
|
3309
3352
|
DocumentGridComponent = __decorate([
|
|
3310
3353
|
core.Component({
|
|
3311
3354
|
selector: 'document-grid',
|
|
3312
|
-
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",
|
|
3313
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}"]
|
|
3314
3357
|
}),
|
|
3315
3358
|
__metadata("design:paramtypes", [core$1.TranslateService,
|
|
@@ -3639,9 +3682,19 @@
|
|
|
3639
3682
|
}
|
|
3640
3683
|
InsertKeyComponent.prototype.ngOnInit = function () {
|
|
3641
3684
|
this.formGroup = this.formBuilder.group({
|
|
3642
|
-
key: [undefined]
|
|
3685
|
+
key: [undefined],
|
|
3686
|
+
purchaseOrder: [undefined],
|
|
3687
|
+
invoiceNumber: [undefined],
|
|
3688
|
+
invoiceSerie: [undefined],
|
|
3689
|
+
partnerDocument: [undefined]
|
|
3643
3690
|
});
|
|
3644
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
|
+
};
|
|
3645
3698
|
InsertKeyComponent.prototype.add = function () {
|
|
3646
3699
|
this.visibleChange.emit(false);
|
|
3647
3700
|
if (!this.formGroup.get('key').value) {
|
|
@@ -3686,6 +3739,10 @@
|
|
|
3686
3739
|
core.Input(),
|
|
3687
3740
|
__metadata("design:type", core.EventEmitter)
|
|
3688
3741
|
], InsertKeyComponent.prototype, "visible", void 0);
|
|
3742
|
+
__decorate([
|
|
3743
|
+
core.Input(),
|
|
3744
|
+
__metadata("design:type", String)
|
|
3745
|
+
], InsertKeyComponent.prototype, "wmsSystem", void 0);
|
|
3689
3746
|
__decorate([
|
|
3690
3747
|
core.Output(),
|
|
3691
3748
|
__metadata("design:type", Object)
|
|
@@ -3693,8 +3750,8 @@
|
|
|
3693
3750
|
InsertKeyComponent = __decorate([
|
|
3694
3751
|
core.Component({
|
|
3695
3752
|
selector: "insert-key",
|
|
3696
|
-
template: "<form [formGroup]=\"formGroup\">\n <p-dialog [(visible)]=\"visible\" [modal]=\"true\" (visibleChange)=\"cancel()\">\n <p-header>{{'yms.int.
|
|
3697
|
-
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}"]
|
|
3698
3755
|
}),
|
|
3699
3756
|
__metadata("design:paramtypes", [forms.FormBuilder,
|
|
3700
3757
|
DocumentService,
|
|
@@ -3792,7 +3849,8 @@
|
|
|
3792
3849
|
],
|
|
3793
3850
|
providers: [
|
|
3794
3851
|
FieldCustomizationService,
|
|
3795
|
-
FocusService
|
|
3852
|
+
FocusService,
|
|
3853
|
+
FormWmsService
|
|
3796
3854
|
]
|
|
3797
3855
|
}),
|
|
3798
3856
|
__metadata("design:paramtypes", [ymsRoutines.IntegrationDispatcher])
|
|
@@ -13991,50 +14049,51 @@
|
|
|
13991
14049
|
exports.highlightLanguages = highlightLanguages;
|
|
13992
14050
|
exports.ɵa = Service;
|
|
13993
14051
|
exports.ɵb = CustomStompConfig;
|
|
13994
|
-
exports.ɵba =
|
|
13995
|
-
exports.ɵbb = EntityService$
|
|
13996
|
-
exports.ɵbc =
|
|
13997
|
-
exports.ɵbd =
|
|
13998
|
-
exports.ɵbe =
|
|
13999
|
-
exports.ɵbf =
|
|
14000
|
-
exports.ɵbg =
|
|
14001
|
-
exports.ɵbh =
|
|
14002
|
-
exports.ɵbi =
|
|
14003
|
-
exports.ɵbj =
|
|
14004
|
-
exports.ɵbk =
|
|
14005
|
-
exports.ɵbl =
|
|
14006
|
-
exports.ɵbm =
|
|
14007
|
-
exports.ɵbn =
|
|
14008
|
-
exports.ɵbo =
|
|
14009
|
-
exports.ɵbp =
|
|
14010
|
-
exports.ɵbq =
|
|
14011
|
-
exports.ɵbr =
|
|
14012
|
-
exports.ɵbs =
|
|
14013
|
-
exports.ɵbt =
|
|
14014
|
-
exports.ɵbu =
|
|
14015
|
-
exports.ɵbv =
|
|
14016
|
-
exports.ɵbw =
|
|
14017
|
-
exports.ɵbx =
|
|
14018
|
-
exports.ɵby =
|
|
14019
|
-
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;
|
|
14020
14078
|
exports.ɵc = ViewImageComponent;
|
|
14021
|
-
exports.ɵca =
|
|
14022
|
-
exports.ɵcb =
|
|
14023
|
-
exports.ɵcc =
|
|
14024
|
-
exports.ɵcd =
|
|
14025
|
-
exports.ɵce =
|
|
14026
|
-
exports.ɵcf =
|
|
14027
|
-
exports.ɵcg =
|
|
14028
|
-
exports.ɵch =
|
|
14029
|
-
exports.ɵci =
|
|
14030
|
-
exports.ɵcj =
|
|
14031
|
-
exports.ɵck =
|
|
14032
|
-
exports.ɵcl =
|
|
14033
|
-
exports.ɵcm =
|
|
14034
|
-
exports.ɵcn =
|
|
14035
|
-
exports.ɵco =
|
|
14036
|
-
exports.ɵcp =
|
|
14037
|
-
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;
|
|
14038
14097
|
exports.ɵd = LogDescritor;
|
|
14039
14098
|
exports.ɵe = LogsComponent;
|
|
14040
14099
|
exports.ɵf = PortariasService;
|
|
@@ -14052,12 +14111,12 @@
|
|
|
14052
14111
|
exports.ɵr = VisitanteFormComponent;
|
|
14053
14112
|
exports.ɵs = CredencialFormComponent;
|
|
14054
14113
|
exports.ɵt = FocusService;
|
|
14055
|
-
exports.ɵu =
|
|
14056
|
-
exports.ɵv =
|
|
14057
|
-
exports.ɵw =
|
|
14058
|
-
exports.ɵx =
|
|
14059
|
-
exports.ɵy =
|
|
14060
|
-
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;
|
|
14061
14120
|
|
|
14062
14121
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
14063
14122
|
|